Results 1 to 3 of 3

Thread: Purging deleted database names

  1. #1
    Max Guest

    Purging deleted database names

    When connecting to an SQL Server (v7 in this case) the log file shows that old and deleted databases are still being opened as part of the process. Further, these db names are now reserved and cannot be reused, even thought I've deleted them.

    Is there any way I can purge all traces of these deleted db names?

    You might have guessed, I'm a newbie, which is why there are a few dozen deleted DBs.

    Thanks for any help
    Max
    atomax@gmx.net

  2. #2
    Ray Miao Guest

    Purging deleted database names (reply)

    Use sp_helpdb to double check.


    ------------
    Max at 7/1/2002 3:00:58 PM

    When connecting to an SQL Server (v7 in this case) the log file shows that old and deleted databases are still being opened as part of the process. Further, these db names are now reserved and cannot be reused, even thought I've deleted them.

    Is there any way I can purge all traces of these deleted db names?

    You might have guessed, I'm a newbie, which is why there are a few dozen deleted DBs.

    Thanks for any help
    Max
    atomax@gmx.net

  3. #3
    rogerjh Guest

    Purging deleted database names (reply)


    use this query:

    select name from master..sysdatabases

    ... to see if the database names are still there.

    ------------
    Ray Miao at 7/1/2002 3:48:22 PM

    Use sp_helpdb to double check.


    ------------
    Max at 7/1/2002 3:00:58 PM

    When connecting to an SQL Server (v7 in this case) the log file shows that old and deleted databases are still being opened as part of the process. Further, these db names are now reserved and cannot be reused, even thought I've deleted them.

    Is there any way I can purge all traces of these deleted db names?

    You might have guessed, I'm a newbie, which is why there are a few dozen deleted DBs.

    Thanks for any help
    Max
    atomax@gmx.net

Posting Permissions

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