Hello,
I am trying to connect to a oracle database through cx_Oracle python module. I can successfully connect using service name as below,
cx_Oracle.connect("username", "password", "<hostname/ip>/<servicename>")
Since oracle service is connecting through shared server. I would need this to connected to a dedicated server. i am trying to achieve it by adding <TNS_ALIAS> entry on client side's tnsname.ora file but couldn't. Can anyone help me how do i connect to oracle database's dedicated server through cx_oracle module.
Thanks,