Viewing 15 posts - 4,531 through 4,545 (of 7,168 total)
Jeff Moden (4/10/2012)
opc.three (4/9/2012)
L' Eomot Inversé (4/9/2012)
Jeff Moden (4/8/2012)
April 10, 2012 at 4:18 pm
pamozer (4/9/2012)
The one thing...
April 10, 2012 at 3:46 pm
Brandie Tarvin (4/10/2012)
Also make sure the sa account doesn't own the jobs in question.
Why would it matter if sa owned jobs?
April 10, 2012 at 3:32 pm
Tough spot. I was thinking of checking @@TRANCOUNT immediately after the call to said "inner proc" and then explicitly raising your own error if things were not as expected after...
April 10, 2012 at 3:29 pm
Derek Gemmen (4/10/2012)
April 10, 2012 at 2:58 pm
Did you import the assembly? This works fine for me:
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | Out-Null
$srv = New-Object Microsoft.SqlServer.Management.SMO.Server("N3011SIM")
foreach ($job in $srv.Jobserver.Jobs)
{
$job.Name + " = " + $job.IsEnabled;
}
If this does...
April 10, 2012 at 1:41 pm
You could add them to the msdb Database Role SQLAgentUserRole and them make them the job owner of any jobs you want them to be able to modify.
April 10, 2012 at 12:03 pm
Andeavour (4/10/2012)
It looks like there's a SQL Server 2008 add on...
April 10, 2012 at 11:55 am
sqlfriends (4/10/2012)
So, what exactly the step you do for keeping the same name?
By changing the server name, will that leave some...
April 10, 2012 at 11:05 am
I recommend using SSIS Package Configurations. Here is a video demonstrating how to get started:
April 10, 2012 at 10:38 am
I'll start with the assumption that SSIS is not sending your rows into oblivion without being told to do so. To confirm, are you using the EXCEL connector built into...
April 10, 2012 at 10:17 am
sqlfriends (4/10/2012)
That is what we do too. Use the new server name.So what is the better option ?
You have been given many viable options, all worked for one or more...
April 10, 2012 at 10:05 am
I use Policy Based Management with a WMI query (ExecuteWql).
April 10, 2012 at 9:42 am
SSIS, being mostly visual in terms of the programming techniques, can sometimes be difficult to get started. This site has been a favorite of mine for a while, and I...
April 10, 2012 at 9:38 am
Viewing 15 posts - 4,531 through 4,545 (of 7,168 total)