BookmarkSubscribeRSS Feed
gabras
Pyrite | Level 9

Hi,

i would like to update a table which is on LASR Server. SAS 9.4 is installed on a Linux distibuted environment.

I read that it could be made using PROC IMSTAT, but i don't know if it fits the problem i'm in.

I have the table1 uploaded on LASR.

Usally, table1 (before it is loaded on VA) is updated using his ID with the rows (which has been modified the day before) we have extracted from a source DB: this etl has been designed on Data Integration Studio.

There is a table2 which is composed by the rows modified the day before.

 

Well, i would update the table1 based on table2 values.

How can i do this using PROC IMSTAT, or there is another way?

 

Thank you

 

1 REPLY 1
gabras
Pyrite | Level 9

To be more precisely:


data table1;
input ID $ 1-2 data $ 3-10;
ID_2=ID+1;
datalines;
1 sysdate
2 sysdate
3 sysdate
4 sysdate
5 sysdate
6 sysdate
7 sysdate
8 sysdate
9 sysdate
10 sysdate
;
run;

 


data table2;
input ID $ 1-2 data $ 3-10;
ID_2=ID+20;
datalines;
1 sysdate1
2 sysdate2
3 sysdate3
;
run;

 

After loading tables in memory (we are in a distributed env) i used this program:


proc imstat data=valibr.table1;
UPDATE data=valibr.table2;
run;
fetch / format ;
quit;

 

Unfortunately it doesen't work. The result is:

Rows from the table
HPS.TABLE1
IDdataID_2
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323
3sysdate323

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 780 views
  • 0 likes
  • 1 in conversation