drop.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- This removes the type (and a test table)
  3. -- It's used just for development
  4. --
  5. -- remove our test table
  6. drop table a;
  7. -- now drop any sql based functions associated with the lo type
  8. drop function oid(lo);
  9. -- now drop the type
  10. drop type lo;
  11. -- as the type is gone, remove the C based functions
  12. drop function lo_in(opaque);
  13. drop function lo_out(opaque);
  14. drop function lo(oid);
  15. drop function lo_manage();
  16. -- the lo stuff is now removed from the system