Re: SQL language
От | Michael Glaesemann |
---|---|
Тема | Re: SQL language |
Дата | |
Msg-id | EEA91A51-34B1-47D8-8490-4F74D5A14CBC@myrealbox.com обсуждение исходный текст |
Ответ на | SQL language ("krishnaa sridharan" <kichi@rediffmail.com>) |
Список | pgsql-sql |
On Oct 22, 2005, at 0:24 , krishnaa sridharan wrote: > I am a new user to PostGRE SQL. Welcome! [Please note that the it is PostgreSQL or Postgres.] > When i installed the application on the windows xp machine, There > were no language for the template database created. Is there a way > to add pl/sql to the databse that i create. Can some one guide me > on how to do this. PL/sql is available by default. You should be able to create a function without installing anything. To test, try creating a simple function such as this: test=# create function test_true() returns boolean language SQL as 'select true;'; CREATE FUNCTION test=# select test_true(); test_true ----------- t (1 row) If you want to install other procedural languages, perhaps the documentation can help. http://www.postgresql.org/docs/8.0/interactive/xplang.html#XPLANG- INSTALL Hope this helps. Michael Glaesemann grzm myrealbox com
В списке pgsql-sql по дате отправления: