Viewing 15 posts - 5,581 through 5,595 (of 6,678 total)
Well, I would have to guess that this information is stored in the SSIS package. You would have to export the package and open it in BIDS to verify...
March 5, 2009 at 3:41 pm
another shot in the dark - but, run the following and let me know what you find:
SELECT * FROM dbo.sysoriginatingservers;
SELECT * FROM dbo.sysoriginatingservers_view;
March 5, 2009 at 12:26 pm
Check the command line for the SQL Agent Job. The command line should have something like:
ESCAPE_NONE(SRVR) for the SRV parameter. Another shot in the dark...
March 4, 2009 at 4:21 pm
As Lynn stated - nothing wrong with it. For me, it would depend on how often I am running the tlog backups and when the full backup is scheduled.
If...
March 4, 2009 at 3:18 pm
Well - I am not sure where that is being stored. I am going to keep looking and will let you know if I find anything.
March 4, 2009 at 3:02 pm
And, while you are at it - check the value of 'orginating_server_id' in the sysjobs table.
SELECT * FROM msdb.dbo.sysjobs;
March 4, 2009 at 2:53 pm
Okay - try the following:
SELECT * FROM msdb.dbo.sysjobservers;
Edit: fixed type from sysservers to sysjobservers.
March 4, 2009 at 2:47 pm
Well, I am not sure about that - let me take a look around and see if I can find something.
Generally, I have found the best method is to just...
March 4, 2009 at 2:16 pm
How exactly did you get those maintenance plans onto the new 2008 system? Did you restore the msdb database from the 2005 system to the 2008 system?
If so, then...
March 4, 2009 at 2:03 pm
Using read uncommitted is the same as using (NOLOCK) - and, you are finding out exactly why this is not something that you do to work around issues.
There are several...
March 3, 2009 at 2:40 pm
For a simpler method, you can grant execute privileges on a schema. For example:
GRANT EXECUTE ON SCHEMA::dbo TO {role or user};
Now, if someone creates a new procedure - you...
March 3, 2009 at 2:08 pm
Using Powershell installed on any system that has network access:
PS> Get-WMIObject Win32_Service -computer {computer} | ? {$_.Name -like 'MSSQL*'} | Select Name, State
You can then extend this to send email...
March 3, 2009 at 1:38 pm
In 2005 - you have to add the Maintenance Cleanup Task to the maintenance plan and configure it. Sounds to me like that does not exist in the plan...
March 2, 2009 at 1:49 pm
Glad I could help and you were able to get something to work.
March 2, 2009 at 12:12 am
Viewing 15 posts - 5,581 through 5,595 (of 6,678 total)