i want to copy SAS table bcc_07_11_2016_ from '/sas/sasdata/test/test2' to a database oracle schema, i use this sas code in SAS entreprise guide, and i got this error
ERROR: Error attempting to CREATE a DBMS table. ERROR: ORACLE execute error: ORA-00911: invalid character..
LIBNAME LBSRC ORACLE PATH="xx" SCHEMA="xx" USER="xx" PASSWORD="xx"; LIBNAME GDC '/sas/sasdata/test/test2'; proc sql ; create table LBSRC.bcc_07_11_2016_ as select * from GDC.bcc_07_11_2016_; quit ;
Can you please help to correct this SAS CODE. thanks