Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/07/2008, 18:37
Avatar de j84625
j84625
 
Fecha de Ingreso: junio-2008
Ubicación: Valencia
Mensajes: 170
Antigüedad: 16 años, 8 meses
Puntos: 2
Información Como Pasar sintaxis de Mysql a Sql server

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.