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

Hi, I've to import a database table into a SAS table but I want one of the columns being imported which represents the time period to be converted from a character to a SAs date column.

The orginal period column is in character format as, for example, YYYY-MM-DD  (such as 2013-09-01) but I would like it to be in the format 01SEP2013 as a SAs date column. Here is my code:

  

/* This step imports a file from the DW into a library called current on the C drive */

data current.dos_data;

set mysqlsvr.dos_date_of_supply;

format period default=DATE9.;

informat period default=DATE9.;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21
data have;
  input period $10.;
  cards;
2013-09-01
;

data want (drop=_:);
  set have (rename=(period=_period));
  format period date9.;
  date=input(_period,yymmdd10.);
run;

Art, CEO, AnalystFinder.com

 

View solution in original post

4 REPLIES 4
art297
Opal | Level 21
data have;
  input period $10.;
  cards;
2013-09-01
;

data want (drop=_:);
  set have (rename=(period=_period));
  format period date9.;
  date=input(_period,yymmdd10.);
run;

Art, CEO, AnalystFinder.com

 

ChrisNZ
Tourmaline | Level 20

You can do it on the fly

data CURRENT.DOS_DATA;
  set MYSQLSVR.DOS_DATE_OF_SUPPLY(rename=(PERIOD=PERIODC));
  format PERIOD date9.;
  PERIOD=input(PERIODC,yymmdd10.);
run;
Phil_from_PGA
Calcite | Level 5
Thanks - much appreciated.


sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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
  • 4 replies
  • 2651 views
  • 0 likes
  • 3 in conversation