473,398 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Default Fill factor

Hi
There are a lot of articles about the fillfactor.
I did change the fill factor and that did not work as intended.
How do I get back to the default fill factor
I am using sp_msforeachtable undocumented database procedure
and when the indexes are rebuilt the fill factor that shows up
in origfillfactor is the one I am trying to move away from

Your help will be appreciated

Vince
Jul 20 '05 #1
4 6481
Hi

Without knowing the previous values then you probably have to restore the
backup.

John

"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f*************************@posting.google.co m...
Hi
There are a lot of articles about the fillfactor.
I did change the fill factor and that did not work as intended.
How do I get back to the default fill factor
I am using sp_msforeachtable undocumented database procedure
and when the indexes are rebuilt the fill factor that shows up
in origfillfactor is the one I am trying to move away from

Your help will be appreciated

Vince

Jul 20 '05 #2
Thanks John for your time.....
There is a development database which is a copy of the database in
question.
The origfillfactor in sysindexes is 0 for all tables.I am assuming
this is the value assigned for the fill factor of the indexes.
Vince

Hi

Without knowing the previous values then you probably have to restore
the
backup.
John

"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f*************************@posting.google.co m...
Hi
There are a lot of articles about the fillfactor.
I did change the fill factor and that did not work as intended.
How do I get back to the default fill factor
I am using sp_msforeachtable undocumented database procedure
and when the indexes are rebuilt the fill factor that shows up
in origfillfactor is the one I am trying to move away from

Your help will be appreciated

Vince

Jul 20 '05 #3
Hi

The OrigFillFactor field in sysindexes is the original fill factor used when
the index was created. It is not maintained if changed, therefore the value
before you made your changes may not have been the same.

http://msdn.microsoft.com/library/de...sys-i_76wj.asp
A fill factor of 0 will mean that the index was originally created with full
data/leaf pages, which would tend to imply that you don't expect the data to
change often/at all. If this is not the case there could be some impact on
performance.

http://msdn.microsoft.com/library/de...onfig_5k8e.asp

Rather than changing the index on-mass you may want to try the index tuning
wizard to see what it suggests, or a combination of both!!!

John
"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f**************************@posting.google.c om...
Thanks John for your time.....
There is a development database which is a copy of the database in
question.
The origfillfactor in sysindexes is 0 for all tables.I am assuming
this is the value assigned for the fill factor of the indexes.
Vince

Hi

Without knowing the previous values then you probably have to restore
the
backup.
John

"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f*************************@posting.google.co m...
Hi
There are a lot of articles about the fillfactor.
I did change the fill factor and that did not work as intended.
How do I get back to the default fill factor
I am using sp_msforeachtable undocumented database procedure
and when the indexes are rebuilt the fill factor that shows up
in origfillfactor is the one I am trying to move away from

Your help will be appreciated

Vince

Jul 20 '05 #4
I ran sp_configure and discovered that the config_value was 0 but on
sysindexes the origfillfactor was 100.
Thought this values should be the same!!

Vince

"John Bell" <jb************@hotmail.com> wrote in message news:<3f*********************@reading.news.pipex.n et>...
Hi

The OrigFillFactor field in sysindexes is the original fill factor used when
the index was created. It is not maintained if changed, therefore the value
before you made your changes may not have been the same.

http://msdn.microsoft.com/library/de...sys-i_76wj.asp
A fill factor of 0 will mean that the index was originally created with full
data/leaf pages, which would tend to imply that you don't expect the data to
change often/at all. If this is not the case there could be some impact on
performance.

http://msdn.microsoft.com/library/de...onfig_5k8e.asp

Rather than changing the index on-mass you may want to try the index tuning
wizard to see what it suggests, or a combination of both!!!

John
"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f**************************@posting.google.c om...
Thanks John for your time.....
There is a development database which is a copy of the database in
question.
The origfillfactor in sysindexes is 0 for all tables.I am assuming
this is the value assigned for the fill factor of the indexes.
Vince

Hi

Without knowing the previous values then you probably have to restore
the
backup.
John

"Vincento Harris" <wu*****@yahoo.com> wrote in message
news:2f*************************@posting.google.co m...
> Hi
> There are a lot of articles about the fillfactor.
> I did change the fill factor and that did not work as intended.
> How do I get back to the default fill factor
> I am using sp_msforeachtable undocumented database procedure
> and when the indexes are rebuilt the fill factor that shows up
> in origfillfactor is the one I am trying to move away from
>
> Your help will be appreciated
>
> Vince

Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Programmer | last post by:
Hi All Here is my problem I'm using a SQLDataAdapter and DataSet I use the method FillSchema(myDataset, SchemaType.Source) The problem is that when i Check the default Values of the Dataset...
10
by: JKop | last post by:
What's the difference between them? Take the following: #include <iostream> struct Blah { int k;
3
by: Ron Adam | last post by:
I'm trying to implement simple svg style colored complex objects in tkinter and want to be able to inherit default values from other previously defined objects. I want to something roughly...
9
by: Nick Vaughan | last post by:
While running some long term tests on our Broadcast SDK one of our thread dropped out because an exception had been thrown: Exception: System.ArgumentOutOfRangeException Message: Load factor...
30
by: Raymond Hettinger | last post by:
Proposal -------- I am gathering data to evaluate a request for an alternate version of itertools.izip() with a None fill-in feature like that for the built-in map() function: >>> map(None,...
17
by: John A Grandy | last post by:
For a Hashtable that is expected to contain no more than 100 DictionaryEntry elements , what is the best load factor ? ( This Hashtable is a encapsulted in a class , an instance of which is...
2
by: Giojo | last post by:
Hello guys! I have a problem with vistual studio 2005, it's a strange problem... I have a form, I choose some properties to change so in *.designer.cs there are the members I changed, only these.....
1
by: Praveen | last post by:
How do i find out how much fill facot has been spcified in given table?.
14
by: Nathan Pinno | last post by:
How do I factor a number? I mean how do I translate x! into proper Python code, so that it will always do the correct math? Thanks in advance, Nathan P.
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.