I am successfully connecting to a Sybase database. However, the query only pulls data back for those columns whose data type is not char. Has anyone else expierienced this issue?
Thanks,
Jeremy
Show the code of the query at least. Insufficient information though the likely cause will be something in the way you built the query or none of the variables are char.
Here is the code:
%include "P:\Jeremy\SAS\PAASLogin.sas";
libname paas odbc dsn="PAAS Prod" uid=&user pwd=&password;
proc sql;
drop table work.PAASTest;
quit;
PROC SQL;
create table work.PAASTest as
(Select *
from paas.CDOC_TABLE A
Where A.CUST_CODE='FRA000310'
);
quit;
data work.PAASTest;
set PAASTest;
run;
If you run proc contents on paas.CDOC_TABLE what you do get for results?
Attached is what the result set looks like.
Thanks,
Jeremy
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.