Viewing 15 posts - 991 through 1,005 (of 1,536 total)
That would make a most excellent article Brian....
January 6, 2005 at 11:36 am
On failure will execute in the event of a failure, do you have the ON FAILURE workflow going towards the package?
Be careful not to have multiple on failure workflows...
January 6, 2005 at 9:57 am
It's last in the list, however that's not the execution order.
It adds components to the list in the order which they were added to the package.
January 6, 2005 at 9:39 am
Presuming that this is the 32bit Windows on 2003....
If this is a hot-memory added device you don't have to enable PAE, if not however I would leave the /PAE switch...
January 6, 2005 at 9:35 am
However if you prevent access to MSDB the user will not be able to see the jobs, or start them.
January 6, 2005 at 9:24 am
Dan,
you have to start SQL in single user mode to restore the master db. Check that it is in fact master that you want to restore. You can check out...
January 6, 2005 at 8:19 am
Users in a database is pretty simple...
Select p.SPID, P.STATUS, P.BLOCKED, P.CMD, P.CPU, P.PHYSICAL_IO, P.LAST_BATCH, P.PROGRAM_NAME, P.OPEN_TRAN, P.HOSTNAME, P.LOGINAME
from master.dbo.sysprocesses p (nolock)
join master..sysdatabases d (nolock) on p.dbid = d.dbid
Where d.[name] =...
January 6, 2005 at 8:11 am
Would preventing access to MSDB not accompish this?
January 6, 2005 at 8:09 am
If you have restored the master database from another server you will need to make sure that it knows that it's on a different machine, run
sp_dropserver <old_name>
go
sp_addserver <new_name>, 'local'
go
unless...
January 6, 2005 at 5:57 am
If you change the server IP address and you are connecting using the server name also make sure that the DNS entries are updated accordingly.
January 5, 2005 at 1:59 pm
Are you attempting to connect to a named instance? It could be a case of not including the instance name when attempting the connection through the IP, this is especially...
January 5, 2005 at 8:42 am
Looks like it has most of the information that I'm after, thanks Brian. Special notice needs to be taken with regards to the link 307532 How to troubleshoot...
January 4, 2005 at 10:01 am
Not the SQL service accounts themselves, rather the service account that the cluster uses.
January 4, 2005 at 6:02 am
Within a job use the DTSRUN utitlity. You can use this to execute each package and set an on success/failure for each.
You can look up the syntax in BOL, however...
January 3, 2005 at 8:40 am
Viewing 15 posts - 991 through 1,005 (of 1,536 total)