Re: mysql create table -> psql

Поиск
Список
Период
Сортировка
Искать
От
Scott Cain
Тема
Re: mysql create table -> psql
Дата
Msg-id
1063114568.1437.6.camel@localhost.localdomain
Ответ на
Список
Дерево обсуждения
mysql create table -> psql expect <expect@ihubbell.com>
Re: mysql create table -> psql Scott Cain <cain@cshl.org>
Re: mysql create table -> psql expect <expect@ihubbell.com>
Re: mysql create table -> psql Dennis Gearon <gearond@fireserve.net>
Re: mysql create table -> psql Franco Bruno Borghesi <franco@akyasociados.com.ar>
Re: mysql create table -> psql Ian Barwick <barwick@gmx.net>
Re: mysql create table -> psql Richard Huxton <dev@archonet.com>
Re: mysql create table -> psql "scott.marlowe" <scott.marlowe@ihs.com>
You might want to take a look at a Perl module, SQL::Translator, which
translates schema elements (table creates, indexes, views) from one DB's
SQL to another.  I don't know if the S::T on CPAN is up to date, so you
might want to try their website to get the CVS version:

http://sqlfairy.sourceforge.net/

Scott


On Tue, 2003-09-09 at 02:10, expect wrote:
> Hello,
> 
> Trying to get this MySql create table command to work, no luck.
> 
> create sequence serial;
> 
> CREATE TABLE outbound (  
> source char(100) default '', 
> destination char(100) default '', 
> sport int4 default 0 NOT NULL,  
> dport int4 NOT NULL default 0,
> time timestamp NOT NULL default '0000-00-00 00:00:00',
> id int8 default nextval('serial') not null,  
> constraint id PRIMARY (id)
> );
> 
> 
> I get a parse error:
> ERROR:  parser: parse error at or near "(" at character 279
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend
-- 
------------------------------------------------------------------------
Scott Cain, Ph. D.                                         cain@cshl.org
GMOD Coordinator (http://www.gmod.org/)                     216-392-3087
Cold Spring Harbor Laboratory

В списке pgsql-general по дате отправления
От: Michael Meskes
Дата:
От: scott.marlowe
Дата:
Сообщение: Re: mysql create table -> psql
FAQ