Hi SAS users, I tried this below as per your suggestion of adding option and creating the test table in ORacle DB. But i am getting error. Can u please correct my mistake? I needed to create a empty table - so there is no "from". Error - right paranthesis is missing. code - options dbidirectexec sastraceloc=saslog; proc sql; connect to oracle (user=&myid orapw=&mypwd path="&mydb"); execute( create table test.post_test as select (job_id char(10), sale_id char(20), reason char(2000), run_id char(20), run_date char(20) ) ); disconnect from oracle; quit;
... View more