January 9, 2015 at 12:57 pm
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?
January 9, 2015 at 1:13 pm
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
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply