BookmarkSubscribeRSS Feed
buechler66
Barite | Level 11

 

Hi. I thought SAS dates were numbers, but I'm getting an error regardless. Can anyone help me to resolve the issue?

 

I'm attempting to filter based on these two conditions:

1. imb_code = imb_code AND

2. spm_calc_batch_date's are within 45 days of one another

 

So even if imb_codes match, but the spm_calc_batch_dates are greater than 45 days apart from one another then it wouldn't be filtered.

 

5    libname iv_ora   oracle user=&orauser pass=&orapass path="IVASPRD" schema="IVPRL";
NOTE: Libref IV_ORA was successfully assigned as follows:
      Engine:        ORACLE
      Physical Name: IVASPRD
6    libname bids_ora oracle user=exfcread pass=XXXXXXXXXXXXXXXXXX path="IBSCRPRD" schema="IMAPSSCR";
NOTE: Libref BIDS_ORA was successfully assigned as follows:
      Engine:        ORACLE
      Physical Name: IBSCRPRD

 

145  proc sql;
146  create table QueryData as
147  select subpad('PIECES MISSING IN IV',1,58) as RULE_NM,
148          a.actual_dlvry_date as AD_DT,
149          subpad(a.imb_code,1,31) as IMB_CODE,
150          999.1 as RULE_ORDER,
151          a.spm_calc_batch_date,
152          (a.spm_calc_batch_date - a.spm_calc_batch_date) as spm_calc_batch_date_day_diff
153  from BIDS_ora.bi_spm_piece_recon as a
154  WHERE imb_code not in(select imb_code from IV_ora.bi_spm_piece_recon b where abs(a.spm_calc_batch_date -
154! b.spm_calc_batch_date) <= 45);
ERROR: ORACLE prepare error: ORA-00932: inconsistent datatypes: expected NUMBER got DATE. SQL statement: SELECT  "IMB_CODE",
       "SPM_CALC_BATCH_DATE" FROM IVPRL.BI_SPM_PIECE_RECON  WHERE  ( ABS( ( 1766966400 -"SPM_CALC_BATCH_DATE" )) <=TO_DATE('
       01JAN1960:00:00:45','DDMONYYYY:HH24:MI:SS','NLS_DATE_LANGUAGE=American') ).

NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
155  quit;
NOTE: The SAS System stopped processing this step because of errors.

 

6 REPLIES 6
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Sorry, there are several things wrong with your code.  Lets start with the first thing - you state you are trying to join data, but there is no joining in that code?  Secondly your diff variable will always be zero, you are subtracting a variable from itself?  Thirdly you cannot substract a date from a date, oracle doesn't work that way.  Finally, your variables there are datetime values, even if you did manage to subtract one from the other the difference would not be days?

 

Let me suggest you do this.  Firstly get all the data you need from OC = select * from OC and create a SAS dataset from it.  Then close OC and forget about that part.  Now you have the data in and can work with it.  If you want us to provide code to do some mapping from that, you would then need to post on here a datastep which will create some test data - which looks like or is your data, and what you want the output to look like, but I suspect a simple intck('day',45) would be a sufficient bit of code to check a window.

buechler66
Barite | Level 11
Sorry, I meant Filter Out, not Merge.
RW9
Diamond | Level 26 RW9
Diamond | Level 26

OC= Oracle Clinical - its a variant on Oracle databases used in Pharma.

buechler66
Barite | Level 11

Looks like I'm going to use:

 

 

WHERE imb_code not in(select imb_code from BIDS_ora.bi_spm_piece_recon b where intck('dtday',a.spm_calc_batch_date,b.spm_calc_batch_date) <= 45)

 

So the complete query would look like this, do you see any potential problems?

 

proc sql;
create table QueryData as
select subpad('PIECES MISSING IN BIDS',1,58) as RULE_NM, 
       	a.actual_dlvry_date as AD_DT, 
		subpad(a.imb_code,1,31) as IMB_CODE, 
		999.6 as RULE_ORDER,
		a.spm_calc_batch_date
from IV_ora.bi_spm_piece_recon as a
WHERE imb_code not in(select imb_code from BIDS_ora.bi_spm_piece_recon b where intck('dtday',a.spm_calc_batch_date,b.spm_calc_batch_date) <= 45);
quit;

 

RW9
Diamond | Level 26 RW9
Diamond | Level 26

It might be fine, you will have to try it.  I would note that for normal pass-through (i.e. connect to, select from), you can't use SAS functions as the whole SQL code within the clause is sent to the database which obviously doesn't have the SAS functions.  Your still probably better pulling all data out to a SAS dataset, then processing that.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1715 views
  • 3 likes
  • 2 in conversation