Thought I was ok with pass-thru SQL, but trying to understand:
Thanks.
PROC SQL;
CONNECT TO DB2(SSID=DSN);
CREATE TABLE MYWORK AS SELECT * FROM CONNECTION TO DB2
(SELECT MAX(BIRTH_DT)
FROM CUST.CALENDAR
WHERE BIRTH_DT < CURRENT DATE
AND WEEKDAYCD='' WITH UR)X(DT);
DISCONNECT FROM DB2;
QUIT;
The code portion within the connect to is DB2 syntax and you will need to consult DB2 documentation and forums with detail questions.
It's long ago that I've used DB2.
WITH UR is for Uncommited Read (dirty reading). It's the fastest way to read data in DB2 because it doesn't control and synchronize with any update, insert or delete that might happen at the same time. Using UR is very o.k. if that's some reporting data base where you can be sure that the updates happen at a time where your queries won't run.
This bit looks "suspicious"
but then eventually totally o.k. with DB2 SQL.
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!
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.
Ready to level-up your skills? Choose your own adventure.