BookmarkSubscribeRSS Feed

Error Identification/error correction/ number of obs code in Proc SQL

Started ‎06-10-2014 by
Modified ‎10-05-2015 by
Views 844

/For identification of the error in the proc sql and the Number of observation procesed by the step/

/*add below 4 lines in the end of each Proc SQL Step. */

 

 

%let Error_cd1 = &SQLRC;

%let Numobs1 =&SQLObs;

quit;

%put &NumObs1 Error_CD1;

.

.

.to

.

%let Error_cd23 = &SQLRC;

%let Numobs23 =&SQLObs;

quit;

%put &NumObs23 Error_CD23;

 

 

%macro cre;

%do j=1 %to 24;

     proc sql;

          insert into error_log values(&&error_cd&j, &&NumObs&j);

     quit;

%end;

%mend;

%cre

 

/After running the above macro Cre the output error_log will contains all error code along with the number of observation processed by the step/

 

Error Code can be identified by the below error code definition:

 

RC Definition

0  PROC SQL statement completed successfully with no errors.

4  PROC SQL statement encountered a situation for which it issued a warning. The statement continued to execute.

8  PROC SQL statement encountered an error. The statement stopped execution at this point.

12 PROC SQL statement encountered an internal error, indicating a bug in PROC SQL that should be reported to SAS Technical Support. These errors can occur only during compile time.

16 PROC SQL statement encountered a user error. For example, this error code is used, when a subquery (that can return only a single value) evaluates to more than one row. These errors can be detected only during run time.

   Leveraging SQL Return Codes When Querying Relational Databases

24 PROC SQL statement encountered a system error. For example, this error is used, if the system cannot write to a PROC SQL table because the disk is full. These errors can occur only during run time.

28 PROC SQL statement encountered an internal error, indicating a bug in PROC SQL that should be reported to SAS Technical Support. These errors can occur only during run time.

Version history
Last update:
‎10-05-2015 03:48 PM
Updated by:

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!

Free course: Data Literacy Essentials

Data Literacy is for all, even absolute beginners. Jump on board with this free e-learning  and boost your career prospects.

Get Started

Article Labels
Article Tags