BookmarkSubscribeRSS Feed
jplarios
Quartz | Level 8
I am creating a small stp web app.
I created some PK in a small table. The thing is, when an insert happens the STP will fail if there is a integrity constraint violation. Is there some PROC SQL OPTION or something that when the violation happens I can take this 'error return code' and send a message instead of failing?

jp
1 REPLY 1
DataShare
SAS Employee
after proc sql you can check for the errors in the proc sql execution as
%if &sqlrc ne 0 %then
%do;
%let ReturnCustomError=Error During insert ;
%return;
%end;

/* SQLXRC - contains the DBMS-specific return code that is returned by the Pass-Through Facility. */

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 1021 views
  • 0 likes
  • 2 in conversation