Start of change

UNLOCK_DEVICE procedure

The UNLOCK_DEVICE procedure attempts to unlock an NVMe device.

Authorization: The caller must have *IOSYSCFG and *SERVICE special authorities.

Read syntax diagramSkip visual syntax diagram UNLOCK_DEVICE ( POLICY_PASSWORD =>  policy-password , RESOURCE_NAME =>  resource-name )

The schema is QSYS2.

policy-password
A character string that contains the policy password.
resource-name
A character string that contains the resource name of the device to be unlocked.

Example

  • Unlock an NVMe device.
    
    CALL QSYS2.UNLOCK_DEVICE(POLICY_PASSWORD => 'My0dev9pw!',
                             RESOURCE_NAME   => 'UNIT2'); 
End of change