BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

I have a code to simply delete record and then insert records. I don't get any error but got a warning of 

"WARNING: Character expression will be truncated when assigned to character column LOB_CD." which should not make job to fail. 

 

makes failed my job. Why?

 

PROC SQL;
DELETE FROM xx.xx;
DELETE FROM xx.xy;

QUIT;

PROC SQL;
INSERT INTO xx.xx  SELECT * FROM ZZ.XX;
INSERT INTO XX.XY SELECT * FROM ZZ.XY;

QUIT;

1 ACCEPTED SOLUTION

Accepted Solutions
r_behata
Barite | Level 11

On the Autosys environment the Success/ Failure criteria are defined by how you handle the sas return codes.

 

Typically on a Unix / Linux environment post execution this code would give you a return code 1 due to the warning.  You may handle this return code from the Shell script( in case you are using any ) to mark this job as success despite the warning.

 

However, I would highly recommend to correct this warning as it appears that there is a type mismatch while inserting the data from your Proc SQL Insert.

 

 

 

View solution in original post

1 REPLY 1
r_behata
Barite | Level 11

On the Autosys environment the Success/ Failure criteria are defined by how you handle the sas return codes.

 

Typically on a Unix / Linux environment post execution this code would give you a return code 1 due to the warning.  You may handle this return code from the Shell script( in case you are using any ) to mark this job as success despite the warning.

 

However, I would highly recommend to correct this warning as it appears that there is a type mismatch while inserting the data from your Proc SQL Insert.

 

 

 

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
  • 1179 views
  • 0 likes
  • 2 in conversation