Viewing 15 posts - 16 through 30 (of 185 total)
Hi Gail,
I originally was trying to find out if CTE's use TEMPDB? I was always told to think of them as you said.
"CTEs are nothing more than...
April 10, 2013 at 10:38 am
If anyone is curious like most things it depends..
If the CTE is using recursion then its uses a spool operator therefore tempdb is used....therefore not much performance benefit vs just...
April 10, 2013 at 8:19 am
The optimizer will create shell queries that do not contain the full execution plan but only a pointer to the full plan (not actual execution plans).Run the following qry and...
November 6, 2012 at 2:48 pm
you probably already have these but just in case, here a couple of scripts if it get hung again
also be aware if this is 2005 it does not use sql...
February 20, 2012 at 2:07 pm
sometimes the index gets hung up, especially if multiple FT index are rebuilt at the same time.I found that I needed to separate them by like 30 min and...
February 20, 2012 at 1:33 pm
I agree with Grants Option 2, if you understand it, you dont need it.
I would add option 3 if you dont understand it dont touch it! you will more then...
December 12, 2011 at 2:42 pm
if you have not got this figured out yet. save you trace file. then move it the server you want to run it on
Then go the profiler on the test...
December 8, 2011 at 3:25 pm
FTS is going to need the data to be on one table as well. you would have to have two searches then compare the rankings. That might work.
I have...
December 8, 2011 at 3:15 pm
running 64 bit 2008 windows so switch is not an issue.
November 8, 2011 at 7:59 am
quick geuss you have packet loss, check your nic card, here's a couple of threads they might help
July 27, 2011 at 2:56 pm
correct sorry its actually 300 sec..is the standard
July 27, 2011 at 1:33 pm
in order to determine if its a Disk or Ram issue check, Page life expectancy, min requirements is 500. This tells you that the pages are staying in the buffer...
July 27, 2011 at 1:03 pm
you might try something like this, you add as needed....
USE [master]
GO
/****** Object: StoredProcedure [dbo].[BackupDbWithTs] Script Date: 07/05/2011 16:23:47 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROC [dbo].[BackupDbWithTs]
@db_name...
July 5, 2011 at 3:38 pm
you can create a non clustered index to replace the IX_SessionVars. At this point is doing what its suppose to which is 24 seeks, against the table. you can make...
July 5, 2011 at 2:33 pm
Viewing 15 posts - 16 through 30 (of 185 total)