Viewing 15 posts - 5,206 through 5,220 (of 5,843 total)
Lynn Pettis (5/8/2008)
May 8, 2008 at 2:07 pm
Lynn Pettis (5/8/2008)
Comes down to an "It depends".
I have a set of tvf that allow me to do As Of queries against our...
May 8, 2008 at 11:52 am
2. Functions can result in poor performance.
3. Functions can result in REALLY REALLY BAD performance. 🙂
4. Both can make it very difficult to debug/maintain code.
5. Functions (or...
May 8, 2008 at 9:36 am
1) Drop and add database activity can indeed lead to os file frag due to leaving holes in the file structure on disk.
2) Index maint can lead to os file...
May 7, 2008 at 3:19 pm
I am betting you are down to simply having slow disk IO, or perhaps your query is being blocked sometimes. Did you try your query with NOLOCK hints? ...
May 7, 2008 at 10:33 am
Rem (5/7/2008)
May 7, 2008 at 9:06 am
Rem (5/7/2008)
How can I see if my table is fragmented and how I can defrag? what about the disk file fragmentation, how I can defrag it?
Thanks...
May 7, 2008 at 8:46 am
Grant Fritchey (5/7/2008)
May 7, 2008 at 8:31 am
And thus you see why the optimizer chooses a table scan - almost 1/2 the cost of the bookmark lookups!
I would look at table fragmentation, disk file fragmentation,...
May 7, 2008 at 8:26 am
Grant Fritchey (5/6/2008)
May 7, 2008 at 7:38 am
I will add that I hope you undid your affinity settings too and put them back to default. I have yet to see anyone less than a TRUE expert...
May 7, 2008 at 7:32 am
You sure didn't give us much information we could use to help you, but I would start by doing an index analysis to see if you are missing some helpful...
May 7, 2008 at 7:21 am
Here is the bible on deadlock troubleshooting: http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
May 7, 2008 at 7:20 am
Rem (5/5/2008)
Here is the information:
rowcount whole table:+/-36000000
expected rowcount return: 244918
CREATE TABLE [dbo].[REP_table] (
[ID] [int] NOT NULL ,
[Qty] [int] NOT NULL ,
[Price] [money] NOT NULL ,
[FPrice] [money] NOT NULL ,
[Fline]...
May 7, 2008 at 7:19 am
rbarryyoung (5/6/2008)
TheSQLGuru (5/6/2008)
...Also the best practice on (properly tuned) OLTP systems is to set max dop = 1.
Really?!? Could you site a reference for this? The only general...
May 6, 2008 at 4:44 pm
Viewing 15 posts - 5,206 through 5,220 (of 5,843 total)