Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stored Procedures too PostgreSQL Functions

Status
Not open for further replies.

roberm1

Programmer
Mar 4, 2003
6
GB
Hi all, I need translate some SQL server Stored Procedures into PostgreSQL Functions, how can I do this ?
Any help with this will be appretiated greatly.

Regards, Mark.
 
>Hi all, I need translate some SQL server Stored Procedures into PostgreSQL Functions, how can I do this ?

Well....

By knowing how SQL Server's procedural language works, and by knowing how PostgreSQL's procedural language works, and then by creating PostgreSQL procedures that do the equivalent of the SQL Server procedures. Just like porting functions from any language into any other language, there's no secret to it, but there's no way around doing the hard work.

Spend some time at and become familiar with Pl/PgSQL, which is PostgreSQL's primary procedural language. You might also want to start spending large amounts of time at -------------------------------------------

My PostgreSQL FAQ --
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top