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 52341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:53:30+00:00 2026-05-10T16:53:30+00:00

I was writing a (seemingly) straight-forward SQL snippet that drops a column after it

  • 0

I was writing a (seemingly) straight-forward SQL snippet that drops a column after it makes sure the column exists.
The problem: if the column does NOT exist, the code inside the IF clause complains that it can’t find the column! Well, doh, that’s why it’s inside the IF clause!
So my question is, why does a piece of code that shouldn’t be executed give errors?

Here’s the snippet:

IF exists (select * from syscolumns     WHERE id=object_id('Table_MD') and name='timeout') BEGIN     ALTER TABLE [dbo].[Table_MD]         DROP COLUMN timeout END GO 

…and here’s the error:

Error executing SQL script [...]. Invalid column name 'timeout'

I’m using Microsoft SQL Server 2005 Express Edition.

  • 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. 2026-05-10T16:53:31+00:00Added an answer on May 10, 2026 at 4:53 pm
    IF exists (select * from syscolumns     WHERE id=object_id('Table_MD') and name='timeout') BEGIN     DECLARE @SQL nvarchar(1000)     SET @SQL = N'ALTER TABLE [dbo].[Table_MD] DROP COLUMN timeout'     EXEC sp_executesql @SQL END GO 

    Reason: When Sql server compiles the code, they check it for used objects ( if they exists ). This check procedure ignores any ‘IF’, ‘WHILE’, etc… constructs and simply check all used objects in code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 267k
  • Answers 267k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Actually, I don't know why the Hibernate documentation (see 19.2.… May 13, 2026 at 12:58 pm
  • Editorial Team
    Editorial Team added an answer You could use a ManualResetEvent to synchronize your threads. In… May 13, 2026 at 12:58 pm
  • Editorial Team
    Editorial Team added an answer No. CSS3 support in IE6 is not going to happen.… May 13, 2026 at 12:58 pm

Related Questions

I was writing a function to figure out if a given system of linear
In writing some threaded code, I've been using the ReaderWriterLockSlim class to handle synchronized
I am writing a minimal replacement for mod_python's publisher.py The basic premise is that
Are simple LINQ queries on an IEnumerable<T> lightweight or heavyweight? How do they compare

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.