Do you mean a "partitioning index" in DB2 z/OS? Because "cluster indexes" are the same in DB2 LUW and DB2 z/OS, and the limit key applies to partitioning indexes in DB2 z/OS.
http://publib.boulder.ibm.com/infoce...ingindexes.htm
Regarding partitioning indexes, we have the following situation in the two DB2 products:
DB2 z/OS: A partitioning index is used to determine how the range partitioning is done in a partitioned table. (Btw, you should use the respective clauses in the CREATE/ALTER TABLE statements instead of a partitioned index in newer DB2 z/OS versions.)
DB2 LUW: There is no partitioning index. Partitioning rows is done based on the specification in the CREATE/ALTER TABLE statement where you define the different ranges. (Putting this kind of information on an index is not intuitive anyway.) Furthermore, you have hash-partitioning for database partitions, and you can use range-partitioning at a table level (orthogonal to database partitioning).