business-intelligence

The best MDX references on the net [closed]

孤者浪人 提交于 2019-11-29 23:57:55
What is the best references/links,cheatsheets for the MDX language? Here are a few starters that I have collected. Please share yours :) http://www.gumper.com/mdx.html http://www.sqlserveranalysisservices.com/OLAPPapers/InventoryManagement%20in%20AS2005v2.htm http://www.ssas-info.com/ssas-cheat-sheets/72-cheat-sheets/880-time-mdx-cheat-sheets I was the only one that knew MDX and had to write these documents for my poor colleagues before I left the company... It's perhaps hard to look through if you don't know what you're looking for, but the Microsoft MDX Reference is actually very good if you

Generating Reports - What works for you? [closed]

一个人想着一个人 提交于 2019-11-29 23:02:30
I'm looking for a templating tool that allows powerful manipulation of data and report building. JasperReports is powerful, but is it the best out there? I generally don't need the ability for fancy colors or gradients, but I do need the ability to position data accurately and produce reliable, quick results. Ideally, generating a report shouldn't need to be driven by a visual tool, either, and should be entirely API based. Does anyone have real experience with any major reporting framework in a large scale application? Some of the reporting tools I've seen deal primarily with

How to use SQL Server stored procedures in Microsoft PowerBI?

狂风中的少年 提交于 2019-11-29 07:15:58
问题 I want to generate reports from my SQL Server tables. I have some already made stored procedures that I would like to use to generate reports from. I haven't found a way to do so. Only by rewriting the queries. Thanks :) 回答1: To execute your SP in Power BI--> 1.In SQL Server right click on your SP and select Execute. Your code is executed and a new query window opens up which was responsible for execution. Copy that Query. 2.In Power BI Query Editor, select New Source-->SQL Server. After

SSIS hidden sheets as Excel Destination

坚强是说给别人听的谎言 提交于 2019-11-28 13:08:59
As occurring more often something simple is not so simple in SSIS (v 2008) Situation before B.I. came in: data was loaded into linked tables in hidden excel sheets, there were macro's and manual adaptations. After : Still hidden sheets but we replaced macro functionalities with SSIS and had to unlink the table to get rid of the pop-up when opening the files: "The following data may have been lost: -Table" Since we unlinked the table (and by consequence deleted the connection) we can't address the hidden sheet anymore via SSIS: Excel Destination. Non-hidden sheets are no problem and are visible

How do I strip the date off of a datetime string in SQL SSIS?

↘锁芯ラ 提交于 2019-11-28 08:20:43
问题 I'm working on a data warehouse project and would like to know how to (preferably in a Derived Column component in a Data flow) strip the date piece off of a SQL datetime record. Once I have the datetime converted to just a time I am going to do a lookup on the time to find the related time record in a time dimension table. Can someone give me a simple function to accomplish this inside a derived column transform? Example: Transform a datetime such as "12/02/2008 11:32:21 AM" into simply "11

How to create BIRT report based on multiple data sets

核能气质少年 提交于 2019-11-27 23:19:03
I need help in creating a BIRT report; the situation is that I have multiple queries but the report all columns should be grouped by One column for example (Operator) Like : Operator | Expr1 | Expr2 | Expr3 | Expr4 | op1 | ## | ## | ## | ## | op2 | ## | ## | ## | ## | op3 | ## | ## | ## | ## | How can i accomplish that ? I 'm trying to make the Operator separate data set and put it in the first column and add a parameter in all quires i.e (where (operator = ?)) to get the Operator from the current row of operators column..But I can not attach the parameter value in each dataset to a the

Installation of SQL Server Business Intelligence Development Studio

梦想与她 提交于 2019-11-27 22:08:51
I have installed Microsoft SQL Server 2005. This consists of the configuration tools (SQL server configuration manager, SQL Error and usage Reporting, SQL Server Surface area configuration, Reporting Services configuration) and SQL Server Management Studio. However, I don't find SQL Server Business Intelligence Development Studio. How can it be installed? Is it available online as a freeware download? It sounds like you have installed SQL Server 2005 Express Edition, which does not include SSIS or the Business Intelligence Development Studio. BIDS is only provided with the (not free) Standard,

Installation of SQL Server Business Intelligence Development Studio

一世执手 提交于 2019-11-27 04:33:23
问题 I have installed Microsoft SQL Server 2005. This consists of the configuration tools (SQL server configuration manager, SQL Error and usage Reporting, SQL Server Surface area configuration, Reporting Services configuration) and SQL Server Management Studio. However, I don't find SQL Server Business Intelligence Development Studio. How can it be installed? Is it available online as a freeware download? 回答1: It sounds like you have installed SQL Server 2005 Express Edition, which does not

How to load an XML file into a database using an SSIS package?

我的未来我决定 提交于 2019-11-27 01:09:07
I am using SSIS in Visual Studio 2008. I have many XML files that I need to process and place into an existing DB structure (SQL Server 2005). This is my first attempt at using SSIS and am a little stuck. I have found the XML Data Flow task, assigned it a test xml file and it's associated XSD, and mapped one node to a Database Table. My question is, how do I associate many xsd nodes with many tables? Surely I don't have to set up an XML source for each table? Here is a possible option which demonstrates how to load multiple XML files having same definition into an SQL Server table. The example

How to create BIRT report based on multiple data sets

别说谁变了你拦得住时间么 提交于 2019-11-26 21:24:52
问题 I need help in creating a BIRT report; the situation is that I have multiple queries but the report all columns should be grouped by One column for example (Operator) Like : Operator | Expr1 | Expr2 | Expr3 | Expr4 | op1 | ## | ## | ## | ## | op2 | ## | ## | ## | ## | op3 | ## | ## | ## | ## | How can i accomplish that ? I 'm trying to make the Operator separate data set and put it in the first column and add a parameter in all quires i.e (where (operator = ?)) to get the Operator from the