-- INDEX UYGULAMALARI use yuksel set nocount on go if exists (select name from sysindexes where name='cl_musterino') begin drop index cl_musterino on musteri print 'index silindi' end go create nonclustered index cl_musterino on musteri ( musterino ) with fillfactor=75 Print 'index create edildi' go set nocount off go -- index oluşup oluşmadığını kontrol edelim set nocount off select name from sysindexes where name='cl_musterino' -- tablodaki index hakkında bilgiler exec sp_helpindex musteri -- Tablo hakkında yer kullanım bilgileri exec sp_spaceused musteri select * from sysindexes where id=OBJECT_ID('musteri')