BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
deepika2
Fluorite | Level 6

I am trying to write a PROC SQL statement which is extracting data from SQL Server based on some date criteria.

 

%let ExamStartDate = 01APR2017;
%let ExamEndDate = 01MAY2017;

 

data _null_;

call symputx('sdate',put("&ExamStartDate."d,yymmdd10.));
call symputx('edate',put("&ExamEndDate."d,yymmdd10.));

run;

 


proc sql;
connect to odbc (dsn='aa' user=user pw=pw);
create table temp1 as select * from connection to odbc
(
SELECT cnd.firstName, cnd.middleName, cnd.lastName, cd.calendarDate as date
FROM candidate cnd inner join CalendarDate cd with (NOLOCK) on cd.calendarDateId=cnd.eventDateId
and cd.calendarDate >= convert(datetime,&sdate.)
);
quit;

 

When I run the code, it gives me all records and does not filter out the data. Can anyone suggest what am I doing wrong here.

 

Thanks for the help.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Use the SASTRACE= system option to get more information back from the data source.

 

It might be that the SQL Server expects dates in a format like this:

data _null_;
call symputx('sdate','"'!!put("&ExamStartDate."d,yymmddd10.)!!'"');
call symputx('edate','"'!!put("&ExamEndDate."d,yymmddd10.)!!'"');
run;

so the string that is handed over will be "2017-04-01" (including the quotes). And you might need to supply timestamps instead of dates, as you use the type datetime in the convert, if I interpret that correctly.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Use the SASTRACE= system option to get more information back from the data source.

 

It might be that the SQL Server expects dates in a format like this:

data _null_;
call symputx('sdate','"'!!put("&ExamStartDate."d,yymmddd10.)!!'"');
call symputx('edate','"'!!put("&ExamEndDate."d,yymmddd10.)!!'"');
run;

so the string that is handed over will be "2017-04-01" (including the quotes). And you might need to supply timestamps instead of dates, as you use the type datetime in the convert, if I interpret that correctly.

deepika2
Fluorite | Level 6

Thanks for the quick reply.

 It actually worked.

Kurt_Bremser
Super User

Out of curiousity: did my step as written do the trick, or did you have to adapt it? Mind that I have absolutely no experience with SQL Server passthrough, and very little with passthrough to UDB/DB2. Our communication with the database is done solely by flatfiles.

SAS Innovate 2025: Register Today!

 

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 6499 views
  • 4 likes
  • 2 in conversation