Viewing 15 posts - 4,531 through 4,545 (of 7,164 total)
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?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 3:29 pm
Derek Gemmen (4/10/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 1:41 pm
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 12:42 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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 12:03 pm
Andeavour (4/10/2012)
It looks like there's a SQL Server 2008 add on...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 11:05 am
I recommend using SSIS Package Configurations. Here is a video demonstrating how to get started:
SQL Share > SSIS Configurations
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 10:05 am
I use Policy Based Management with a WMI query (ExecuteWql).
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 9:38 am
The 1TB in 30 minutes example was leveraging parallelism within SSIS. If you're using a foreach loop then you're making SSIS single-threaded. Since you have a varying number of files...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 9:29 am
SQLKnowItAll (4/10/2012)
The other option is to do this in separate queries starting with checking col 3 and moving data left. Then column 2.
That's the ticket, but only one query...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
April 10, 2012 at 9:10 am
Viewing 15 posts - 4,531 through 4,545 (of 7,164 total)