|
Hi,
I am using the following code to read the number of records in an
excel file. I do get the following warning message. Not sure as to
what this means and how this can be avoided ????????
proc sql noprint;
select count(*) into :nobs1
from book.'sheet1$'n;
quit;
WARNING: The SCAN_TEXT option is ignored in the implicit pass-through
joins.
WARNING: Use libname option DIRECT_SQL=NO to disable the implicit pass-
through joins if you want the SCAN options on.
Thank you,
|