Viewing 15 posts - 1 through 15 (of 18 total)
OK, you do not have a [Run As] then it is running as the service account.
[Shift Right click] on SSMS, select [Run As], enter the Service Account details,...
August 6, 2010 at 8:43 am
Archive off data to a table you can hammer.
Have a the batch size configurable.
Allow time for have processes to obtain a lock
DECLARE @n Int
DECLARE @ROWCOUNT int
DECLARE @msg nvarchar(500)
SET @n =...
August 6, 2010 at 8:37 am
check the [Run As] box in the SQL job step. It is probably different from the one you use for SSIS. The step type is also different. Read up on...
August 6, 2010 at 8:30 am
check the permissions on [NT SERVICE\SQLSERVERAGENT], i think the upgrade may have removed the service account
August 6, 2010 at 8:27 am
If you declare a variable @varchar(1000) it will allocate more memory to the query than varchar(100). This can be a good thing. A field is different, as described above.
August 6, 2010 at 8:21 am
time for DBA's to be humble... ahh, we're not masters of the universe.
February 9, 2010 at 3:43 am
If you can't trust your System Administrator you are in trouble. If the data was that important you'd also have other controls in place. I don't think this is really...
February 9, 2010 at 2:36 am
If your interested this will also help. The status report requires three tables..
USE [DBA_Maint]
GO
/****** Object: Table [SQLStatus].[ServerErrorLog] Script Date: 01/28/2010 11:50:49 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE...
January 28, 2010 at 4:52 am
This bastardised from a number of different scripts from the internet...
USE [DBA_Maint]
GO
/****** Object: StoredProcedure [SQLStatus].[spDailyHealthCheck] Script Date: 01/28/2010 11:21:19 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [SQLStatus].[spDailyHealthCheck]...
January 28, 2010 at 4:26 am
I tested this, after 2hrs 9 minutes i got he following error:
Msg 8164, Level 16, State 1, Procedure sp_get_composite_job_info, Line 72
An INSERT EXEC statement cannot be nested.
Mail queued.
January 28, 2010 at 4:10 am
It sounds like you already have set the distributor up. Skip Step 1a and start from 1b.
December 4, 2009 at 9:33 am
Ask SSC works!! DBCC SHRINKFILE ('LogicalFileName',40000), set the specific size and it goes below the initial size.
November 19, 2009 at 12:28 am
Have you tried putting a WITH REPLACE in the RESTORE statement?
July 27, 2009 at 10:19 am
test connectivity...
telnet xxx.xxx.xxx.xxx 25
July 27, 2009 at 7:55 am
Viewing 15 posts - 1 through 15 (of 18 total)