vote up 0 vote down star

How to use DataMining feature of SQL Server 2008 with ASP.Net

flag

2 Answers

vote up 1 vote down

Take a look at SqlServerDataMining.com, a site run by Microsoft's SQL Server Data Mining team.

link|flag
vote up 0 vote down

In a nutshell, you want to:

  • Build cubes to model your data
  • Build a prediction calculator (or whatever kind of calculator you're looking to use)
  • Expose that via a web service
  • Call the web service in your app

For example, if you want to model whether or not a customer is likely to abandon their shopping card, you would figure out what characteristics of a shopper you want to capture and analyze. You set up your cubes to model what characteristics are indicative of a soon-to-be-bailing-out shopper. During the shopping process, your web app would send the shopper's characteristics to the SSAS server, which would return back a guess about whether or not the shopper is going to abandon the cart. Then your web app can take proactive measures before they leave.

All of the steps in here are kinda complicated - your best bet is probably to refine your question to focus on the areas you're responsible for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.