Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...Where have you been all my life! I found the answer I needed in seconds..."

Geography

Where in the world do Tek-Tips members come from?
peac3 (TechnicalUser)
21 Aug 12 5:08
HI guys,

I have the code as below and it's working.

CODE

SELECT @ERR_MSG = EXC_X
FROM ExceptionCode WHERE EXC_C = 'G1'

      
UPDATE LOAD
SET ERR_F = 'W'
OUTPUT INSERTED.*,
      'G1',
      GETDATE(),
      @ERR_MSG + ' : ' + ACCT,
      1
INTO EXCEPTION      
WHERE CRIS_Code in (
            SELECT CRIS_Code
            FROM test 
      ) 


Is there anyway to make them as one query...
Between table ExceptionCode and LOAD table there is no link

the problem is @ERR_MSG I need to get it from table (ExceptionCode) mapped from exception code which is G1.

Appreciate for your help in advance.
markros (Programmer)
21 Aug 12 6:59
I think your code is OK, but you can also do:

CODE

UPDATE LOAD
SET ERR_F = 'W'
OUTPUT INSERTED.*,
      'G1',
      GETDATE(),
      COALESCE((SELECT top (1) EXC_X
FROM ExceptionCode WHERE EXC_C = 'G1')
 + ' : ','') + ACCT,
      1
INTO EXCEPTION      
WHERE CRIS_Code in (
            SELECT CRIS_Code
            FROM test 
      ) 

PluralSight Learning Library

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close