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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:56:16+00:00 2026-05-30T04:56:16+00:00

For a bit of database-sanity checking code, I’d like to determine whether a particular

  • 0

For a bit of database-sanity checking code, I’d like to determine whether a particular object_id corresponds to an empty table.

Is there some way to (for instance) select count(*) from magic_operator(my_object_id) or similar?

I’d strongly prefer a pure-sql solution that can run on MS SQL server 2008b.

  • 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-30T04:56:17+00:00Added an answer on May 30, 2026 at 4:56 am

    You can get a rough idea from

    SELECT SUM(rows)
    FROM sys.partitions p 
    WHERE index_id < 2 and p.object_id=@my_object_id
    

    If you want guaranteed accuracy you would need to construct and execute a dynamic SQL string containing the two part object name. Example below though depending on how you are using this you may prefer to use sp_executesql and return the result as an output parameter instead.

    DECLARE @DynSQL nvarchar(max) = 
                N'SELECT CASE WHEN EXISTS(SELECT * FROM ' + 
                QUOTENAME(OBJECT_SCHEMA_NAME(@my_object_id)) + '.' + 
                       QUOTENAME(OBJECT_NAME(@my_object_id)) +
               ') THEN 0 ELSE 1 END AS IsEmpty'
    
    
    EXECUTE (@DynSQL)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database that contains a table that looks a bit like this:
I have a bit of code that connects to an Oracle database, locks a
I am a bit indecisive about a certain database table structure, here is the
im bit confused how to save checkbox value dynamically in 1 table! database: id
To give you a bit of context, my database tables look like so: User
In the database you have a table with a bit field, let call that
I have a database table that includes a two bit fields: IsEvenSide and IsOddSide
I have been through a fair bit of the code in modules/database/classes/ but still
We are trying to do a bit more logging on a database table. We
I have the following bit of PHP code, which creates three database tables, then

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.