FILEPROPERTY (Transact-SQL)
Bir dosya adı ve özellik adı belirtildiğinde, belirtilen dosya adı özellik değerini verir.
FILEPROPERTY ( file_name , property )
Bağımsız değişkenler
file_name
Is an expression that contains the name of the file associated with the current database for which to return property information.file_name is nchar(128).property
Is an expression that contains the name of the file property to return.property is varchar(128), and can be one of the following values.Değer
Açıklama
Döndürülen değer
IsReadOnly
Dosya grubu salt okunur özelliklidir.
1 = True
0 = False
NULL = girdi geçerli değil.
IsPrimaryFile
Dosyası birincil dosyadır.
1 = True
0 = False
NULL = girdi geçerli değil.
IsLogFile
Bir günlük dosyası dosyasıdır.
1 = True
0 = False
NULL = girdi geçerli değil.
SpaceUsed
Belirtilen dosya tarafından kullanılan alan miktarı.
Dosyaya ayrılan sayfa sayısı
Dönüş Türleri
int
Remarks
file_name karşılık gelen Ad sütunsys.master_files or sys.database_files kataloğunu görüntüleyin.
Örnekler
Aşağıdaki örnek, ayarı verir IsPrimaryFile özellik için AdventureWorks_Data Dosya adında AdventureWorks Veritabanı.
Here is the result set.
Primary File
-------------
1
(1 row(s) affected)