Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: Converting a table from SQL Server


  • From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
  • To: Bob McConnell <rmcconne(at)lightlink(dot)com>
  • Cc: pgsql-novice(at)postgresql(dot)org
  • Subject: Re: Converting a table from SQL Server
  • Date: Sun, 31 Aug 2008 13:26:28 -0400
  • Message-id: <11153.1220203588@sss.pgh.pa.us> <text/plain>

Bob McConnell <rmcconne(at)lightlink(dot)com> writes:
> But I have only found articles on how to convert from MySQL to Postgres 
> and a few on how to convert from SQL Server to MySQL. So how do I 
> translate this without leaving the bad taste of MySQL in my mouth? Or is 
> there a similar recommended practice for Postgres?

I believe the main thing you need to know is that the brackets are
a nonstandard spelling for quoted identifiers.  That is
[MajorReleaseNumber] converts to "MajorReleaseNumber".

(You might be better off translating to MajorReleaseNumber without the
quotes, which will really mean majorreleasenumber.  Depends whether you
want to double-quote every use of the name in your applications.)

The IDENTITY business probably equates to SERIAL, and there are some
other nonstandard things here like the CLUSTERED adjective.

			regards, tom lane



Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group