Forum Replies Created

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

  • RE: Add BUILTIN\Adminstrators group to SQL Server 2008 Security

    Hi All ,

    First Execute the below query. Then Grant apt permission thru Management Studio...

    CREATE LOGIN [BUILTIN\Administrators] FROM WINDOWS WITH DEFAULT_DATABASE=[master]

    GO

    :w00t:

  • RE: cluster index or non cluster index

    A clustered index is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf...

  • RE: Database Mirroring Issue

    Run a full backup of your database.

    This can be done through the GUI or using a T-SQL command.

    --Run this on testServer1/principal server

    USE master

    GO ...

  • RE: Database Mirroring Error

    To begin mirroring select Start Mirroring and the mirroring process will begin.

    Make sure you have restored your backup on the mirror instance or this process will not work.

    If you...

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