BookmarkSubscribeRSS Feed
jmcclung78
Calcite | Level 5

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

4 REPLIES 4
ballardw
Super User

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.

jmcclung78
Calcite | Level 5

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;

ballardw
Super User

If you run proc contents on paas.CDOC_TABLE what you do get for results?

jmcclung78
Calcite | Level 5

Attached is what the result set looks like.

 

Thanks,

Jeremy

 

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 858 views
  • 0 likes
  • 2 in conversation