How to establish SQL server connection string in SAS using the following credentials?
Stored Procedure: SSSP_RES_V12_Load
Thank you
PROC SQL;
Connection string to exec stored procedure that works..
CONNECT TO ODBC(NOPROMPT="DRIVER={ODBC Driver 13 for SQL Server}; SERVER=&svr_nm.; database=&DB_nm.; Trusted_Connection=yes;");
CREATE TABLE WORK.Daily_copy AS
SELECT *
FROM CONNECTION TO ODBC (exec &sp.);
DISCONNECT FROM ODBC;
quit;
This Oracle example can be easily modified for SQL Server: https://support.sas.com/kb/18/350.html
Which SAS/ACCESS product are you using? SAS/ACCESS to SQL Server or SAS/ACCESS to ODBC?
Please note you can't read a result set while running a stored procedure. The workaround is to have the stored procedure create a temporary table then read that in a following PASSTHRU query with a SELECT statement.
PROC SQL;
Connection string to exec stored procedure that works..
CONNECT TO ODBC(NOPROMPT="DRIVER={ODBC Driver 13 for SQL Server}; SERVER=&svr_nm.; database=&DB_nm.; Trusted_Connection=yes;");
CREATE TABLE WORK.Daily_copy AS
SELECT *
FROM CONNECTION TO ODBC (exec &sp.);
DISCONNECT FROM ODBC;
quit;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.