Re: migrating from MSSQL

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: "Eugene (dot)" <eugene750(at)yahoo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: migrating from MSSQL
Date: 2009-05-08 08:11:13
Message-ID: 4A03E921.9090507@hagander.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Eugene . wrote:
>
> Hi all,
>
> I've been tasked with evaluating the feasibility of migrating our
> in-house application from MSSQL to PostgreSQL. It is fairly old and has
> lots of stored procedures, which is why we need to think carefully
> before making the switch. Does anyone else have a similar experience?
> What are some of the things to watch out for?

TSQL is very very different from any of the languages supported in
PostgreSQL. You are most likely going to end up having to rewrite all
the procedures more or less completely, unless they are just wrappers
around single SQL statements (in which case you can use a SQL language one).

One thing to note is that in PostgreSQL you can't just execute the
typical "sp_myfunc" command as you would in MSSQL - you need to do
"SELECT sp_myfunc()". That means you may need to change every call in
the application, if that's the syntax you have been using.

> Secondly, which commercial support vendor would you recommend? I found
> EnterpriseDB and CommandPrompt, but I don't know anything about them.
> Any other candidates?

Depends completely on where in the world you are located. There is a
list of providers available on our website at
http://www.postgresql.org/support/professional_support

The ones you recommended are both good, but depending on where you are
there may be another good option available closer to you.

//Magnus

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Gevik Babakhani 2009-05-08 08:32:22 Re: migrating from MSSQL
Previous Message John R Pierce 2009-05-08 07:40:07 Re: migrating from MSSQL