BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SalmanSohail
Calcite | Level 5

SAS_Oracle_Error_1.PNGSAS_Oracle_Error_2.PNGHello Everyone,

 

When I tried to connect Oracle TSN directly from DataFlux 2,7 Studio.  I get errors:

However, if try the same on Toad DATA studio, I can see the Oracle DATAbase Connected.

 

1. Oracle Connection String on SAS Data studio

 

libname oralib1 oracle path="(DESCRIPTION= (ADDRESS= (PROTOCOL=TCP) (HOST=XYZ.SARIYAGROUP.ORG) (PORT=1521)) (CONNECT_DATA= (SID=HSP)))"

 

 

2. I tried second method Oracle Connection String in SAS Data studio

 

"(DESCRIPTION= (ADDRESS= (PROTOCOL=TCP) (HOST=XYZ.SARIYAGROUP.ORG) (PORT=1521)) (CONNECT_DATA= (SID=HSP)))"

 

 

Any suggestions are highly appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
SalmanSohail
Calcite | Level 5

The last five lines showing lots of (") open and close apostrophes, is that required?

 

 "       (SID=alien)
       "   )
       " )
       " ";

View solution in original post

3 REPLIES 3
LouGalway_sas
SAS Employee

Your example looks like you are writing a SAS libname statement, but your subject mentions DataFlux.

 

If you are trying to write a libname statement in SAS Studio make sure you have all the required components of the libname statement.  You example seem to be missing the user= and pw= components.  Here is an example from the SAS documentation:

 

This example connects to Oracle without updating the TNSNAMES.ORA file.

libname x oracle user=myusr1 pw=mypwd1 
  path="(DESCRIPTION= 
          (ADDRESS_LIST=
            (ADDRESS= (PROTOCOL=TCP)(HOST=pinkfloyd)(PORT=1521))
             )
              (CONNECT_DATA= 
       "  	     (SID=alien)
       "   )
       " )
       " ";

If you would like additional information you can use this link:

http://go.documentation.sas.com/?docsetId=acreldb&docsetTarget=p1qft7bzdij79zn1bxh59mc3w8xj.htm&docs...

 

If you trying to connect to Oracle from SAS Data Management Studio (Datafulx) then you can find more information here:

http://support.sas.com/documentation/onlinedoc/dfdmstudio/2.6/dmpdmsug/Content/dfU_T_DataConnOver.ht...

 

Good Luck!

SalmanSohail
Calcite | Level 5

The last five lines showing lots of (") open and close apostrophes, is that required?

 

 "       (SID=alien)
       "   )
       " )
       " ";

LouGalway_sas
SAS Employee
Yes, according to the documentation.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 2267 views
  • 0 likes
  • 2 in conversation