Not sure if this will run as I don't have access to your database (to test it out) but worth a try. Replace ABC, DEF and GHI, below, appropriately. proc sql;
connect to odbc as mycon
(datasrc=ABC user=DEF password=GHI);
select *
from connection to mycon
(Your Raw SQL query here);
disconnect from mycon;
quit; Try some simple query like fetching a column which has more than 80 characters in its contents
... View more