Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

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 0683p000009MA5A.pngracle: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 ?

Can someone help me?
Thanks
Marcio.
Labels (3)
5 Replies
Anonymous
Not applicable
Author

add it in "additional jdbc parameters" in your tOracleInput's Advanced Settings sub-tab.
Anonymous
Not applicable
Author

Ok, but do you know how is the correct string.
Anonymous
Not applicable
Author

Ok, but do you know how is the correct string ?
Anonymous
Not applicable
Author

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" ?"

Can someone help me?
Thanks
Marcio.
Anonymous
Not applicable
Author

sure, try entering this in the additional jdbc parameters text box. Since this is just off the top of my head, I may be incorrect--
if the code below does not work, please refer to the Oracle jdbc docs for the proper string:
http://docs.oracle.com/cd/E11882_01/appdev.112/e13995/oracle/jdbc/OracleDriver.html

connect_data=(SERVER=DEDICATED);