How to write Time Series forecast to table?I believe in SQL server 2005 it was possible to write the time series forecast to a table. I cannot find this setting in sql 2008, is it gone or just me being blind?© 2009 Microsoft Corporation. All rights reserved.Tue, 30 Jun 2009 11:58:33 Zc6a41094-9233-4118-80a0-611af9819132http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#c6a41094-9233-4118-80a0-611af9819132http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#c6a41094-9233-4118-80a0-611af9819132DirkLXhttp://social.msdn.microsoft.com/Profile/en-US/?user=DirkLXHow to write Time Series forecast to table?I believe in SQL server 2005 it was possible to write the time series forecast to a table. I cannot find this setting in sql 2008, is it gone or just me being blind?Mon, 22 Jun 2009 18:56:59 Z2009-06-22T18:56:59Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#ade65d6a-d2f0-47d8-8ee8-5fb96d151e42http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#ade65d6a-d2f0-47d8-8ee8-5fb96d151e42Jamie MacLennanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Jamie%20MacLennanHow to write Time Series forecast to table?There's a &quot;Save Query Result&quot; button in the Mining Model Prediction tab in BI Dev Studio.  You can execute a Time Series prediction there and then save it via the UI.<br/><br/>If you want to do this programmatically check out the article <a href="http://www.sqlserverdatamining.com/ssdm/Default.aspx?tabid=102&amp;Id=385">Getting Data Mining Results into SQL Tables</a><hr class="sig">-- Jamie MacLennan -- SQL Server Data Mining -- http://blogs.msdn.com/jamiemacTue, 23 Jun 2009 18:37:31 Z2009-06-23T18:37:31Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#a276813d-7476-4c8e-aad7-25e8bf403d35http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#a276813d-7476-4c8e-aad7-25e8bf403d35Allan Mitchellhttp://social.msdn.microsoft.com/Profile/en-US/?user=Allan%20MitchellHow to write Time Series forecast to table?In addition to Jamie's suggestion you could use the Query Task in SSIS. <div><br/></div> <div>Allan</div>Mon, 29 Jun 2009 15:29:24 Z2009-06-29T15:29:24Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#f329df8b-0218-4fd6-84d4-11b49ef95dd1http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/c6a41094-9233-4118-80a0-611af9819132#f329df8b-0218-4fd6-84d4-11b49ef95dd1DirkLXhttp://social.msdn.microsoft.com/Profile/en-US/?user=DirkLXHow to write Time Series forecast to table?Thanks Jamie, I found it!<br/><br/>Now, since I have the experts at reach please allow me to ask about another issue that I run into.<br/><br/><br/>I used the wizard to setup a time series forecasting model, parameterized, run it and got the results. The biggest issues here was the fact that the time dimension member cannot have a name attribute. Unless later one is set to none one will get error messages.<br/><br/>My next step was to constraint the time frame that goes into the analysis a little and so I picked the same monthly time dimension attribute and created a range from: to (please see the MDX below). I only used the BIDS wizard!<br/><br/>From here on however I get only errors. At this point I can create and run a basic model but only against all of my data. Can somebody may point at potential areas to look. <br/><br/>Any help is highly appreciated!<br/><br/> <pre lang=x-sql>// data query SELECT DATAID ( [CUBE].[$DIM CUSTOMER].[KATTT] ) AS [TOMER0_0] FROM [CUBE].[$DIM CUSTOMER] WHERE ( MDXFilter(&quot;( SELECT ( { [FILTER Y Numbers].[Bool].&amp;[True] } ) ON COLUMNS FROM ( SELECT ( [Time].[FMonth].&amp;[2007-04-01T00:00:00] : [Time].[FMonth].&amp;[2009-05-01T00:00:00] ) ON COLUMNS FROM ( SELECT ( { [FILTER Predictive Modeling].[Bool].&amp;[True] } ) ON COLUMNS FROM [CUBE])))&quot;) ) GROUP BY [TOMER0_0],[TOMER0_0] ORDER BY DATAID ( [CUBE].[$DIM CUSTOMER].[KATTT] ) ASC //This is the error message that is thrown //OLE DB error: OLE DB or ODBC error: Server: The operation //has been cancelled.. // second query SELECT DATAID ( [CUBE].[FACT ORDER DETAIL].[$DIM CUSTOMER.KATTT] ) AS [ETAIL0_0], KEY ( [CUBE].[FACT ORDER DETAIL].[$Time.FMonth],0 ) AS [ETAIL0_1], AGGREGATE ( [CUBE].[FACT ORDER DETAIL].[Net Weight] ) AS [ETAIL0_2], DATAID ( [CUBE].[FACT ORDER DETAIL].[$Time.FMonth] ) AS [ETAIL0_3] FROM [CUBE].[FACT ORDER DETAIL] WHERE ( MDXFilter(&quot;( SELECT ( { [FILTER Y Numbers].[Bool].&amp;[True] } ) ON COLUMNS FROM ( SELECT ( [Time].[FMonth].&amp;[2007-04-01T00:00:00] : [Time].[FMonth].&amp;[2009-05-01T00:00:00] ) ON COLUMNS FROM ( SELECT ( { [FILTER Predictive Modeling].[Bool].&amp;[True] } ) ON COLUMNS FROM [CUBE])))&quot;) ) GROUP BY [ETAIL0_0],[ETAIL0_1],[ETAIL0_0],[ETAIL0_3] ORDER BY DATAID ( [CUBE].[FACT ORDER DETAIL].[$DIM CUSTOMER.KATTT] ) ASC //this also creates an error //OLE DB error: OLE DB or ODBC error: Internal error: An //unexpected exception occurred.. //final error message for processing is //Errors in the OLAP storage engine: An error occurred while //processing the '~CaseDetail ~MG' partition of the '~CaseDetail //~MG' measure group for the 'Mining_SBU ~MC' cube from the //CUBE database.</pre> <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>Tue, 30 Jun 2009 11:58:33 Z2009-06-30T11:58:33Z