Hello
In general, for SQL Server 2005 you can use the
microsoft.private.sqlserver2005.analysisservices.datamining newsgroup on the
privatenews.microsoft.com server. The newsgroup is mirrored with a Web
interface at
http://www.sqlserverdatamining.com/DMCommunity/Newsgroup/default.aspx and
you can post questions there, as well as do a full-text search in previous
questions and replies.
Now back to your problem: you can use Adomd.Net instead of OleDb/Ado.Net
In Adomd.Net terms, my previous reply translates:
You can write a C# application that connects to the Analysis Services server
via a Microsoft.AnalysisServices.AdomdClient.AdomdConnection objects and
executes an INSERT INTO
statement (through Microsoft.AnalysisServices.AdomdClient.AdomdCommand)
pointing to the newest
data source, the one to be used in training.
In the recent Community Preview builds (as well as in the complete version
of the product), the AdomdCommand object is able to take a DataTable as
parameter for the INSERT INTO statement. That means that you will not have
to cache your data first into a database, but can pass the whole training
data set as a parameter for INSERT INTO. I am not sure if this is actually
helpful for your scenario. However, if you need it, it is there :-)
Hope this helps
--
--
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. It is for newsgroup
purposes only.
thanks,
bogdan
[quoted text, click to view] "d.kiesling" <d.kiesling@gmx.de> wrote in message
news:0a5e01c51984$330dff60$a601280a@phx.gbl...
> Hello,
> thanks for your reply. I'm using SQL Server 2005 Beta 2,
> maybe I should post my question somewhere else. Is it
> possible to use ADOMD.NET to reprocess my decision tree
> models in Analysis Services?
>
> Bye, Dan
>