- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Do we have any other syntax to execute procedure by inserting date from sas
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If yes, have you tested in SAS? What do you need help with?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content