Re: Stored procedures in postgresql?

From: "Shoaib Mir" <shoaibmir(at)gmail(dot)com>
To: bo(dot)berglund(at)telia(dot)com
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Stored procedures in postgresql?
Date: 2006-11-26 10:11:44
Message-ID: bf54be870611260211p31a45bc5ka0f8b85694221d9@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Couple of good articles for migrating MS SQL database to PostgreSQL:

http://www.postgresql.org/docs/techdocs.29
http://www.postgresql.org/docs/techdocs.27

Thanks,
---------
Shoaib Mir
EnterpriseDB (www.enterprisedb.com)

On 11/26/06, Bo Berglund <bo(dot)berglund(at)telia(dot)com> wrote:
>
> I just started looking at the PostgresSQL server. Not yet installed,
> just browsing the on-line docs and mail list.
>
> I was recommended having a look at PG from an opensource perspective.
>
> We have been using Microsoft SQLServer 2000 for a long time so that is
> my reference when asking "silly" questions. Please have in mind that I
> am just loking to see if there is any chance that we can switch to PG
> from MSSQL.
>
> First question:
> Is there a way to store procedures inside the PG database so that the
> business logic does not have to be supplied via SQL calls from each
> client?
>
> What we have been doing for the last 5 years is to program literally
> all of the important logic as TransactSQL procedures in the MSSQL
> database. The clients only interact wit the database via calls to the
> procedures, thus making it possible to change the behaviour in one
> place only without updating the client applications whenever needed.
>
> Is PL/pgSQL (http://www.postgresql.org/docs/8.1/static/plpgsql.html)
> usable in the same way as TransactSQL in MSSQL?
> Specifically, does it support:
> - encryption (to hide the source from the customers)
> - precompilation (to increase execution speed)
> - @@IDENTITY (to read the unique identifier from a newly created line)
>
> and is there a converter from TransactSQL???
>
> Bo Berglund
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Bo Berglund 2006-11-26 15:45:32 Which installer for Postgres on Windows?
Previous Message Bo Berglund 2006-11-26 09:32:43 Stored procedures in postgresql?