From: | "Nigel J(dot) Andrews" <nandrews(at)investsystems(dot)co(dot)uk> |
---|---|
To: | Gregory Seidman <gss+pg(at)cs(dot)brown(dot)edu> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: last word in text |
Date: | 2003-01-15 22:14:13 |
Message-ID: | Pine.LNX.4.21.0301152153250.5255-100000@ponder.fairway2k.co.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Wed, 15 Jan 2003, Gregory Seidman wrote:
> Ian Harding sez:
> } I am certain it can, but you could make pltcl available (if you have
> } the rights) by typing
> }
> } createlang 'pltcl' yourdatabasename
> }
> } at the command prompt.
>
> I have the rights, but I don't seem to have the library. I don't think I
> compiled it when I configured/built postgresql in the first place.
>
> % createlang --username=postgres --pglib=/Volumes/Database/postgresql/lib 'pltcl' template0
> ERROR: stat failed on file '/Volumes/Database/postgresql/lib/pltcl': No such file or directory
> createlang: language installation failed
> %
select substring(rtrim(' ', a.sentence) from '\w+$') from atable a;
Well at least for 7.3.x I can't remember but I presume you're still on an older
production release.
create function last_word ( text ) returns text as '
declare
frompos integer;
ostr alias for $1;
begin
while strpos($ostr, ' ') > 0 loop
frompos := strpos($ostr, ' ') + 1;
ostr := substring($ostr, $frompos);
end loop;
return $ostr;
end;
' language 'plpgsql';
It ain't pretty, it ain't perfect and it ain't optimised but it might do as a
first draft for you.
--
Nigel J. Andrews
From | Date | Subject | |
---|---|---|---|
Next Message | Petre Scheie | 2003-01-15 22:17:40 | Re: [GENERAL] gmake check error on HPUX |
Previous Message | Vivek Khera | 2003-01-15 21:52:41 | Re: postgres on a PDA |