惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
Recent Announcements
Recent Announcements
U
Unit 42
B
Blog RSS Feed
V
Visual Studio Blog
G
Google Developers Blog
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
M
MIT News - Artificial intelligence
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
博客园 - 叶小钗
The Cloudflare Blog
I
InfoQ
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Y
Y Combinator Blog

博客园 - 四两

[转载]独家:.NET开发人员必知的八个网站 Arcgis Server开发群 oracle导出数据和表的结构 将E00矢量数据转换为shapefile文件 bs开发中常用的javascript技术 arcgis安装错误hresult:0x80070005解决 『转载』学习asp.net比较完整的流程 [转]解决“GridView1”激发了未处理的事件“PageIndexChanging” - 四两 - 博客园 控制图层的现实 绑定SqlDataSource的Gridview字符串字段长度截取 Arcgis server error:File inaccessible arcgis server object container account KML文件格式介绍 csdn为什么不能访问? asp.net验证码刷新 - 四两 - 博客园 oracle关键字特别注意 FreeTextBox3.1.6使用说明(整理) Asp.net上传图片产生预览效果(转) 编译器错误,错误代码为1。 asp.net 检测到有潜在危险的 Request.Form 值
解决不能删除arcsde数据源的featureclass和table的方法
四两 · 2008-08-14 · via 博客园 - 四两

Question: # 15

Why do I receive the error: "Failed to delete selected object(s)" when trying to delete an ArcSDE table or feature class in ArcCatalog?

Software: ArcCatalog
Version: 8.3
Platform:

Cause:

The full error message received is:

Failed to delete selected objects(s)
Lock request conflicts with an established lock
[Locked by database user: 'username' on machine: 'MACHINENAME']

Even though there is no connection to ArcSDE by the username from MACHINENAME you could receive this error message if there is a hung connection to ArcSDE that was not terminated correctly.

Answer:

Use the sdemon -o info -I users command to determine the connection that is causing the error message:

C:\>sdemon -o info -I users

ArcSDE Instance esri_sde Registered Server Tasks on TSPGIS01 at Tue Nov 11 13:14:37 2003
-------------------------------------------------------------------------
PID User Host:OS Started
----- -------- -------------------------------- ------------------------
1220 mike TSPGIS02:Win32 Tue Nov 11 13:14:19 2003
1219 tech TSPGIS01:Win32 Tue Nov 11 12:38:18 2003

Find the PID that corresponds to the username and MACHINENAME that is causing the error message. Use the sdemon -o kill -t pid command to terminate the hung connection:

C:\>sdemon -o kill -t 1219
Please enter ArcSDE DBA password:

ArcSDE Instance esri_sde Process Management on TSPGIS01 at Tue Nov 11 13:19:22 2003
-------------------------------------------------------------------------
Kill Server Task 1219? ARE YOU SURE (Y/N)?: y

You should now be able to delete the table or feature class in ArcCatalog.