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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:22:43+00:00 2026-06-06T12:22:43+00:00

I have a table defined as follows: CREATE TABLE [dbo].[T]( [FileID] [bigint] NOT NULL,

  • 0

I have a table defined as follows:

CREATE TABLE [dbo].[T](
[FileID] [bigint] NOT NULL,
[Line] [nvarchar](250) NULL
) ON [PRIMARY]

FileID is a foreign key, and the table has > 7,000,000 records

Doing a select count(1) on this table causes a memory spike of 1.5GB+. Any workaround for this?

  • 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-06-06T12:22:45+00:00Added an answer on June 6, 2026 at 12:22 pm

    If you don’t need to block all your users while you’re getting a count, and can accept minor differences due to transactions currently occurring, then this is much better:

    SELECT SUM([rows]) FROM sys.partitions
      WHERE [object_id] = OBJECT_ID('dbo.T')
      AND index_id IN (0,1);
    

    Otherwise Marc is right – put an index on the FileID column and SQL Server will choose to scan that index instead of scanning the entire table.

    Is there really no index on this table? There are a few use cases where no clustered index makes sense, but I don’t suspect this is one of them. While creating a foreign key can help the optimizer, it does not create an index (though that is a common misconception).

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

Sidebar

Related Questions

I have a table defined by: CREATE TABLE bar_table ( _id INTEGER NOT NULL
I have a nvarchar(50) column in a SQL Server 2000 table defined as follows:
In my database, assume we have a table defined as follows: CREATE TABLE [Chemical](
I have a table defined as follows: CREATE TABLE `mydb`.`users` ( `userID` int(10) unsigned
Assume that I have a table user_count defined as follows: id primary key, auto
Let's say I have a table defined as follows: CREATE TABLE SomeTable ( P_Id
I have a table in a postgresql-9.1.x database which is defined as follows: #
I have an entity defined as follows @Entity(name = Report) @Table(name = REPORTS) @org.hibernate.annotations.Entity(dynamicInsert
I have a table defined by the following SQL: CREATE TABLE test ( id
I have an SQL table defined as below: CREATE TABLE [TestComposite] ( ID int,

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.