Converting T-SQL to PostgreSQL

From: maboyz <thabani(dot)moyo(at)distributel(dot)ca>
To: pgsql-sql(at)postgresql(dot)org
Subject: Converting T-SQL to PostgreSQL
Date: 2009-11-05 20:37:56
Message-ID: 26221691.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


I am trying to re write the following stored proc as a postgresql
function......but am new to postgres and it is kind of getting really
confusing trying to learn and let alone understand the syntax:

CREATE PROCEDURE [dbo].[GetAppAvailability]
@AuditAvailable bit output,
@BillingAvailable bit output,
@ReturnValue int output
AS
SET NOCOUNT ON

set @AuditAvailable = (select app_Status from AppAvailability where
app_Functionality = 'Audit')
set @BillingAvailable = (select app_Status from AppAvailability where
app_Functionality = 'Billing')

Set @ReturnValue = @@Error

I have this in postgres but obviously it is not correct:

CREATE OR REPLACE FUNCTION GetAppAvailability(OUT auditAvailable character
varying, OUT billingAvailable character varying)
AS
$BODY$
set $1 = (select "app_Status" from "AppAvailability" where
"app_Functionality" = 'Audit');
set $2 = (select "app_Status" from "AppAvailability" where
"app_Functionality" = 'Billing');
$BODY$
LANGUAGE 'sql' VOLATILE
COST 100;

--
View this message in context: http://old.nabble.com/Converting-T-SQL-to-PostgreSQL-tp26221691p26221691.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Pavel Stehule 2009-11-05 20:53:54 Re: Converting T-SQL to PostgreSQL
Previous Message cholid 2009-11-05 15:50:14 Database connection error, try to reset the connection parameters