I have a very basic query
I just want to get a basic result out so I can understand the table and even this doesn't run after 30 minutes.
Is there something that is happening under the hood that can cause it to take a long time to run? Even if it is a large table, it should still run fairly quickly since I limited to 10 observations right?
Not really sure where to go in terms of troubleshoot
Code:
PROC sql inobs =10;
Select * from table
Is there something that is happening under the hood that can cause it to take a long time to run? Even if it is a large table, it should still run fairly quickly since I limited to 10 observations right?
Not really sure where to go in terms of troubleshoot