I am running PostgreSQL 8.4.4 with Ubuntu 10.04.

I am trying to generate uuid but can't find a way to do it.

I do have the uuid-ossp.sql in /usr/share/postgresql/8.4/contrib/uuid-ossp.sql

When I try this is what I get :

postgres=# SELECT uuid_generate_v1();
ERROR:  function uuid_generate_v1() does not exist
LINE 1: SELECT uuid_generate_v1();
               ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.

Any idea ?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 7 down vote accepted

The stuff in contrib aren't run automatically. You have to run it yourself to install the functions. I don't know about the 8.4 version, but in the 8.3 version it appears to only install it per-database, so open up the database you're using in psql and issue the command \i /usr/share/postgresql/8.4/contrib/uuid-ossp.sql

link|improve this answer
Thank you. It worked. Good to know ! – Spredzy Sep 30 '10 at 14:34
Yes, it's per database. You could install everything in the template1 database to be sure every new database that uses this database as its template (this is the default), is created including all contrib modules. – Frank Heikens Sep 30 '10 at 14:37
feedback

I saw this in my PostgreSQL travels. It requires the pgcrypto contrib module.

CREATE OR REPLACE FUNCTION generate_uuid() RETURNS UUID AS
$$
SELECT ENCODE(GEN_RANDOM_BYTES(16), 'hex')::UUID
$$ LANGUAGE SQL IMMUTABLE;
link|improve this answer
1  
for those of us at the back of the class, to actually get stuff installed into /contrib do a sudo apt-get install postgresql-contrib. @paul thanks. – G Forty May 26 '11 at 11:48
2  
You should not declare the function as IMMUTABLE because you don't want to have cached reads instead of function evaluations. Declare your function as VOLATILE to ensure the function is executed every time it is called. See postgresql.org/docs/8.3/interactive/xfunc-volatility.html for further explanations. – Augustus Kling Dec 4 '11 at 10:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.