Checking the QUIESCE state in Datacom Multi-User (MUF)
search cancel

Checking the QUIESCE state in Datacom Multi-User (MUF)

book

Article ID: 49471

calendar_today

Updated On:

Products

Datacom DATACOM - AD Datacom/AD Datacom/DB

Issue/Introduction

Datacom MUF can be put in QUIESCE state (a pause in activity) by issuing the following console command:

/f mufname,QUIESCE REQ.

How can it be check if QUIESCE is in effect?

 

Environment

Datacom/DB Datacom/AD

All supported releases

Resolution

Run the following SQL query:

   SELECT LOCK_VALUE  
    FROM SYSADM.MUF_LOCKS_VALUE WHERE MUF_NAME = 'your MUFname'  
        AND LOCK_VALUE LIKE 'DBSQSC%' ; 

If you find rows then QUIESCE is in effect , if no rows found then it's not.