Viewing 15 posts - 2,401 through 2,415 (of 7,502 total)
Gails wonderful article explains it all very well.
Just in case you still want other refs :
January 29, 2011 at 12:59 am
/* check no jobs are using your operator */
IF EXISTS ( Select J.name as JobName
...
January 28, 2011 at 2:59 pm
This could well be an appetizer kind of session.
Just get an overload of hotspot topics to pick a detailed session on the issues that got your interest.
Might even work very...
January 28, 2011 at 2:52 pm
did you restart the sql instance after you granted the windows auth for IFI ?
January 28, 2011 at 2:44 pm
no. The current collection of cumulative updates (hotfixes):
January 28, 2011 at 1:14 pm
Indeed, like Michael Valentine Jones explained:
Instant file Initialization isn't used for log files.
Log files need to be able to be written to as fast as possible.
The fastest way is of...
January 28, 2011 at 1:10 pm
- Are you trying to validate the operators email address ??
- If you just want to modify the operator I would create another operator and alter the job to use...
January 28, 2011 at 1:05 pm
- You should also estimate how many rows you expect to fit into a single page (8060 bytes) and project that to your full set.
- if you designed your system...
January 28, 2011 at 7:06 am
No problem. Enjoy your first coffee 😉
eeuhm ... and indeed, a deny will always overrule the others, even with the user defined db roles.
That's why ms performs role membership tests...
January 28, 2011 at 6:40 am
Brandie Tarvin (1/28/2011)
ALZDBA (1/28/2011)
January 28, 2011 at 4:59 am
WayneS (1/27/2011)
January 28, 2011 at 12:44 am
Or use the service account to connect to your sql instance and change the sa password.
Before doing this, double check no application connects using sa for login. (modify pwd needed...
January 27, 2011 at 10:35 am
How about:
Declare @status INT
, @jobID uniqueidentifier
, @mon int
Declare @rc int
Declare @cnt INT
Select @jobID = job_id
from sysjobs
where name = 'testing_sample_ssis'
print 'start'
Exec...
January 27, 2011 at 9:19 am
your sp_stop_job procedure ends normally.
So, your next statement is still executed in the "begin try" part.
Declare @rc int
BEGIN TRY
print 'start'
Exec @rc=msdb..sp_stop_job 'yourjob'
if...
January 27, 2011 at 6:04 am
We receive many "sspi handshake failed" at dns-server reboot time (win 2003 domain). transparency with secondary dns servers doesn't seem so transparent after all 🙁
January 26, 2011 at 2:20 pm
Viewing 15 posts - 2,401 through 2,415 (of 7,502 total)