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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:35:35+00:00 2026-06-12T11:35:35+00:00

My sql Server 2008 table has more 5 million records. I am deleting more

  • 0

My sql Server 2008 table has more 5 million records. I am deleting more than 4 million records in single statement. It is taking more than an hour. Is this the best query to delete the records?

my delete query

delete From [Table] 
where SUBSTRING([Column_YYY],1,CHARINDEX(N'',[Column_YYY])-1) = '4'
  • 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-12T11:35:37+00:00Added an answer on June 12, 2026 at 11:35 am

    No that’s not by any measure the best query. Your substring starts with 1, and you’re comparing against a SINGLE character, '4'! To use an index on ColumnYYY, just change it to a LIKE clause letting the index quickly hunt down the first two characters.

    delete [Table] 
    where [Column_YYY] LIKE N'4%'
    

    That would be true if that did not target 80% of your table, in which case SQL Server will completely scan the table anyway. To prevent tempdb space issues or overly large transactions (locking), I would have broken it up into bits:

    set nocount on
    select 1;
    while @@rowcount > 0
    begin
        ;with x as (select top 100000 * from [Table] where [Column_YYY] LIKE N'4%')
        delete x;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database in SQL Server 2008 and one particular table has information
I am using SQL Server 2008. I know if a table has no clustered
I have an SQL Server 2008 database with a table that has a column
I'm using SQL Server 2008 and I have a table that has a 'Status'
I'm working on a SQL Server 2008 database. This database has two tables. Book
My SQL Server 2008 database table has a XML field. I would like to
I am using SQL Server 2008. I have a table which has a datetime
I have a simple database table (SQL Server 2008 R2 Express), which has a
I have SQL Server 2008 R2 and one of my tables has a date
I have a table in SQL Server 2008 Table Name : tbl_device Table Structure:

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.