The Definitive Guide to Scaling out SQL Server 2005:
if you create a nonclustered index and don’t already have a clustered index, SQL Server creates a “phantom” clustered index because nonclustered indexes always point to clustered index keys.
What rules does SQL Server use to determine which column/columns will the phantom clustered index be created on?
If it is on the primary key of that table (quick guess), what rules does SQL Server use to determine which column/columns will the phantom clustered index be created on for a table without primary keys?
(question targeted at any version of SQL Server 2005 and beyond)