我想在Ubuntu 13上的Postgresql 9.2中使用uuid。所以当我试图检查是否可用时,我做到了:
select uuid_generate_v4() as one;
它给了我错误:function uuid_generate_v4()不存在
然后我做了CREATE EXTENSION“uuid-ossp”;
ERROR: could not open extension control file "/usr/share/postgresql/9.2/extension/uuid-ossp.control": No such file or directory
那我下一步该怎么办?
顺便说一下,SELECT * FROM pg_available_extensions;仅返回plpsql(1.0)。
未安装包含扩展名的操作系统软件包。要安装它:
原文链接:https://www.f2er.com/postgresql/192935.htmlapt-get install postgresql-contrib-9.2