Results 1 to 4 of 4

Thread: Exclusive Mode

  1. #1
    Join Date
    Feb 2003
    Posts
    13

    Exclusive Mode

    Hi,

    When I open an application, it prompts me for a message that SQL is locked in exclusive mode by other application.

    How to solve this?

    thanks in advance

    christine
    Last edited by Christine; 05-22-2003 at 07:53 PM.

  2. #2
    Join Date
    Mar 2003
    Location
    NJ
    Posts
    201
    In SQL Server 2000 ,the following alternative options are available by using the ALTER DATABASE command:

    ALTER DATABASE database SET SINGLE_USER.
    This command restricts access to the database to only one user at a time.

    ALTER DATABASE database SET RESTRICTED_USER.
    This command restricts access to the database to only members of the db_owner, dbcreator, or sysadmin roles.

    ALTER DATABASE database SET MULTI_USER.
    This command returns access to the database to its normal operating state

    --From BOL

  3. #3
    Join Date
    Sep 2002
    Posts
    5,938
    Should check what does the other app do. Why have different apps access same db?

  4. #4
    Join Date
    Feb 2003
    Posts
    13

    Smile

    thankx for the help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •