次の方法で共有


MiningModels Collection

ms133279.note(ja-jp,SQL.90).gifメモ :
  この機能は、Microsoft SQL Server の次のバージョンで削除されます。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションはできるだけ早く修正してください。

The MiningModels collection contains the data mining models within a database.

The following object contains a MiningModels collection:

  • clsDatabase

Each MiningModels collection contains the data mining model objects that make up the data mining models for the entire database.

解説

The ContainedClassType property for this collection always returns clsMiningModel.

使用例

The following example connects to an Analysis server and creates a data mining model in the FoodMart 2000 sample database called FoodMartMiningModel:

Dim s as DSO.Server
Dim db as DSO.MDStores ' Create an interface for the FoodMart 2000
' database.
Dim dmm as DSO.MiningModel
' Connect to the server.
Set s = new DSO.Server
s.Connect ("LocalHost")
' Get a reference to the FoodMart 2000 database.
set db = s.MDStores("FoodMart 2000")
'Create the data mining model using the AddNew method.
set dmm = db.MiningModels.AddNew("FoodMartMiningModel")
' ... Continue by setting various properties for the new object...

参照

関連項目

clsMiningModel
clsDatabase
clsServer

ヘルプおよび情報

SQL Server 2005 の参考資料の入手