I have a large table that I cannot open directly in SAS due to size. I tried selecting only the top ten rows but the query is taking forever. Is there a reason why selecting the top ten rows would have a delay at all?
data myTable_temp;
set mylibrary.myTable (obs=10);
run;
I learned that a count(*) on a few actually takes a long time. When querying large views the idea is to use a where clause.
Is your MyLibrary another database and not a native SAS data set?
Or located on a network with possible comminication issues?
How do I tell? I see it as a SAS dataset under shared data in Enterprise Guide.
I tried doing a select count(*) that spins in Oracle on the table for five mintues with no result.
@DavidPhillips2 wrote:
How do I tell? I see it as a SAS dataset under shared data in Enterprise Guide.
Assuming this is how to see what/where a library or data set may be
In Libraries under the server list right click on the library and select Properties from the menu. It will show the Path to the library and other
properties.
I learned that a count(*) on a few actually takes a long time. When querying large views the idea is to use a where clause.
Try this:
proc sql inobs=10;
create table mytable_temp as
select * from mylibrary.mytable;
quit;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.