It basically indicates that some database maintenance jobs (database backup, reindex, update) are conducted at the ILMT import time...
Does this error also shows up when import is scheduled/run at any other time then 06:00 AM ?
If there are no errors at other timeframe it's definitely some concurrent tasks started at that particular time interfering with ILMT for database access.
Please verify which database maintenance jobs are started around that time: 06:00 AM.
If that error shows up intermittently regardless of timing please verify output from following SQL statements run right after the import problem shows up :
- SELECT command, a.text AS Query, start_time, percent_complete, dateadd(second,estimated_completion_time/1000, getdate()) as estimated_completion_time FROM sys.dm_exec_requests r CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) a
- SELECT * from sys.sysprocesses cross apply sys.dm_exec_sql_text (sql_handle) WHERE OPEN_TRAN > 1 or blocked = 1
- EXEC sp_who2
- EXEC sp_lock
those SQL queries should help to verify if there are any concurrent tasks (together with possible locks) interfering with ILMT...
------------------------------
Thank you,
Oktawian
Oktawian Powązka, L3 Support
IBM License Metric Tool
------------------------------