I need to change connection shared to dedicated in toracleinput.
Hi,
I need to change from oracle connection shared (mts) to dedicated in toracleinput.
In tnsnames.ora we can use:
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.10.12)(PORT = 1521))
(CONNECT_DATA =
(SERVER=DEDICATED)
(SERVICE_NAME=db)
)
)
In jdbcthin we can use:
"jdbc
racle:thin:@(description=(address_list=
(address=(protocol=tcp)(port=1610)(host=10.10.10.12))
(connect_data=(SERVER=DEDICATED)(INSTANCE_NAME=db))
)";
But I don´t use tnsnames. I Only use a toracleinput configuration.
So, How can I put "SERVER=DEDICATED" as a parameter in toracleinput ?
About :
Question: "How can I put "SERVER=DEDICATED" as a parameter in toracleinput ?"
Answer: "add it in "additional jdbc parameters" in your tOracleInput's Advanced Settings sub-tab."
Question: "Ok, but do you know: how is the correct string to write in "additional jdbc parameters" ?"