Re: [SQL] Problem with PL/pgSQL

From: wieck(at)debis(dot)com (Jan Wieck)
To: Vladimir Terziev <vlady(at)school(dot)digsys(dot)bg>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Problem with PL/pgSQL
Date: 2000-02-08 16:04:28
Message-ID: m12ID7s-0003kGC@orion.SAPserv.Hamburg.dsh.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
>
> Hi
>
>
> I try to create the next function:
>
> create function ttt() RETURNS OPAQUE AS '
> BEGIN
> RAISE EXCEPTION "Hello"
> END' language 'plpgsql';
>
> The result is:
>
> ERROR: Unrecognized language specified in a CREATE FUNCTION: 'plpgsql'.
> Recognized languages are sql, C, internal and the created procedural languages.
>
>
> I have postgres SQL ver. 6.5.2.
>
>
> What's going on?

As the message says, only the created procedural languages
can be recognized. You haven't enabled the language and it
isn't installed by default. Use

createlang <dbname>

to install it in your database. If you install it in the
template1 database, than all subsequent created databases
automatically inherit this.

Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#========================================= wieck(at)debis(dot)com (Jan Wieck) #

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Lars 2000-02-08 19:08:11 Re: [SQL] SubSelect as a column
Previous Message Tom Lane 2000-02-08 15:57:46 Re: [SQL] Problem with PL/pgSQL