vote up 1 vote down star
1

I use the database name in several places in my script and I want to be able to quickly change it, so I'm looking for something like this:

DECLARE @DBNAME VARCHAR(50)
SET @DBNAME = 'TEST'

CREATE DATABASE @DBNAME
GO
ALTER DATABASE @DBNAME SET COMPATIBILITY_LEVEL = 90
GO
ALTER DATABASE @DBNAME SET RECOVERY SIMPLE 
GO

But it doesn't work. So what's the correct way to write this code?

Thanks

flag

60% accept rate
One of our favorite questions. Duplicate. – le dorfier Apr 7 at 22:15
So please, point me to the original question, I couldn't find. – Erick Sasse Apr 7 at 22:56

3 Answers

vote up 3 vote down check

Put the entire script into a template string, with {SERVERNAME} placeholders. Then edit the string using:

SET @SQL_SCRIPT = REPLACE(@TEMPLATE, '{SERVERNAME}', @DBNAME)

and then run it with

EXECUTE @SQL_SCRIPT
link|flag
+1 Nice use of "replace". – Andrew Hare Apr 7 at 23:52
vote up 2 vote down

You cannot use a variable in a create table statement. The best thing I can suggest is to write the entire query as a string and exec that.

Try something like this:

declare @query varchar(max);
set @query = 'create database TEST...';

exec @query;
link|flag
vote up 1 vote down

Unfortunately you can't declare database names with a variable in that format.

For what you're trying to accomplish, you're going to need to wrap your statements within an EXEC() statement. So you'd have something like:

SELECT @Sql ='CREATE DATABASE ' + @DBNAME

Then call

EXEC(@Sql) or sp_executesql(@Sql)

to execute the sql string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.