Is there any way to generate UUID in Greenplum. As latest version of Greenplum is using Postgres 8.2 and this feature is not available for Postgres 8.2 (used by Greenplum), but the same has been added to later versions of Postgres . Is there any way we can populate column with UUID in greenplum?
Is there any function avaliable in greenplum to generate UUID
897 views Asked by Deepamitra Rath At
1
You could just write it in PL/Python, since Python's uuid library makes this easy (I'm assuming a random UUID, and that you can run this as "gpadmin"):
Now (still as gpadmin):