Re: [GENERAL] newid() in postgres

2007-04-09 Thread marcel.beutner
Thanks, I'll try to implement it. Marcel ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org/

Re: [GENERAL] newid() in postgres

2007-04-06 Thread marcel.beutner
Hello, Thanks a lot for your answers! But I don't need a sequence which only will be incremented. I need a _real_ GUID just as the newid() function. Is there no way to generate such a GUID? I need a real GUID because I use them further in my host app. And my host app relies on it. Thanks for

[GENERAL] newid() in postgres

2007-04-04 Thread marcel.beutner
Hello NG, Is there an equivalent in postgres for the newid() function like in sqlserver? I need to generate a unique identifier in my select statement: SELECT X, newid(), Y FROM MyTable X newid() Y