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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:51:52+00:00 2026-06-13T01:51:52+00:00

Is there any working method for modifying the Fill Factor arguments of all tables’

  • 0

Is there any working method for modifying the Fill Factor arguments of all tables’ Primary Keys in a Database?

  • 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-13T01:51:53+00:00Added an answer on June 13, 2026 at 1:51 am

    This script finds all the primary keys and for each one builds an ALTER INDEX statement and executes it.

    ---- change this to your desired value ----
    DECLARE @NewFillFactor smallint = 92
    -------------------------------------------
    DECLARE @TableName varchar(300), @IndexName varchar(300), @sql varchar(max)
    
    DECLARE inds CURSOR FAST_FORWARD FOR
    SELECT TABLE_NAME, CONSTRAINT_NAME
    FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
    WHERE CONSTRAINT_TYPE='PRIMARY KEY'
    
    OPEN inds
    FETCH NEXT FROM inds INTO @TableName, @IndexName
    
    WHILE @@FETCH_STATUS = 0
    BEGIN
        SET @sql = 'ALTER INDEX [' + @IndexName + '] ON [dbo].[' + @TableName + '] REBUILD WITH ( FILLFACTOR = ' + cast(@NewFillFactor as varchar(3)) + ')'
        PRINT @sql
        EXEC(@sql)
        FETCH NEXT FROM inds INTO @TableName, @IndexName
    END
    
    CLOSE inds
    DEALLOCATE inds
    
    PRINT 'Done'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any known method to have a date input working while using Twitter
i want to save the time when countDownTimer begin working, is there any method
is there any working, supported and maintained scaffolding solution for Wicket 1.5? I know
Possible Duplicate: Is there any working memory profiler for Python3 I have some script
is there any small working program for recieving from and sending data to client
Are there any geo-location api services like hostip.info that working over https Free services
Is there any way, how to get new x86 image for Android emulator working
I want set Listbox background to transparent but not working Is there any idea?
I am working with Objective-C in Xcode. I was wondering is there any mechanism
I'm working with a C++ audio library in an iPhone app. Is there any

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.