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

How does one go about calling a stored procedure in SQL Server... ?

I have tried many different variations of a proc sql statement.

I place this code within the precode of the SAS DI task.

I'm able to use the same proc sql statements to select from the database.

proc sql:

     EXECUTE (exec libref.storeprocname);

quit;

Any suggestions and or guidance would be greatly appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Does your EXECUTE code work OK outside of SAS DIS just in a normal SAS program?

I would expect to see something like this. Your connection string may vary. This one is based on connecting via an ODBC driver using Windows Authentification.

Proc sql;

  connect to MYSQL(noprompt = "server=MySQLServer;DRIVER=SQL Server;Trusted Connection=yes;DATABASE=MyDatabase;");

execute (

EXEC    @return_value = MySchema.MyProcedure

        ) by MYSQL;

Quit;

View solution in original post

4 REPLIES 4
SASKiwi
PROC Star

Does your EXECUTE code work OK outside of SAS DIS just in a normal SAS program?

I would expect to see something like this. Your connection string may vary. This one is based on connecting via an ODBC driver using Windows Authentification.

Proc sql;

  connect to MYSQL(noprompt = "server=MySQLServer;DRIVER=SQL Server;Trusted Connection=yes;DATABASE=MyDatabase;");

execute (

EXEC    @return_value = MySchema.MyProcedure

        ) by MYSQL;

Quit;

jdmarshg
Obsidian | Level 7

Thank you so much that worked.

As I'm new to working with SAS and training is in the future.

I was trying to understand why a library would not work in this case and a pass through was needed but I believe I understand at this point.

jdmarshg
Obsidian | Level 7

How would I go about passing macro variables into the stored procedure?

Can anyone point me in the right direction?

SAS_1001
Quartz | Level 8
How do I capture the stored procedure values into SAS Macro Variable. I'd like to create a SAS Macro Variable and persist through the DI Job ?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 7008 views
  • 0 likes
  • 3 in conversation