sp_placeobject does not remove an object from its allocated segment. However, it causes all further disk allocation for that object to occur on the new segment it specifies.
sp_placeobject bigseg, mytab
sp_placeobject does not move an object from one database device to another. Any pages allocated on the first device remain allocated; any data written to the first device remains on the device. sp_placeobject affects only future space allocations.
Extent not within segment: Object object_name, indid index_id includes extents on allocation page page_number which is not in segment segment_name.
You can ignore this message.
See the Reference Manual: Procedures.
Split large tables across segments that are located on separate disk controllers to improve performance for high-volume, multiuser applications.
The order of steps is important; in particular, create the clustered index before you place the table on the second segment.
This figure summarizes how to split a table across two segments on a server using a 2K logical page size:
The balance of disk allocation may change over time if the table is updated frequently. To guarantee that the speed advantages are maintained, you may need to drop and re-create the table.