Check if database exist

  • How can I check if a database exist before using it. I am running several scripts in one file that run against several databases and some database might exist depending on the server. If the database does not exist I get a '911, database does not exist' error. How can I handle this error?

  • dynamic sql to create the database? that won't fix any warnign where you have a USE [NewDB] that doesn't exist at parse time, i think:

    if NOT EXISTS(SELECT * FROM sys.databases WHERE name='NewDb')

    BEGIN

    EXEC ('CREATE DATABASE NewDB')

    END

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

You must be logged in to reply to this topic. Login to reply