Is it possible to invoke a Netezza Stored procedure from SAS?If Yes, how it can be done?
Asked
Active
Viewed 142 times
1 Answers
0
I do not know about Netezza, but this is how I invoke an Oracle STP from SAS:
proc sql noprint;
connect to oracle(user="&user"
orapw="&passord" path="&path"
);
execute(
begin &schema..dvh_portal_pkg.schedule_upd( %str(%'&_METAUSER%'),&Schedule_id); end;
)by Oracle;
disconnect from Oracle;
quit;

Stig Eide
- 1,052
- 7
- 14