BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
sonnysangBB
Calcite | Level 5

Hi everyone,

 

I am using SAS EG 8.3 to query Snowflake database. I wrote a query like below:

 

proc sql;
select count(*) as cnt from (
select
   col1, col2, col3... (there are 12 columns)
from tbl1
inner join tbl2
on ...
inner join tbl3
on ...
where ...
)
quit;

the expected cnt should be 337,947 because I ran similar code in snowflake successfully (less than 1 minute). But I got errors saying 

  • ERROR: Insufficient space in file WORK.'SASTMP-000000054'.UTILITY.
  • ERROR: File WORK.'SASTMP-000000054'.UTILITY is damaged. I/O processing did not complete.
  • ERROR: There is not enough space to store some intermediate results during join processing.

My question is how to modify the code so it can run in SAS? Because I need the 337,947 records for further analysis. 

To me, I feel the code is trying to pull all data into local machine before aggregation. Is the code supposed to be run in Snowflake?

 

Thanks! 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Move it into the Snowflake server.

 

Say you have a libref named SNOW pointing to Snowflake then use code like:

proc sql;
connect using snow;
select cnt from connection to snow (
select count(*) as cnt from (
select
   col1, col2, col3... (there are 12 columns)
from tbl1
inner join tbl2
on ...
inner join tbl3
on ...
where ...
))
;
quit;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Move it into the Snowflake server.

 

Say you have a libref named SNOW pointing to Snowflake then use code like:

proc sql;
connect using snow;
select cnt from connection to snow (
select count(*) as cnt from (
select
   col1, col2, col3... (there are 12 columns)
from tbl1
inner join tbl2
on ...
inner join tbl3
on ...
where ...
))
;
quit;
sonnysangBB
Calcite | Level 5

it works! Thank you @Tom 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1148 views
  • 2 likes
  • 2 in conversation