Viewing 15 posts - 61 through 75 (of 183 total)
Right click in your query window.
click Include Actual Execution Plan
when you execute the query next there will be an addition info that shows the Graphical query execution plan.
you probably could...
July 20, 2010 at 7:49 am
Read this article by Paul Randal on logging and recovery
http://technet.microsoft.com/en-us/magazine/2009.02.logging.aspx
then check your database recovery model.
before you execute your statement type in the following command
dbcc sqlperf(logspace)
and check how full ...
July 20, 2010 at 7:34 am
Sorry to be the kiss @$$ looking for an "A" 😀
but only non-clustered indexes can be filtered
Creates a filtered index by specifying which rows to include in the index. The...
July 20, 2010 at 7:17 am
When you take a look at the execution plan what do you see?
July 20, 2010 at 7:07 am
Hey Theo,
I get what your saying, my suggestion would be a custom coding job. You have an app or a web page that has a button...
July 20, 2010 at 6:53 am
*sorry hit the tab button and enter before i finished typing:-D
July 20, 2010 at 6:50 am
sorry for being brief I don't have time to work up a script but i know you can execute a job through script, however you would need to work up...
July 20, 2010 at 6:44 am
NJ-DBA (7/15/2010)
I currently have a 2005 Cluster with a single default instance. I would like to add a second (named) instance to the cluster. I do not...
July 20, 2010 at 6:37 am
Tim-153783 (7/19/2010)
July 20, 2010 at 6:25 am
obulay-657245 (7/19/2010)
What is the point of having multiple files ON THE SAME DRIVE c:?
This is straight from Paul Randal's blog that another user posted a link to abover
PS To address...
July 19, 2010 at 10:13 am
Festeron (7/1/2010)
I'd be interested in your answer to these questions:If you're using TDE in a production environment, what do you think you are protecting yourself from?
The is a great TDE...
July 1, 2010 at 11:26 am
mattr-846241 (6/29/2010)
I think...
June 29, 2010 at 11:21 am
I agree with everyone else.
I went to the link on MSDN to read about this, and it says basically that it "might" have an impact.
I've read the article as well...
June 29, 2010 at 6:46 am
here is a script I use to see database stats
declare @myTable as table (
[myID] [int] IDENTITY(1,1) NOT NULL,
fileid varchar(4),
fileGroup varchar(4),
TotalExtents int,
usedExtents int,
DBName varchar(100),
filename1 varchar(max))
insert into @myTable
exec ('sp_msforeachdb @command1="use [?];...
June 10, 2010 at 1:02 pm
Hey Just went through this myself.
Here is the best thing I found on the net
http://www.mssqltips.com/tip.asp?tip=1687
I made my own step by step guide, but this was the foundation.
I read the white...
June 10, 2010 at 7:59 am
Viewing 15 posts - 61 through 75 (of 183 total)