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.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.