prediction join initiated from relational db?
-
2012年2月21日 12:21
Hi!
The example 2
http://msdn.microsoft.com/en-us/library/ms132031.aspx
describes the situation where you are connected to Analysis Services,
but how to do it the other way around, when you are connected
to the relational db?
B. D. Jensen
すべての返信
-
2012年2月22日 10:46モデレータ
Hi Bjorn,
For your case, use OPENROWSET to specify the data provider, connection string and queries. For example,
OPENROWSET
(
'SQLOLEDB.1',
'Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorksDW2008R2;Data Source=localhost',
'SELECT TOP 1000 * FROM vTargetMail'
)See http://msdn.microsoft.com/en-us/library/ms131962.aspx for more information about how to use OPENROWSET in DMX.
Additional helpful links:http://msdn.microsoft.com/en-us/library/ms131958.aspx to describe the most common ways to specify source data in DMX.
Regards,
Jerry
TechNet Subscriber Support in forum
If you have any feedback on our support, please contact tnmff@microsoft.com -
2012年2月22日 19:15
No, you misunderstand; I would like to do it the other way around:
connectet to the Database Engine, I would like to give new data as input to Analysis Service that should give me predictions...
These predicted values should then either be visible as report or be stored in a relational table...
B. D. Jensen
-
2012年2月23日 1:54モデレータ
So you want to either use the predicted values as report or save them into a relational table? If so,
for report based on Predicted values by using DMX, use SQL Server Reporting Services (SSRS) where you can build a report with dataset coming from the DMX, See http://technet.microsoft.com/en-us/library/ms155812(v=sql.100).aspx for more information regarding using the Analysis Services DMX Query Designer (Reporting Services).
To save the DMX result to a relational table, check http://blogs.msdn.com/b/jamiemac/archive/2008/10/07/getting-data-mining-results-into-sql-tables.aspx .
Hope this is what you are looking for.
Thanks,
Jerry- 回答としてマーク Bjorn D. Jensen 2012年3月1日 7:49
-
2012年2月23日 6:18
Hi Jerry!
Your 2. link solves it I think, but before marking it as answer:
can it be expressed even simpler avoiding the double openquery that links back to the db it comes from?
B. D. Jensen
-
2012年2月23日 6:38モデレータ
Open the data mining project within SQL Server Business Intelligence Development Studio(BIDS), then go to the Mining Model Prodiction tab where you can save the predicted result to a relational table.
See http://msdn.microsoft.com/en-us/library/ms178249.aspx for the above information.
thanks,
Jerry- 編集済み Jerry NeeModerator 2012年2月23日 6:41
-
2012年2月23日 14:43
thats not what I had in mind;
but seems we can do this?:
SELECT
* FROM Customers
NATURAL PREDICTION
JOIN OPENQUERY(LINKED_AS,
'SELECT Cluster() AS [Cluster], ClusterProbability() AS [Prob]
FROM [Customers - Clustering]
'
)
B. D. Jensen
-
2012年2月24日 7:24モデレータ
Bjorn,
Are you trying to use Cluster() labels as inputs for a different mining model? Your query seems an AS query (contains a PREDICTION JOIN) agains a linked AS server
bogdan crivat / http://www.bogdancrivat.net/dm
-
2012年2月27日 11:33
No, I'm just trying to figure out if I could avoid the backlinking to relational database;
e.g. avoiding one of the openquery in this example:
http://blogs.msdn.com/b/jamiemac/archive/2008/10/07/getting-data-mining-results-into-sql-tables.aspx
In my case it would be natural to be connected to the relational database engine,
taking new data, give them as input to mining model and get some predictions in return which then
could be used in a report or stored in relational tables ...
B. D. Jensen

