Forum Replies Created

Viewing 15 posts - 1,261 through 1,275 (of 2,387 total)

  • RE: URGENT : What happens if MAX Rows per job reaches

    You can also have detailed Maintenance Plan information written to a file. To have detailed Maintenance Plan information written to a file, use these steps: In SQL Server Enterprise Manager,...

  • RE: Please HELP

    SQLBill,

    His SQL Server version is 6.5. There is no such MDF/LDF database files and detach/attach commands in this version.

    Dimpal,

    Go to your SQL Server installation folder \MSSQL\LOG to open those errorlog...

  • RE: URGENT : What happens if MAX Rows per job reaches

    I would go to server Task Manager to see any SQL Server Maintenance processes (sqlmaint.exe) that could be hung. Kill them and try your jobs.

    Which version of SQL Server and...

  • RE: DB scheduled restore job fail

    For example.

    use master

    go

    alter database northwind set offline with rollback immediate

    go

    drop database northwind

    go

  • RE: Licensing mode

    Of course you have to purchase your license. Paper work is one thing and how to change it is another thing.

    Call Microsoft if you like to confirm whether it...

  • RE: DB scheduled restore job fail

    Ok. It looks you want to disconnect all user's connections before droping the database.

    You may try to replace your step1 with 'alter database' command with 'termination' option. See BOL...

  • RE: DB scheduled restore job fail

    quote:


    I run detach user, drop DB and then restore DB, 3 steps in the job


  • RE: SQL Database organization

    USE pubs

    IF EXISTS (SELECT name FROM sysobjects

    WHERE name = 'reminder' AND type = 'TR')

    DROP TRIGGER reminder

    GO

    CREATE TRIGGER reminder

    ON titles

    FOR INSERT, UPDATE,...

  • RE: Strange error message

    Which stored procedure did you try to run? sp_adduser?

  • RE: URGENT : What happens if MAX Rows per job reaches

    quote:


    Couple of days back we had a situation that the jobs were hung with a status "performing completion actions". We had...

  • RE: SQL Database organization

    A trigger is a special type of stored procedure that is not called directly by a user. When the trigger is created, it is defined to execute when a specific...

  • RE: Licensing mode

    Sorry, I was wrong. Once the license mode is set, you can't change the modes but you can add seat or processor licenses from control panel --> SQL Server 2000...

  • RE: Windows 2000 SP4 and SQL Server 2000

    Build number 818 indicates you have installed MS03-031: Cumulative Security Patch for SQL Server that was released recently and Win2k SP4 shouldn't include it. SP4 was published for download around...

  • RE: URGENT : What happens if MAX Rows per job reaches

    The old history recods will be deleted. SQL Server Agent uses 'sysjobhistory' to log history information but the maintenance plan keeps the history in 'sysdbmaintplan_history' table for that plan. The...

  • RE: allow to change password for any logins

    Execute permissions default to the public role for a user changing the password for his or her own login. Members of the securityadmin and sysadmin fixed server roles can change...

Viewing 15 posts - 1,261 through 1,275 (of 2,387 total)