wherefunctionsHi,
I am trying to apply a user defined format through a put funtion in the where statement while setting the dataset and it it is taking 1 hour, and if i remove the put function, it takes 3 minutes.
What can be the issue , and how can we overcome it ?
Thanks in advance
Well, posting the code would be useful. I wouldn't recommend putting functions like that in a where clause as its called for each row then totaling up time. What are you trying to where, why not use the underlying data, e.g if date then '01JAN2014'd, if number then =1, etc.
Post the proc format code and the data step.
Most probably the user defined format is complex enough to eat CPU cycles.
I am using the cntlin option to create a format for a variable and tehn applying to a bigger dataset.
Aside from the possibilty of overriding an index, POST THE CODE!
With that kind of difference I suspect that your column is indexed.
Putting a function in where clause effectively removes the possibility to use index (with some exceptions, like substr from pos 1).
"Note: Conditions are not optimized with an index for arithmetic operators, a variable-to-variable condition, the sounds-like operator, and any function other than the TRIM and SUBSTR function as listed above."
Understanding SAS Indexes :: SAS(R) 9.4 Language Reference: Concepts, Fourth Edition
If your value is a constant, create is a macro variable prior to the extract step.
If it't in a transaction/look-up table, have the put function in an earlier step.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.