postgresql – 无法使用uuid并创建扩展名来使用它

前端之家收集整理的这篇文章主要介绍了postgresql – 无法使用uuid并创建扩展名来使用它前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在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)。

未安装包含扩展名的操作系统软件包。要安装它:
apt-get install postgresql-contrib-9.2
原文链接:https://www.f2er.com/postgresql/192935.html

猜你在找的Postgre SQL相关文章