Hi
I am planning to execute oracle sql procedure with following date '01/JAN/1900' as input parameter in order to pull limited data.
Thanks for your help in advance
proc sql;
connect to oracle (user=&username password=&passwrd path=&dbname);
execute (execute PROC_CREATE_TABLE('01/JAN/1900')) by oracle;
disconnect from oracle;
quit;
Is thre a question in there somewhere, or would you just like the advice that its never a good idea to put data (date in this case) as table or column names?
Your code looks OK - it is very similar to this: http://support.sas.com/kb/18/350.html
But please note you can't return a result set from a stored procedure. You need to get the stored procedure to create a table or view that can then be queried separately.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.