Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Maintanance Job Failed

    This is a fix for when a maintenance plan errors out rebuilding the indexes on a table that has a computed column. Just add -SupportComputedColumn to the command line....

  • RE: rs utility

    Yes, I had to the the same. With help from Micorsoft they informed me I had to recreate the encrytped keys.

    If you didn't backups the keys before you changed the...

  • RE: Lost Registration in Enterprise Manager

    Try this from the knowledge base. IT worked for me.

     

    http://support.microsoft.com/default.aspx?scid=kb;en-us;323280

  • RE: backing up users?

    If you want to backup the password for the login you can run this script to create an SP that will script out logins & passwords.

    ----- Begin Script, Create sp_help_revlogin procedure...

  • RE: Cant drop user - Help!!

    Use <databasename>

    sp_change_users_login 'auto_fix', '<username>'

  • RE: BackUp With TSQL

    I've wrttien this Stored Proc to do Differential backups and delete old backus after a set numberof days. It also truncates & shrinks the Tlog

     

    -- =============================================

    -- Differential Backup 'YourDatabase' of Database.

    -- Backups...

  • RE: using sp_changeobjectowner for multiple objects

    This is what I use:

    CREATE   PROC dbo.up_FixObjOwners

    AS

    SET NOCOUNT ON

    DECLARE @dynsql varchar(1000)

    SET @dynsql = ''

    DECLARE @Obj_Owner sysname

    SET @Obj_Owner = ''

    DECLARE @Obj_Type VARCHAR(30)

    SET @Obj_Type = ''

    DECLARE @Obj_Name sysname

    SET @Obj_Name = ''

    DECLARE...

Viewing 7 posts - 1 through 7 (of 7 total)