BookmarkSubscribeRSS Feed
michellekwai
Obsidian | Level 7

Hi everyone, 

 

I know how to load table from internal database and promote the table to global session, I want to know if I create a table in work folder, or any any folder in sas studio, and want to load and promote this table which is created by sas program, what can I do? 

Code is below: 

 

*Create CAS libref ;
cas;
libname sandbox cas caslib="Sandbox" datalimit=all;

*Create table;
proc sql;
create table work.test1 as
select *
from tlake.mkt_account
where ac_type='021' and asofdate='30MAR2018'd;
quit;

*Promote data set to in-memory cas table;
proc casutil;
load casdata="test1" incaslib="Sandbox"
outcaslib="Public" casout="test1" promote;
run;


But this shows errors: 

ERROR: ERROR: ERROR: relation does not exist ANALYSIS._ANALYSIS.test1
ERROR: Function failed.
ERROR: The action stopped due to errors.

 

Thanks! 

6 REPLIES 6
Reeza
Super User

Is this for SAS VA? If so, I'll move the question the SAS VA forum.

michellekwai
Obsidian | Level 7

I need to load and promote table for VA use... Yeah.. should I delete the post and post under VA section? 

alexal
SAS Employee

@michellekwai,

ERROR: ERROR: ERROR: relation does not exist ANALYSIS._ANALYSIS.test1

The error shown above has been generated by proc sql, not by proc casutil.

michellekwai
Obsidian | Level 7

@alexal Thank you for your reply! 

I want to create a temporary table in work folder and then promote this table to CAS. 

I run proc sql seperately, but no error shows... when I run proc casutil.. the error shows..

Any suggestions? 

Thanks! 

alexal
SAS Employee

@michellekwai,

 

I would suggest opening a track with our access team. You can do it here:

 

https://support.sas.com/ctx/supportform/createForm

michellekwai
Obsidian | Level 7

ok. Thanks! @alexal

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 6 replies
  • 1354 views
  • 0 likes
  • 3 in conversation