Forum Replies Created

Viewing 15 posts - 5,581 through 5,595 (of 6,678 total)

  • RE: SQL Server Agent

    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...

  • RE: SQL Server Agent

    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;

  • RE: SQL Server Agent

    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...

  • RE: Backing up transaction log right before full backup - any benefits?

    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...

  • RE: SQL Server Agent

    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.

  • RE: SQL Server Agent

    And, while you are at it - check the value of 'orginating_server_id' in the sysjobs table.

    SELECT * FROM msdb.dbo.sysjobs;

  • RE: SQL Server Agent

    Okay - try the following:

    SELECT * FROM msdb.dbo.sysjobservers;

    Edit: fixed type from sysservers to sysjobservers.

  • RE: SQL Server Agent

    What do you get from SELECT @@servername;

  • RE: SQL Server Agent

    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...

  • RE: SQL Server Agent

    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...

  • RE: Primary Key violation in a stored proc temp table

    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...

  • RE: Execute prmissions on Stored procedures

    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...

  • RE: SQL Server Services

    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...

  • RE: Maintenance Plan not deleting physical backup file

    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...

  • RE: Using a variable with IN

    Glad I could help and you were able to get something to work.

Viewing 15 posts - 5,581 through 5,595 (of 6,678 total)