Hi,
I'm extracting data from an Oracle table and using SAS Data Integration Studio (DI).
The Oracle expression in the where condition is:
DATA_CARICAMENTO >= TRUNC(SYSDATE - 1, 'MI') AND DATA_CARICAMENTO <= SYSDATE
I would use an equivalent expression in the Extract transformation of DI.
DATA_CARICAMENTO's Format is Datetime20.
Do you know what's a correct expression I can use?
Thanks.
A little googling for "Oracle trunc function" revealed that this truncates the value to the minute.
So I guess that the low end for the comparison is the minute of 1 second past.
In SAS, that would be
today() * 86400 + intnx('minute',time()-1,0,'begin')
if I guess right.
IMO an easier way to do it (and probably more effective) is to use tha autoamtic date/time variables.
"&SYSDATE:&SYSTIME"dt
&SYSTIME is in minutes, no need for trucation logic...
Caution: &sysdate and &systime contain the date and time when the SAS session was started, not the current date and time!
Agree, but usually the Extract step is in the beginning of the session.
But in DI Studio, there's also automatic datetime macro variables created for you, so my final (?) suggestion would be to use ETLS_STARTTIME (or similar name, don't have DI Studio at my fingertips).
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.