BookmarkSubscribeRSS Feed
podarum
Quartz | Level 8

Hi ,

 

I have to pull these dates form our Taradata datawarehouse in this format  30APR2015 and it's a date9. format

 

I am trying SAS SQL to pull trhe date but getting no results...error actually.

 

I tried  :

where date = '30APR2016'

where date = '30APR2016'd

where put (date, date9.) = '30APR2015'

where put (date, yymmdd10.)= '30APR2015'

where put (date, yymmdd9.)= '30APR2015'

where input (date, yymmdd10.)= '30APR2015'

where input (date, yymmdd9.)= '30APR2015'

 

Nothing works...

Got this error:

 

ERROR: Teradata prepare: Syntax error: Data Type "snap_dt" does not match a Defined Type name.

SQL statement was: select * from ddwv01.MORTG_CLM_LOSS as LP where put(snap_dt, yymmdd9.)

= '30APR2016'.

 

 

Any suggestions?  Thanks.

6 REPLIES 6
Steelers_In_DC
Barite | Level 11

I would pull the date in it's current format.  If you need to change it to date9. do it in SAS after you have the dataset.

Reeza
Super User
What does the rest of your query look like? Are you using pass through sql or proc sql or a data step?
podarum
Quartz | Level 8

proc sql

Reeza
Super User
Teradata typically stores dates as date times.
Try

where datepart(date) = '30APR2016'd
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Start by doing a simple:

create temp_dataset as select * from your_table

 

Now, goto your work library, and open the properties of the temp_dataset.  What format is the variable in question, what data does it hold?  Post a proc contents if your still having problems, and some of the data.

podarum
Quartz | Level 8

Thanks everyone...

 

This worked : 

WHERE DATE = DATE'2016-04-30'

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 6 replies
  • 3158 views
  • 0 likes
  • 4 in conversation