Table 1 is a SQL Server table registered metadata in SAS - 100 million rows
SQL Server database {using ODBC connection implicit query not expicit pass thru}
SAS PROC SQL query fetches these 100 million rows in 4 minutes
Processing time - 4 minutes
Table 2 is a SAS dataset having the same data as above SQL Server table = 100 million rows
Same query when used to fetch data from this SAS dataset it takes 1 hour.
Processing time - 1 hour
Both queries are same.
I cannot see the indexes on the SQL Server table.
Why fetching the data from SAS internal datasets takes longer than fetching from SQL Server?
I'm not too sure about the configuration of the SQL Server box but we access it using ODBC connection using a libname.
Example:
SQL Server Query
==============
proc sql;
create table A as
select
var1
,var2
,var3
from SQLLIB.SQL_table1
where var_X = 'XXX'
and var_Y = 'YYY'
and var_Z = 'ZZZ'
;
quit;
SAS Dataset Query
==============
proc sql;
create table A as
select
var1
,var2
,var3
from SASLIB.SAS_table1
where var_X = 'XXX'
and var_Y = 'YYY'
and var_Z = 'ZZZ'
;
quit;
I will try using the options you suggested
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.