Re: PL/SQL block error

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: sivannarayanreddy(at)subexworld(dot)com
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: PL/SQL block error
Date: 2011-02-16 09:07:25
Message-ID: AANLkTi=irv6O7suVzeGMJ+pM6ruOhkatB-5MykqCeVOV@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello

you should to wrap code to function or inline function everywhere.

psql doesn't support PL/SQL and doesn't support inlined PL/SQL blocks.

Regards

Pavel Stehule

2011/2/16 Sivannarayanreddy <sivannarayanreddy(at)subexworld(dot)com>

> Hello,
> I am very new to the postgres sql, i am trying to execute below pl/sql
> block in postgres but i am getting error *'ERROR: syntax error at or near
> "integer" '*, Could some one help me in this regard
>
> declare
> v_count integer;
> begin
> select count(1) into v_count from pg_index inx where inx.indexrelid in
> (select oid from pg_class where relname='action_pk' and relowner in
> (select oid from pg_authid where rolname='postgres_ref'))
> and inx.indrelid in
> (select oid from pg_class where relname='action' and relowner in
> (select oid from pg_authid where rolname='postgres_ref'));
>
> if v_count = 0 then
> execute immediate 'create unique index action_pk
> on action(acn_id)';
> end if;
> end
>
>
>
> *Sivannarayanareddy Nusum** **| **System Analyst(Moneta GDO)*
>
> Subex Limited, Adarsh Tech Park, Outer Ring Road, Devarabisannalli,
> Bangalore – 560037, India.
> *Phone:* +91 80 6696 3371; *Mobile:* +91 9902065831 *Fax:* +91 80 6696
> 3333;
>
> *Email:* sivannarayanreddy(at)subexworld(dot)com <email(dot)id(at)subexworld(dot)com>; *
> URL:* www.subexworld.com
>
>
>
> *Disclaimer: This e-mail is bound by the terms and conditions described at
> **http://www.subexworld.com/mail-disclaimer.html*<http://www.subexworld.com/mail-disclaimer.html>
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Sivannarayanreddy 2011-02-16 10:42:15 Oracle Equivalent queries in Postgres
Previous Message Sivannarayanreddy 2011-02-16 08:42:54 PL/SQL block error