Typ danych (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 DataType property identifies the data type of an object of ClassType clsColumn.Właściwość ta dotyczy tylko kolumn SubClassType sbclsRegular.
Typ danych
ADODB.DataTypeEnum
Dostęp
Odczyt i zapis
Uwagi
Wartości DataType właściwość są dostarczane przez Microsoft ® ActiveX ® Data Objects (ADO) DataTypeEnum Wyliczenie stałych.Więcej informacji można znaleźć w dokumentacji ADO.
Przykłady
Ustawienie właściwości typu danych
W następującym przykładzie dodano nową kolumna danych model wyszukiwania obiektu.Następnie ustawia właściwość różnych, łącznie z DataType właściwość.
'------------------------------------------------------------------------
' Add a new column to the mining model called Unit Sales and relate
' this column to the Sales cube measure of the same name. Set the
' column's data type to Integer, and identify the data content in it as
' being continuous and logarithmically normalized. Finally, identify this
' column as being predictable.
' Assume the existence of a DSO Cube object, dsoCb.
'------------------------------------------------------------------------
'Add another column to the model.
Set dsoColumn = dsoDmm.Columns.AddNew("Unit Sales")
'Identify this column as being based on the Unit Sales measure.
Set dsoColumn.SourceOlapObject = dsoCb.Measures("Unit Sales")
'Identify the column type.
dsoColumn.DataType = adInteger
'Identify this column's content as being continuous.
dsoColumn.ContentType = "CONTINUOUS"
'Identify the statistical distribution of this data.
dsoColumn.Distribution = "LOG_NORMAL"
'Identify the column as being predictable.
dsoColumn.IsPredictable = True