I am running Backup Exec 9.1 REV 4691 I had a job called 'Inventory Library 0005' that appeared in the "Job Monitor" and "Job Setup" but that had a 'To be Scheduled' Status and an 'Unknown' Job Type when looking in "Job Monitor" and when you double clicked it in "Job Setup" the information in the form that appeared was blank. I did the following to fix this issue. Please note that if you screw up your installation I bare _no_ responsibility. Make a full backup. There is a risk if you delete the wrong record it could completely pork your installation. 1. Shutdown all backup exec services using the Tools => Backup Exec Services... option in the Backup Exec Console (This shuts thing down in the right order) 2. Login to the backup exec MSDE Instance osql -d BEDB -S SERVERNAME\BKUPEXEC -E 3. Make a full backup of your backup exec database just in case. BACKUP DATABASE BEDB TO DISK='c:\admin\bedb.bak' go 3.a See notes below 4. Once you know exactly which record to Delete run the following in osql delete from jobs where JobName='Inventory Library 0005' go 5. Restart the Backup Exec services 3.a Note: To get the name of the fields I used the backup I created and restored it to a local copy of MSDE running on my workstation. Doing this means you can create an ODBC data source to the local 'test' db and use Microsoft Access to look at the tables and their contents to find what to delete. Copy the database backup file to your local machine and then load it as follows using osql osql -E -q "RESTORE DATABASE test2 FROM DISK='C:\temp\BEDB.bak' WITH MOVE 'bedb_dat' TO 'C:\temp\test2.dat', MOVE 'bedb_log' TO 'c:\temp\test2.log'"