January 6, 2009 at 5:49 pm
indexes size same as database?
indexes size same as table size?
SQLSERVER 2000
guys have u come across these type of issues what might be the problem? the disk space is running out
pls advise me what to do
r it is acceptable to make
indexes size same as database
indexes size same as table size
Cheers
January 6, 2009 at 8:36 pm
Does it display the same once you execute dbcc updateusage(0) with count_rows?
MJ
January 6, 2009 at 10:45 pm
it is even showing more 🙂 than data
is it acceptable?
how to make it better performable?
if indexes cannot be dropped and essential for the system is there ay other way to make the query and performance of sqlserver fast
actually our MSMQ is queing lots of request bcos of this indexes (inserts and updates r very slow)
Cheers
January 7, 2009 at 12:49 am
sqlcool (1/6/2009)
it is even showing more 🙂 than datais it acceptable?
how to make it better performable?
if indexes cannot be dropped and essential for the system is there ay other way to make the query and performance of sqlserver fast
actually our MSMQ is queing lots of request bcos of this indexes (inserts and updates r very slow)
Cheers
how to make it better performable?
You could create a new filegroup with file(s) to another physical disk and move all you non-clustering indexes overthere.
(inserts and updates r very slow)
That the tradeoff with indexes !
With SQL2005 you have DMV s avaliable to figure out which indexes are actually used and which are not !
http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true"> http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true
Remove redundant indexes and figure out an acceptable middle way for you indexes.
You also need to figure out fragmentation for you indexes !
Do you rebuild you indexes on a regular basis ?
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
January 7, 2009 at 1:00 am
How many indexes do you have?
Are you sure there are no redundant indexes?
Are they all been used?
Please post SQL 2000-related questions in the SQL 2000 forums in the future. If you post in the 2005 forums, you're very likely to get 2005-specific solutions.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
January 7, 2009 at 2:49 am
check your index widths too, depending on the columns included indexes can be quite large
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" 😉
January 7, 2009 at 3:17 am
GilaMonster (1/7/2009)
...Please post SQL 2000-related questions in the SQL 2000 forums in the future. If you post in the 2005 forums, you're very likely to get 2005-specific solutions.
Aarch... yes, overlooked OP mentioned SQL2000.
With SQL2000 no DMV, no included columns, ....
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply