BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jim_Ogilvie
Obsidian | Level 7

Hi guys,

 

I'm about to take delivery of a new on prem SAS VA installation. In my previous workplace we used a 2 step method to get data loaded into SAS VA:

 

1. Overnight ETL to take data from corporate systems into the data warehouse

2. SAS VA Data Preparation, scheduled within the SAS VA interface.

 

However, I have heard that the above can all be accomplished in BASE SAS code, and wondered if anyone had an example of this and any gotcha's to look out for. In my head, I see this a just a couple of SAS data steps, but wonder if there is extra to do around metadata?

 

Thanks in advance

 

Jim

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

I find these steps work well:

 

  • Delete existing LASR table with PROC DATASETS
  • Load new LASR table using a DATA step
  • Run PROC METALIB to register the new LASR table

 

The METALIB code looks like this:

proc metalib;
   omr (library = "Visual Analytics Public LASR");
   folder       = "/Shared Data/SAS Visual Analytics/Public/LASR";
   select       = ("MyLASRTable");
   VA_Update_Rule = delete
 run;
  •  

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

I find these steps work well:

 

  • Delete existing LASR table with PROC DATASETS
  • Load new LASR table using a DATA step
  • Run PROC METALIB to register the new LASR table

 

The METALIB code looks like this:

proc metalib;
   omr (library = "Visual Analytics Public LASR");
   folder       = "/Shared Data/SAS Visual Analytics/Public/LASR";
   select       = ("MyLASRTable");
   VA_Update_Rule = delete
 run;
  •  
Jim_Ogilvie
Obsidian | Level 7
That's great to know, thanks!
I'll come back once the environment is up, for help with the detail, if required (hope that's OK).

Jim

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 464 views
  • 0 likes
  • 2 in conversation