l******9 发帖数: 579 | 1 I would like to build up a data mining model in SQl server 2008 R2 on win 7.
This is my code:
CREATE MINING STRUCTURE [People1]
(
[CustID] LONG KEY,
[Name] TEXT DISCRETE,
[Gender] TEXT DISCRETE,
[Age] LONG CONTINUOUS,
[CarMake] TEXT DISCRETE,
[CarModel] TEXT DISCRETE
)
GO
In Microsoft SQL server management studio, I got error:
Unknown object type 'MINING' used in a CREATE, DROP, or ALTER statement.
Did I need to install something so that the SSMS can understand what I want
to do ?
I am new to do data mining in SSMS.
thanks |
|