Global indexes span data in one or more partitions, which are not equipartitioned with the base table. Because SAP ASE supports only unpartitioned global indexes, a global index spans all partitions.
Global indexes are supported for compatibility with earlier versions of SAP ASE, and because they are particularly useful in OLTP environments.
Clustered indexes on round-robin and unpartitioned tables
Nonclustered indexes on all types of tables
This is an example of creating a global nonclustered index on an unpartitioned table.
The figure below shows the default nonclustered index configuration.
create nonclustered index publish5_idx on publishers(pub_id)
This is an example figure that shows a default clustered index configuration. The table and index are unpartitioned.
create clustered index publish4_idx on publishers(pub_id)