HI, Can anyone show me how how to convert my connection string into a Libname statement? As you can see below, I have the HOST, PORT, SERVICE NAME, USER & PASSWORD. I want to use these credentials to create a Libname statement & use in a Pass Thru query to Oracle, any suggestions? libname mylib oracle ; connect to oracle as ora (path="(DESCRIPTION=(ADDRESS = (PROTOCOL = TCP)
(HOST = xxxxxxxxxxxxxxx.com)(PORT = 1234))
(CONNECT_DATA = (SERVICE_NAME=xxxxxxx)))
user=xxxxxxx pw=xxxxxxxx);
... View more