Removing unused Items from the database
Moderator: SEOW Developers
Removing unused Items from the database
Is there an easy way to remove items not on the template from the database?
-
- Posts: 2237
- Joined: Mon 08 Jan 2007 11:10 pm
- Location: Perth, Western Australia
You can do it via SQL, something like:
This assumes that all campaign objects to be used are in the ObjMissionData table already.
Alternatively, disable all objects in Object_Specifications using
and then re-enable the ones you want by changing Nationality back to 'r', 'g' or 'n' by hand.
Cheers,
4Shades
Code: Select all
UPDATE Object_Specifications SET Nationality='z' WHERE NOT EXISTS (SELECT DISTINCT Obj_Type FROM ObjMissionData WHERE Object_Specifications.Object_Type=ObjMissionData.Obj_Type);
Alternatively, disable all objects in Object_Specifications using
Code: Select all
UPDATE Object_Specifications SET Nationality='z'
Cheers,
4Shades
IV/JG7_4Shades
SEOW Developer

SEOW Developer
