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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:56:17+00:00 2026-05-13T08:56:17+00:00

i am using sql server 2000 .I have a table with four columns ie.

  • 0

i am using sql server 2000 .I have a table with four columns ie. col1,col2,col3 and col4.
I have records in the table .
I used dbcc page command and i could see the values of all the column.
I then deleted a column , col2, from the table and did dbcc page again.
I could see the values of all the columns except for col2 which value “Dropped” (The record structure was still the same).
I understand that the column information are stored in “syscolumn” table
However the record for col2 was not found(for obvious reason).
I am wondering in which system table can i find the information the col2 is deleted.
Where is this information stored?

Thanks,
Jude

  • 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-13T08:56:17+00:00Added an answer on May 13, 2026 at 8:56 am

    I can only answer for 2005, although that might give you enough of an indication for 2000. The information is not available as far as I am aware via DMV’s, to get at the information you would need to use the Dedicated Admin Console (DAC).

    Using the DAC connection the tables columns can be found in sys.sysrowsetsolumns – if you filter that down to the individual rowsetid / hobtid of the object you can see your columns and there are two fields to note, status and rowsetcolid.

    As a test case, I output the value of the query twice, before and after dropping the column.

      select * from sys.sysrowsetcolumns where rowsetid = 72057594038845440
      ALTER TABLE dbo.foo DROP COLUMN test2
      select * from sys.sysrowsetcolumns where rowsetid = 72057594038845440
    

    Output was

    rowsetid           rowsetcolid hobtcolid status rcmodified maxinrowlen
    72057594038845440  1           1           0        0      4
    72057594038845440  2           2           0        0      4
    72057594038845440  3           3           0        0      4
    72057594038845440  4           4           0        0      4
    
    rowsetid           rowsetcolid hobtcolid status rcmodified maxinrowlen
    72057594038845440  1           1           0        0      4
    72057594038845440  2           2           0        0      4
    72057594038845440  4           4           0        0      4
    72057594038845440  65536       3           2        0      4
    

    The test was dropping column 3 and you can see hobtcolid 3 has altered the status to 2 and the rowsetcolid has been set to 65536. What the status and id mean I can only infer from the actions taken.

    Addendum : Do not edit any data in the system tables via the DAC – very very risky.

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

Sidebar

Related Questions

Using SQl Server 2000 I have a stored procedure that joins 2 tables and
I´m using Delphi 5 with SQL Server 2000 here. I have created an ADOQuery
I have a query that takes 5 seconds to run in SQL Server Managment
does anyone has any experience of installing Liferay using SQL Server as database ?
Please help me to generate the following query. Say I have customer table and
Suppose i have two tables declare @emp table ( EmpID int, EmpName varchar(10) )
We have a database with a lot of information about Persons. I won't post
We have a number of databases which store 10s to 100s of gigabytes of
When two tables are given Employee Table EmpID Name 1 Jon 2 Smith 3
I'm not the first to have these issues, and will list some reference posts

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.