Description :Distribution (MU or node) fails for more than 120 MUs if using command mode and MU type:
uxdst NODE TMU=U
Cause
Cause type: Configuration Root Cause: It was a specific issue.
Environment
OS: Linux OS Version: All
Resolution
Create a script to list and then distribute MU by MU. It can be used for node too.
Example:
#!/bin/ksh # #MASS DISTRIBUTION OF MU TABLE NODE BY NODE # # $UXEXE/uxlst MU # $UXEXE/uxlst MU | awk '/^\ U_/ {print $1}' | while read NEXTMU do echo ${NEXTMU} sleep 1 $UXEXE/uxdst MU TMU=${NEXTMU} done