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

推荐订阅源

Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
腾讯CDC
D
Docker
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
The Cloudflare Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
量子位
美团技术团队
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 四两

[转载]独家:.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.