hi,
try this link: Killer Objects
www.archerpoint.com/.../killer-objects
look at this post on Mibuso
www.mibuso.com/.../viewtopic.php
Example would remove a table named 'Setup Table' with ID 6010001 from the Company Cronus...
DELETE FROM [dbo].[Cronus$Setup Table] > remove object data
DELETE from [dbo].[Object] where Type = 1 and ID = 6010001 > remove object from NAV data dictionary
DROP TABLE [dbo].[Cronus$Setup Table] > drop table
GO
This does remove the table but causes big problems, backup/restore stops working as it says the above table cannot be found.