Hi allI am working in ArcGIs 10.1. Deleting with python 10.1 or Model Builder 10.1 a SDE feature dataset that has features classes and topology fails with the following error. The feature dataset is in a SDE 9.3 geodatabase.If I delete the same feature dataset with a python script in 9.3 it works fine.
# Import arcpy module
import arcpy
# Local variables:
MDC_TPDistrict = "Database Connections\\Dsde3 MAIN.SDE\\MAIN.TPDistrict"
# Process: Delete
arcpy.Delete_management(MDC_TPDistrict, "FeatureDataset")
=========================================== TRACE
traceback (most recent call last):
File "C:\Workspace\Delete.py", line 17, in <module>
arcpy.Delete_management(MDC_TPDistrict, "FeatureDataset")
File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\management.py", line 3658, in Delete
raise e
ExecuteError: DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1190_PolyErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1190_LineErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1190_PointErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1192_PolyErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1192_LineErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1192_PointErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1191_PolyErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1191_LineErrors]] DBMS table not found [DBMS table not found [ORA-00942: table or view does not exist
][MDC.T_1191_PointErrors]]
Failed to execute (Delete).
>>>