hi ,
Signon Rsubmit works
I believe OLEDB is an option under Windows but not Unix - you would need SAS/ACCESS to OLEDB for that. I'm fairly sure that SAS/ACCESS to SQL Server also uses ODBC behind the scenes. Why the question? I recommend ODBC with SAS/ACCESS to ODBC as it can be used with a variety of databases.
If you want help with your ODBC connection problems then please post a log of your program including error messages.
when running the following query on PS SAS ,EG(Remote) and UNIX with including "rsubmit" statement i am ok :
rsubmit;
proc sql;
connect to sqlsvr as mydb (datasrc=DM_UserDB user =xxx password=yyy readbuff=32767);
create table test(compress = no) as select * from connection to mydb
(SELECT COUNT(*) FROM table_name );
disconnect from mydb;
quit;
endrsubmit;
but when running it on UNIX lets say without the "rsubmit" then i get this:
ERROR: The SAS/ACCESS Interface to SQLSRV cannot be loaded. The SASSQSRV code appendage could not be loaded.
ERROR: A Connection to the sqlsvr DBMS is not currently supported, or is not installed at your site.
I thought the ODBC.ini file would take care of that. So why still the need of rsubmit if i am running this on the remote server?
With the RSUBMIT, your program is being sent to a different SAS node for processing (exactly which node depends on your SAS/CONNECT and signon statements). It's that node that must have the SQL Server connectors configured and the SAS/ACCESS product installed/licensed.
i see.thanks
but at my previous company we had the databases on oracle and we never used the "rsubmit" statement to make the connections so i am trying to sense whether this does not apply to Oracle or not
or does that mean they might had the sas/access interface to oracle there but they dont have the sas/access to sqlserver here?
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.