Viewing 15 posts - 5,851 through 5,865 (of 7,502 total)
Start sqlprofiler for a while to captura all the load.
It shows the connection and execution settings !
You can load it into a table and analyse later on.
March 29, 2007 at 5:27 am
Indeed you have to synchronise these local windows groups (created at install time of your sqlserver instance) when you restore master or if you granted them explicit on userdbs.
yourServerName\SQLServer2005MSSQLUser$yourServerName$yourInstanceName
yourServerName\SQLServer2005SQLAgentUser$yourServerName$yourInstanceName
yourServerName\SQLServer2005MSFTEUser$yourServerName$yourInstanceName
March 29, 2007 at 1:28 am
also search your xml-execution plan for "CONVERT_IMPLICIT" . This can ruin your execution !
March 29, 2007 at 1:14 am
Even when an order by is within the view, chances are that someone just put it in to select the view and see the data sorted like specified in the...
March 27, 2007 at 12:00 am
just to add ...
Remove the top 100 percent. Even if it doesn't hurt, it puts you on the wrong foot when you encounter it.
Even when an order by is...
March 26, 2007 at 11:57 pm
- run sqlprofiler to find out what is going on.
- maybe adding an index solves this problem
- splitting to filegroups and moving a filegroup to another disk may also solve...
March 26, 2007 at 1:14 pm
the article is gone ???
![]()
the link should be :
March 23, 2007 at 5:37 am
Did you read http://www.sqlservercentral.com/columnists/jsack/aweadventures.asp
1) Yes
2) How much is your total server memory per node ?
If you use AWE with SQL2000 SQLserver will grab all memory ('max server memory')...
March 23, 2007 at 1:52 am
Keep in mind identities can have gaps. Your user may not want this ![]()
You could have your user raise an alert which launches a...
March 23, 2007 at 1:17 am
- I suggest you start sqlprofiler to find out what is filling up you tempdb.
146Gb is quiet a volume for tempdb. It must be holding _all_ your data;
My guess is...
March 22, 2007 at 1:32 am
I've seen I posted an older version which doesn't take non-online-rebuildable objects into account.![]()
This version is more suitable.![]()
set...
March 21, 2007 at 3:49 am
e.g.
set nocount on
declare @OnlineRebuild char(1)
Set @OnlineRebuild = 'Y'
print '-- Begin ' + db_name() + ' ' + convert(varchar(25),getdate(),121) ;
Declare @SQLStmt varchar(max);
declare c1 cursor for
--print...
March 20, 2007 at 1:41 pm
did you read http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=510 by Clinton Herring ?
March 20, 2007 at 5:23 am
btw
- Are you using the correct BROKER_INSTANCE when you create the route ?
CREATE
ROUTE ErrorLoggerSendRoute WITH
March 20, 2007 at 2:15 am
Viewing 15 posts - 5,851 through 5,865 (of 7,502 total)