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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:04:03+00:00 2026-05-14T23:04:03+00:00

In MS SQL 2005, is it possible to find out which tables/columns are being

  • 0

In MS SQL 2005, is it possible to find out which tables/columns are being used either as keys in another table, or as part of a stored procedure?

The reason is I’m trying to clean up some old stored procs and tables, some of which can be removed, some of which can have columns pruned. But obviously I don’t want to remove stuff which is being used.

  • 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-14T23:04:04+00:00Added an answer on May 14, 2026 at 11:04 pm
    DECLARE @BaseObject varchar(100)
    SET @BaseObject = 'AddEntry'
    
    SET NOCOUNT ON
    
    DECLARE @Objects TABLE (
        id int
    )
    
    INSERT @Objects (id)
    SELECT id FROM sysobjects
    WHERE name like @BaseObject
    
    WHILE (@@ROWCOUNT > 0)
    BEGIN
        INSERT @Objects (id)
        SELECT d.depid
        FROM sysdepends d
        WHERE d.id IN (SELECT id FROM @Objects)
        AND d.depid NOT IN (SELECT id FROM @Objects)
    END
    
    SET NOCOUNT OFF
    
    SELECT convert(varchar(100),
            '[' + oo.name + '].[' + o.name + ']') AS '--Object--'
    FROM sysobjects o 
    INNER JOIN sysusers oo ON o.uid = oo.uid
    WHERE o.id IN (SELECT id FROM @Objects)
    ORDER BY oo.name, o.name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a SQL way to find out which columns in my schema are
How to find what the physical size of table in MS Sql 2005? Is
On SQL Server 2005, is it possible to drop and recreate a table (copy
In SQL Server 2005, is there a way for a trigger to find out
Possible Duplicate: How to update two tables in one statement in SQL Server 2005?
Is it possible to install sql server 2005 express and sql server 2008 developer
Is it possible to programmatically create a DBLink in SQL server 2005 in C#?
Is it possible to get records for each distinct date in SQl Server 2005?
Is this possible? Using SQL Server 2005....... SELECT * FROM Data0304 UNION SELECT *
Possible Duplicate: Simulating group_concat MySQL function in MS SQL Server 2005? I have a

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.