Viewing 13 posts - 31 through 43 (of 43 total)
vince_sql (9/28/2011)
Sounds like the fill factor is high so it becomes fragmented quickly when you do insert, updates and deletes.Have you tried lowering the 'fill factor'?
OK - what is that?...
September 28, 2011 at 12:49 pm
GilaMonster (9/28/2011)
EXEC sp_updatestats
Or, maybe better
UPDATE STATISTICS <table name> WITH FULLSCAN
where <table name> is the name of the table that you did all those...
September 28, 2011 at 12:41 pm
Also - you said:
"It is also possible the inserts are not actually going to the end of the table, but are being inserted all over the table, then the index...
September 28, 2011 at 12:39 pm
Setting is timeout ----- Would you give me an example?
<asp:SqlDataSource id="Test" CacheDuration="Infinite" runat="server" ConnectionString="<%$ ConnectionStrings:TestConnectionString %>" SelectCommand="SP_Test" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter DefaultValue="UNV" Name="DropDownList1" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
September 26, 2011 at 7:42 am
Yes, I posted and you guys gave me some great suggestions that I am working on. (for fixing the code)
September 26, 2011 at 7:39 am
post the actual execution plan----------- I know how to view the execution plan when I run my query. How would I copy it out to post it?
September 26, 2011 at 3:12 am
Also, do I need to "DO" anything with indexes to keep them running good?
September 26, 2011 at 3:06 am
I will check all out. Thank you for the links.
September 26, 2011 at 2:47 am
I'll check it out. Thanks for everything!
September 25, 2011 at 5:28 pm
OK - Thanks. What I will do is start from the beginning and post a new question about my indexes first to make sure I have that setup correct.
September 25, 2011 at 5:27 pm
Well, I have a huge table. Going on 3,000,000+ records with a aspx web front where users actively query this table with around 10 different parameters. Just completed...
September 25, 2011 at 5:14 am
Hello. This post was a huge help for me. I am able to get it to work in a stored procedure. Is it possible in a function?...
September 24, 2011 at 7:20 pm
Viewing 13 posts - 31 through 43 (of 43 total)