zoukankan      html  css  js  c++  java
  • 解决ArcSDE图层名被占用的问题

    点击文章查看

    当你发现上面那篇文章时你已经接近成功了,但还差最后一步!

    <!-

    -delete   from sde.GDB_OBJECTCLASSES where NAME = upper('test') and owner =upper('ttt') ;

    delete   from sde.gdb_usermetadata where NAME = upper('test') and owner =upper('ttt') ;

    -->

    估计安装的sde版本不同,所以上面两条不能用

    delete  from sde.GEOMETRY_COLUMNS where F_TABLE_NAME =upper('test') and F_table_schema =upper('ttt') ;
    delete   from sde.GEOMETRY_COLUMNS where G_TABLE_NAME = upper('test') and G_table_schema =upper('ttt') ;
    delete   from sde.LAYERS where TABLE_NAME = upper('test') and owner =upper('ttt') ;
    delete   from sde.ST_GEOMETRY_INDEX where TABLE_NAME = upper('test')and owner =upper('ttt') ;
    delete   from sde.TABLE_REGISTRY where TABLE_NAME = upper('test')and owner =upper('ttt') ;
    delete   from sde.column_registry t where table_name = upper('test')and  t.owner =upper('ttt') ;
    delete  from sde.ALL_ST_GEOMETRY_COLUMNS_V where TABLE_NAME = upper('test') and owner =upper('ttt') ;
    delete   from sde.ST_GEOMETRY_COLUMNS where TABLE_NAME = upper('test') and owner =upper('ttt') ;
    <-下面这个是我自己找的->
    delete   from sde.ITEMS where NAME = upper('sde.test') and owner =upper('ttt') ;

  • 相关阅读:
    使用QT在子线程中访问串口
    小程序批量上传图片方案
    Jenkins自动化远程部署(vue-github)
    nginx配置https证书
    Linux 安装php7
    Vue技术点整理-指令
    如何保证接口的幂等性?
    mybatis 一对多分页查询数据条数不匹配解决
    源码系列-JDK-String
    kafka window 操作
  • 原文地址:https://www.cnblogs.com/riskyer/p/3329113.html
Copyright © 2011-2022 走看看