Viewing 15 posts - 1 through 15 (of 198 total)
If you take a look over the query plans of either stored procedures then you will see that Eager Spool operator is used by the query optimiser in some cases,...
November 22, 2012 at 11:01 pm
Just an add on, build 3152 has got the problem described here. You would need to upgrade to at least 3159.
December 30, 2008 at 7:58 pm
The log file grows too large because this is the way the application is running the back-end transactions; unless you can optimise tsql, it seems you have to do the...
October 2, 2008 at 12:54 am
it was not meant to insert a wink; the statement is
alter table );
October 1, 2008 at 11:42 pm
As much as I can see, you're trying to create a clustered index on a separate filegroup than the one where your table resides on. By definition, all clustered indexes...
October 1, 2008 at 11:40 pm
If you say that you can run the plan manually then it can be assumed that the sql agent service is up and running. If your sql instance is SP1...
October 1, 2008 at 11:33 pm
It is hard to give a short answer to your question as indexes are the core of sql server databases. You can srat with BOL, also look on internet for...
August 18, 2008 at 1:18 am
CREATE TABLE [dbo].[DDLEventLog](
[EventDate] [datetime] NOT NULL,
[UserName] [sysname] NOT NULL,
[objectName] [sysname] NOT NULL,
[CommandText] [varchar](max) NOT NULL,
[EventType] [nvarchar](100) NULL
) ON [PRIMARY]
--
create trigger [ReturnEventData]
on DATABASE
FOR
CREATE_PROCEDURE, DROP_PROCEDURE, ALTER_PROCEDURE
AS
declare @eventData XML,
@uname nvarchar(50),
@oname nvarchar(100),
@otext varchar(max),
@etype...
July 24, 2008 at 11:32 pm
Install and run dbo.sp_help_revlogin on the instance you are db_owner; copy the query result in a script for the logins you want to move then ask the prod dba to...
July 24, 2008 at 10:27 pm
Create an Integration Services package and schedule it to run daily/weekly, depending how often you add/remove logins. There is a "Transfer Logins Task" where you can select the logins that...
June 15, 2008 at 10:38 pm
You would have to monitor your dbs access for a certain period; there is not a straight way to "select last transaction date" from a db.
What I would do: create...
June 15, 2008 at 7:51 pm
You cannot restore your master from a x32 to x64, but you can use http://support.microsoft.com/kb/918992/ MS article to move your logins to the new instance (How to transfer...
June 5, 2008 at 7:55 pm
Thanks all for your responses. It's a relief to know that the outage would be for a reboot only.
June 5, 2008 at 6:36 pm
The new LUNs would be added as resources for the new cluster group; it's included already with the hardware design requirements. What I do not understand is if, by adding...
June 5, 2008 at 5:11 pm
I may add that you cannot achieve a file shrink by running DBCC SHRINKFILE if the database is in simple recovery mode.
The recovery model of a db can be viewed/modified...
April 9, 2008 at 4:30 am
Viewing 15 posts - 1 through 15 (of 198 total)