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

  • SEARCH
  • Home
  • 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 6673099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:35:15+00:00 2026-05-26T03:35:15+00:00

I have to write a script to update a database but im having problems

  • 0

I have to write a script to update a database but im having problems doing it. The T-Sql is

BEGIN TRY

    BEGIN TRANSACTION 

        ALTER TABLE company
        ADD RegistrationNumber nvarchar(50)

    COMMIT

END TRY
BEGIN CATCH
  IF(@@trancount > 0)
    ROLLBACK TRANSACTION 
END CATCH



update Company set RegistrationNumber = ''

But im getting the error

Invalid column name ‘RegistrationNumber’.

However when I run the first bit then the second bit I dont get a problem….how do I get it all into one script?

  • 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-05-26T03:35:16+00:00Added an answer on May 26, 2026 at 3:35 am

    When the parser analyses your query the RegistrationNumber field does not exist (yet) and so it reports the error; it would take a much more complex parser to recognise you are creating it earlier in the query.

    Separate the two queries with GO and they will be parsed/executed individually, which should avoid the error.

    BEGIN TRY
        BEGIN TRANSACTION 
            ALTER TABLE company
            ADD RegistrationNumber nvarchar(50)
        COMMIT
    END TRY
    BEGIN CATCH
      IF(@@trancount > 0)
        ROLLBACK TRANSACTION 
    END CATCH
    
    GO -- << Add this
    
    UPDATE Company SET RegistrationNumber = ''
    

    EDIT: If you want both steps to be performed in one go why not just use a default value for the new column?

    BEGIN TRY
        BEGIN TRANSACTION 
            ALTER TABLE company
            ADD RegistrationNumber nvarchar(50) DEFAULT ''
        COMMIT
    END TRY
    BEGIN CATCH
      IF(@@trancount > 0)
        ROLLBACK TRANSACTION 
    END CATCH
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need horizontal scrolling script in javascript, but don't have much time to write
I have to write a script which will be hosted on differents domains. This
I am not too familiar with python and have to write a script to
I have to write a Matlab script that does this: The input is 2
I have to write a bash script that makes lot of things. I'd like
Is Delphi have any ability to write script of IDE actions? I would like
i write a script and it works perfectly, on my local server. I have
I have an upload script that write a index.html file, I modified it to
I have been trying to write my own diff3 wrap script for SVN and
i have wrote a script to produce an array of data but now want

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.