Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8569235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:17:14+00:00 2026-06-11T18:17:14+00:00

Does anyone see what’s wrong with this code for SQL Server? IF NOT EXISTS(SELECT

  • 0

Does anyone see what’s wrong with this code for SQL Server?

IF NOT EXISTS(SELECT *
              FROM   sys.columns
              WHERE  Name = 'OPT_LOCK'
                     AND object_ID = Object_id('REP_DSGN_SEC_GRP_LNK'))
  BEGIN
      ALTER TABLE REP_DSGN_SEC_GRP_LNK
        ADD OPT_LOCK NUMERIC(10, 0)

      UPDATE REP_DSGN_SEC_GRP_LNK
      SET    OPT_LOCK = 0

      ALTER TABLE REP_DSGN_SEC_GRP_LNK
        ALTER COLUMN OPT_LOCK NUMERIC(10, 0) NOT NULL
  END; 

When I run this, I get:

Msg 207, Level 16, State 1, Line 3
Invalid column name ‘OPT_LOCK’.

on the update command.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:17:15+00:00Added an answer on June 11, 2026 at 6:17 pm

    In this case you can avoid the problem by adding the column as NOT NULL and setting the values for existing rows in one statement as per my answer here.

    More generally the problem is a parse/compile issue. SQL Server tries to compile all statements in the batch before executing any of the statements.

    When a statement references a table that doesn’t exist at all the statement is subject to deferred compilation. When the table already exists it throws an error if you reference a non existing column. The best way round this is to do the DDL in a different batch from the DML.

    If a statement both references a non existing column in an existing table and a non existent table the error may or may not be thrown before compilation is deferred.

    You can either submit it in separate batches (e.g. by using the batch separator GO in the client tools) or perform it in a child scope that is compiled separately by using EXEC or EXEC sp_executesql.

    The first approach would require you to refactor your code as an IF ... cannot span batches.

    IF NOT EXISTS(SELECT *
                  FROM   sys.columns
                  WHERE  Name = 'OPT_LOCK'
                         AND object_ID = Object_id('REP_DSGN_SEC_GRP_LNK'))
      BEGIN
          ALTER TABLE REP_DSGN_SEC_GRP_LNK
            ADD OPT_LOCK NUMERIC(10, 0)
    
          EXEC('UPDATE REP_DSGN_SEC_GRP_LNK SET OPT_LOCK = 0');
    
          ALTER TABLE REP_DSGN_SEC_GRP_LNK
            ALTER COLUMN OPT_LOCK NUMERIC(10, 0) NOT NULL
      END; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone see anything wrong with this code: MailMessage msg = new MailMessage(); msg.From
http://dabbler.org/home/asdf/scrolling/test.html Does anyone see anything wrong with this code? I can't figure out what
I get an error in this code. Does anyone see what I'm doing wrong.
Does anyone see where the issue is with this SQL code? I keep getting
Does anyone see why this jquery click function would not work? It is not
Does anyone see a problem with this, its not working saying bad file descriptor
Does anyone see the flaw in my code here, because this one has me
I've been looking at this for a while now, does anyone see anything wrong
Does anyone see anything wrong with this: this.Controls.Remove(this); this is a class which extends
Does anyone know if this is possible? I can't see to find much info

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.