I am trying to connect to the Oracle database and facing a problem at the select statement of Sql in SAS here is the code I wrote.
libname oral oracle path='jumbo' schema='AAA';
proc sql;
connect using oral;
create table ght as
select * from connection to oral
(select * from bo_gut);
disconnect from oral;
quit;
and now I am getting an error saying
ERROR: ORACLE prepare error:ORA-00942:table or view does not exist
what can be the problem, the the schema that I am using has this table "bo_gut" but still not able to create a new table from it.