IndexedColumns Property
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.
The IndexedColumns property defines the list of columns participating in a Microsoft SQL Server index.
구문
object
.IndexedColumns [= value]
Parts
object
An expression that evaluates to an object in the Applies To listvalue
A SQL Distributed Management Objects (SQL-DMO) multistring listing columns that will participate in the index
Data Type
String
Modifiable
Write-only
Prototype (C/C++)
HRESULT SetIndexedColumns(SQLDMO_LPCSTR NewValue);
주의
The IndexedColumns property is implemented for index creation using SQL-DMO.
[!참고]
The IndexedColumns property is write-only. An attempt to retrieve the property value generates an error. The application cannot rely on the current value of the property in any way.For example, the application should not attempt to concatenate an additional column name with the property value. Instead, the application should build a concatenated string of column names and use that string to set the property value.
For more information about setting multistring parameters, see Using SQL-DMO Multistrings.