Hi Nahla,
If you want to find out whether you have connections during your backup, run this statement in ACS or STRSQL (make sure to Change the dates and times to match the backup). N.B. If you are not using *SQL Naming, change qsys2.history_log_info to qsys2/history_log_info
WITH Connections as (
SELECT from_user,
SUBSTR(CAST(message_tokens as VARCHAR(80) CCSID 37), 1,10) as job,
SUBSTR(CAST(message_tokens as VARCHAR(80) CCSID 37), 64, 15) as ip
FROM TABLE(qsys2.history_log_info
(START_TIME => '2021-10-23-22.00.00.000000',
END_TIME => '2021-10-24-04.30.00.000000'))
WHERE message_id = 'CPIAD09')
SELECT ip, from_user as user, job, count(*) as connections
FROM Connections
GROUP BY IP, from_user, job
I hope this helps too
Terry
------------------------------
Terry Bartlett
------------------------------