I am using the below code to execute a stored procedur but for the chanegs to show in the databse dont i need to commit them? if so can you do that from SAS? proc sql; connect to oracle (user='username' password=password path="path" ); execute (stored_proc) by oracle; disconnect from oracle; quit;
... View more