/***************************************************************** * A script checking if there are any tables with no clustered * * index * * * * * * ver 1.0 (2004.08.11) * *****************************************************************/ select id, name from sysobjects where OBJECTPROPERTY(id, N'TableHasClustIndex') = 0 and OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name