Opis (clsColumn)
Ostrzeżenie
Ta funkcja zostanie usunięta z następnej wersji programu Microsoft SQL Server. Nie należy stosować tej funkcji w nowych projektach oraz jak najszybciej należy zmodyfikować aplikacje, w których obecnie jest używana ta funkcja.
The Description property of an object of ClassType clsColumn sets or returns the description of the column.Ta właściwość jest zarezerwowana do użytku w przyszłości w Decision Support Objects (DSO) i nie jest dostępne dla aplikacji klient.
Typ danych
String
Dostęp
Odczyt i zapis
Przykłady
A.Ustawienie właściwości Opis
Użyć następującego kodu do zestaw Description dla właściwość clsColumn obiekt:
' Assume an object (dsoColumn) of ClassType clsColumn exists
dsoColumn.Description = "Number Sold"
B.Dodanie kolumny do modelu górnictwa i ustawienie właściwości Opis kolumny
Poniższy przykład tworzy nową kolumna w model wyszukiwania i ustawia liczbę właściwość, łącznie z Description właściwość:
'------------------------------------------------------------------------
' Add a new column to the mining model called Gender and relate this
' column to the Gender member property of the Name level of the
' Customers dimension. Declare that the data in this column is
' statistically discrete.
' Assume the existence of a DSO Level object, dsoLv.
'------------------------------------------------------------------------
'Add another column to the model.
Set dsoColumn = dsoDmm.Columns.AddNew("Gender")
'Identify the member property of the Customers dimension
'that this column is based on.
'Set the column's description for browsers of the schema.
Set dsoColumn.Description = "Based on the Gender member property " & _
"of the Name level of the Customers dimension."
Set dsoColumn.SourceOlapObject = dsoLvl.MemberProperties("Gender")
'Identify its type.
dsoColumn.DataType = adWChar
'Make this column related to the Customer Id column.
dsoColumn.RelatedColumn = "Customer Id"
'Identify this column as containing discrete data.
dsoColumn.ContentType = "DISCRETE"