uninstall_lo.sql
来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· SQL 代码 · 共 16 行
SQL
16 行
---- This removes the LO type-- It's used just for development---- Adjust this setting to control where the objects get created.SET search_path = public;-- drop the type and associated functionsDROP TYPE lo CASCADE;-- the trigger function has no dependency on the type, so drop separatelyDROP FUNCTION lo_manage();-- the lo stuff is now removed from the system
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?