postgresql – 从Postgres数据库中删除所有函数

前端之家收集整理的这篇文章主要介绍了postgresql – 从Postgres数据库中删除所有函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个安装了PostGIS旧版破解版的数据库。我想轻松地删除数据库中的所有功能(都来自PostGIS)。有没有一个简单的方法来做到这一点?即使简单地提取函数名称列表也是可以接受的,因为我可以做一个大的DROP FUNCTION语句。
A fine answer to this question can be found here
SELECT 'DROP FUNCTION ' || ns.nspname || '.' || proname 
       || '(' || oidvectortypes(proargtypes) || ');'
FROM pg_proc INNER JOIN pg_namespace ns ON (pg_proc.pronamespace = ns.oid)
WHERE ns.nspname = 'my_messed_up_schema'  order by proname;
原文链接:https://www.f2er.com/postgresql/192920.html

猜你在找的Postgre SQL相关文章