I am wondering if it is possible to use a Conditional Start transformation in SAS DIS to conditionally bypass another transformation based on whether a given table is empty (no rows). This link seems to indicate that the condition must be based on the value of a parameter variable.
One idea I had was to create a parameter value in a User Written Code transformation, and assign it different values depending on the state of the table, but this seems elaborate and inelegant, and I'm not sure that it would work. Is there a simpler way?
Much gratitude
The original question asked how to tell if a table did not exist at all, and this answer solves that problem. It does not help tell if a dataset has zero rows.
Since your link says that it will simply
%eval
whatever you put in that box, you may be able to use theexist
function.For example:
The first returns 1 (true), the latter 0 (false) on my machine.