Viewing 15 posts - 45,976 through 45,990 (of 49,571 total)
If you're using 2005, you can retrieve the xml plans from the plan cache. Use the sys.dm_exec_query_stats and the sys.dm_exec_query_plans DMVs. Or you can get profiler to capture the plans...
July 3, 2008 at 2:28 pm
Phil Factor (7/3/2008)
I'm so pleased you got the recognition. I'm a great fan of your forum entries. I was trying to find my favourite one of all, in which you...
July 3, 2008 at 11:02 am
rbarryyoung (7/3/2008)
Woo-Hoo! Way to go Gail! :w00t:
<grin> :w00t: 😀
Despite the huge number of questions that she responds to, I don't think that I have ever seen her give...
July 3, 2008 at 10:05 am
Thanks all. It's kinda unexpected.
inus.dupreez (7/3/2008)
July 3, 2008 at 7:45 am
Kyle Neier (7/3/2008)
Clearly, Gail and Jeffrey are correct and I'm the one that should be apologizing.
No worries. We've all done similar or worse.
I appropriated your test code to show...
July 3, 2008 at 7:35 am
Jeffrey Irish (7/3/2008)
July 3, 2008 at 7:21 am
Jeffrey Irish (7/3/2008)
July 3, 2008 at 7:04 am
Jeffrey Irish (7/3/2008)
I thought that the chain continued regardless of whether you took a Full backup in the middle of the day or not.
You are correct, it does. Only a...
July 3, 2008 at 6:56 am
Steve Hindle (7/3/2008)
does this break the chain from the original backup and tran log backups?
No. Tran log backups chain from another. Full backups do not truncate the transaction log, only...
July 3, 2008 at 6:53 am
Ok. There's no real gain from passing the db name into the sp_executesql, as it can't be used directly as a variable (as you've seen) This simplifies things a bit
set...
July 3, 2008 at 6:34 am
Thanks guys.
This site and everyone here is what made it possible.
Grant Fritchey (7/3/2008)
Holy cow, all the cool kids seem to be hanging out here now.
Careful, it seems to...
July 3, 2008 at 6:20 am
mahesh.kumar (7/3/2008)
If i create non-unique, non-clustered index and filter through registrationo wil it become faster.
Create the index on the registrationno column. It should be useful, depends on the queries...
July 3, 2008 at 5:44 am
select * from gpsdata_history1_April
That's going to table scan. It has to. You've asked for all the columns and all the rows, no filter. The only way that query can run...
July 3, 2008 at 5:03 am
Viewing 15 posts - 45,976 through 45,990 (of 49,571 total)