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: 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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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