I am creating a database by using following schema ...... using microsoft sql server....

 CREATE DATABASE /*!32312 IF NOT EXISTS*/`stacks`/*!40100 
 DEFAULT CHARACTER SET utf8 */;(Line 15)

 USE `stacks`;

/*Table structure for table `answers` */

Got An error like this ...while executing , i dont know....

 Error :  Msg 102, Level 15, State 1, Line 15
      Incorrect syntax near '`'.

would any one pls help on this.....

Many Thanks in advance ....

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

It looks like your syntax is from MySQL. Why do you have back-ticks and "default character set"? This is not SQL Server syntax. Please see the SQL Server docs for CREATE DATABASE: http://msdn.microsoft.com/en-us/library/ms176061.aspx

link|improve this answer
Thanq i have corrected it....... – pratap k Sep 18 '11 at 13:23
feedback

Did you look up SQL Server CREATE DATABASE and identifier syntax?

All you need is CREATE DATABASE stacks;

Your code is for MySQL

link|improve this answer
Many thanks gbn ..... – pratap k Sep 18 '11 at 13:23
feedback

Your Answer

 
or
required, but never shown

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