Error
Unable to delete a folder within Series6 that is empty.
“Unable to delete the selected item…as it is in use elsewhere in the system”
Solution
Check the INVUEVENTLOG table on the Series6 DB for the listed Node numbers
SELECT * FROM INVUEVENTLOG WHERE NODE_ID IN ('#####')If they exist in that table they will need to be removed using the following SQL script. PLEASE NOTE always take a backup of the database before running any update or delete scripts.
DELETE FROM INVUEVENTLOG WHERE NODE_ID IN ('####')
Comments
0 comments
Please sign in to leave a comment.