sp_MSindexspace: İndeks boyutunu KB olarak döndürür.
Syntax:
sp_MSindexspace [ @tablename = ] 'tablename', [ @index_name = ] 'index_name'
Örnek:
EXEC sp_MSindexspace @tablename = 'Musteri'
sp_MStablespace: Tablo boyutunu KB olarak döndürür.
Syntax:
sp_MStablespace [ @name = ] 'name', [ @id = ] 'id'
Örnek:
EXEC sp_MStablespace @name = 'Personel'
sp_objectfilegroup: Objenin datafilegroup'unu döndürür.
Syntax:sp_objectfilegroup [ @objid = ] 'objid'
Örnek:USE TestDB
GO
DECLARE @id INT
SET @id = OBJECT_ID('TestDB.dbo.TestTablo')
EXEC sp_objectfilegroup @objid = @id
Hiç yorum yok:
Yorum Gönder