BookmarkSubscribeRSS Feed
aclaraujo
Fluorite | Level 6

Hi everyone,

 

How to performer a begin/commit/rollback operation for two or more steps in proc sql?

 

For example:

 

 

proc sql;


connect to oracle as ora(...); **begin transaction insert into ora.a; insert into ora.b; delete from ora.c; **commit transaction for success or **rollback transaction for fail quit;

 

Thanks,

...

5 REPLIES 5
LinusH
Tourmaline | Level 20
Don't think that's possible, at least when using libname access. Commit is sent at least after each statement.
Rollback is managed by the COMMIT and ERRLIMIT options.
What is your use case?
Data never sleeps
aclaraujo
Fluorite | Level 6

Hi, LinusH

 

Thanks for your attention!

 

I have a linked_people (id_people1, id_people2) table and a history_people (id_people, operation_date) table. Everytime when insert a row in people_linked table, have be inserted two rows in history_people table.
This operation need be atomic.

SASKiwi
PROC Star

Just wrap the code you would use in Oracle PL-SQL, including COMMIT and ROLLBACK commands, in an EXECUTE statement:

proc sql;connect to oracle as ora(...);

execute(

**begin transaction

insert into ora.a;

insert into ora.b;

delete from ora.c;

**commit transaction for success

or

**rollback transaction for fail
) by ora;

quit;
aclaraujo
Fluorite | Level 6

Hi SASKiwi, 

Thanks for response!

 

But, the problem is source table is a sas dataset. 

LinusH
Tourmaline | Level 20
Then you (just) need to upload those tables first.
Data never sleeps

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 5 replies
  • 2301 views
  • 1 like
  • 3 in conversation