Hola a todos quisiera saber como pasar el siguiente Script a lenguaje de Sql server
CREATE TABLE forum_content (
id int(10) NOT NULL auto_increment,
title text,
autor text,
forum text,
content text,
signature text,
PRIMARY KEY (id)
) TYPE=MyISAM;
CREATE TABLE forum_forums (
id int(10) NOT NULL auto_increment,
forum text,
permission text,
PRIMARY KEY (id)
) TYPE=MyISAM;
CREATE TABLE forum_pm (
id int(10) NOT NULL auto_increment,
user text,
content text,
owner text,
title text,
PRIMARY KEY (id)
) TYPE=MyISAM;
CREATE TABLE forum_reply (
id int(10) NOT NULL auto_increment,
autor text,
content text,
signature text,
reply_id text,
permission text,
PRIMARY KEY (id)
) TYPE=MyISAM;
CREATE TABLE forum_users (
id int(10) NOT NULL auto_increment,
user text,
pass text,
email text,
signature text,
PRIMARY KEY (id)
) TYPE=MyISAM;
Espero que me podáis ayudar gracias.