Hi mzoch00,It maybe necessary to delete the raster's associated tables from the database. The raster will have several tables that contain the image's information such as blk, aux, bnd, etc. References to the raster object also exist as records in the table_registry geometry_columns and raster_columns tables. These queries below can help identify what needs to be removed. Please be aware that you are deleting entire tables from the database. Please contact Esri Technical Support if you are not comfortable deleting these tables and records.SQL Server:select * from sde.SDE_raster_columns where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.SDE_table_registry where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.SDE_column_registry where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.SDE_geometry_columns where f_table_name = '<raster_name>' and f_table_schema = 'dbo';
select * from sde.SDE_layers where table_name = '<raster_name>' and owner = 'dbo'; 5
SELECT OBJECTID FROM dbo.GDB_ITEMS where PhysicalName = '<db_name>.<owner>.<raster_name>'
Oracle:select * from sde.raster_columns where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.table_registry where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.column_registry where table_name = '<raster_name>' and owner = 'dbo';
select * from sde.geometry_columns where f_table_name = '<raster_name>' and f_table_schema = 'dbo';
select * from sde.layers where table_name = '<raster_name>' and owner = 'dbo'; 5
SELECT OBJECTID FROM dbo.GDB_ITEMS where PhysicalName = '<db_name>.<owner>.<raster_name>'