I am trying to reading data from an Oracle table that has field define as a
Oracle datatype. The SAS procedure I've tried is proc sql with the
following code:
proc sql;
connect to oracle (user="profile_user" orapw=XXXXXXXXX p
path="SMDWP");
create table work.collg as
select * from connection to oracle (select educational_experiences
from agc_sm_colleague2);
I am unable to do this successfully and get the following errors:
ERROR: Oracle DESCRIBE Error: ORA-03115: unsupported network datatype or
representation
Any suggestions,
Thanks.
-- Lisa