arcmap 在oracle删除表重新创建提示表名存在解决放啊

sde表创建是有注册或者是关联关系存在的 按照以下步骤删除表的数据

select t.* from sde.TABLE_REGISTRY t where table_name like 'IRR%';
DELETE from  sde.TABLE_REGISTRY where table_name='IRRIGATION_TYPE';

select t.* from sde.LAYERS t where table_name like 'IRR%';
DELETE from  sde.LAYERS where table_name='IRRIGATION_TYPE';


select t.* from sde.GEOMETRY_COLUMNS t WHERE t.F_TABLE_NAME like 'IRR%';
DELETE from  sde.GEOMETRY_COLUMNS where F_TABLE_NAME='IRRIGATION_TYPE';


select t.* from sde.COLUMN_REGISTRY t where t.TABLE_NAME like 'IRR%';
DELETE from  sde.COLUMN_REGISTRY where TABLE_NAME='IRRIGATION_TYPE';

相关文章

文章浏览阅读773次,点赞6次,收藏9次。【代码】c# json字符...
文章浏览阅读8.7k次,点赞2次,收藏17次。此现象一般定位到远...
文章浏览阅读2.8k次。mysql脚本转化为oracle脚本_mysql建表语...
文章浏览阅读2.2k次。cx_Oracle报错:cx_Oracle DatabaseErr...
文章浏览阅读1.1k次,点赞38次,收藏35次。本文深入探讨了Or...
文章浏览阅读1.5k次。默认自动收集统计信息的时间为晚上10点...