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

Whats the best way to format monthstart and end dates to use in a teradata passthrough query in SAS,

below is a bit of code that formats todays date in to teradata format but not sure who to do the monthstart and monthend in the same format.

any help is appreciated

data _null_;

call symput('yyyymmdd',compress(put((intnx('day',today(),1)-1),yymmdd10.),"-"));

run;

%put &yyyymmdd;

data x;

format yymmdd $7.;

yymmdd = substr(&yyyymmdd.,7,6);

VAR = "1";

New_Date = cat(VAR,yymmdd);

drop yymmdd var;

run;

%global td_dte;

proc sql;

select New_Date into: td_dte

from x;

quit;

%put &td_dte;

proc sql; drop table x; quit;

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

I'm not familiar with Teradata but following your logic how about something like this:

data _null_;

  today = today();

  month_start = intnx('MONTH', today, 0, 'BEGINNING');

  month_end = intnx('MONTH', today, 0, 'END');

  call symput('today', '1' !! put(today, yymmddn6.));

  call symput('month_start', '1' !! put(month_start, yymmddn6.));

  call symput('month_end', '1' !! put(month_end, yymmddn6.));

run;

%put &today &month_start &month_end;

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

I'm not familiar with Teradata but following your logic how about something like this:

data _null_;

  today = today();

  month_start = intnx('MONTH', today, 0, 'BEGINNING');

  month_end = intnx('MONTH', today, 0, 'END');

  call symput('today', '1' !! put(today, yymmddn6.));

  call symput('month_start', '1' !! put(month_start, yymmddn6.));

  call symput('month_end', '1' !! put(month_end, yymmddn6.));

run;

%put &today &month_start &month_end;

Wickywick
Calcite | Level 5

Thanks SASKiwi it works, very much appreciated.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 5042 views
  • 0 likes
  • 2 in conversation