<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ralf Eisenreich &#187; Business Intelligence</title>
	<atom:link href="http://sqlblog.de/blog/category/business-intelligence/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlblog.de/blog</link>
	<description>SQLBlog.DE &#124; ..things to remember</description>
	<lastBuildDate>Mon, 09 Apr 2012 07:11:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>SQL Server Tools</title>
		<link>http://sqlblog.de/blog/2008/07/sql-server-tools/</link>
		<comments>http://sqlblog.de/blog/2008/07/sql-server-tools/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 14:27:17 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://sqlblog.de/blog/?p=256</guid>
		<description><![CDATA[Hier eine kurze Empfehlung nützlicher SQL Server Tools: BIDS Helper (http://www.codeplex.com/bidshelper) A Visual Studio.Net add-ins with features that extend and...]]></description>
			<content:encoded><![CDATA[<p>Hier eine kurze Empfehlung nützlicher SQL Server Tools:</p>
<p><strong>BIDS Helper</strong><br />
(<a href="http://www.codeplex.com/bidshelper">http://www.codeplex.com/bidshelper</a>)<br />
A Visual Studio.Net add-ins with features that extend and enhance the functionality of the SQL Server 2005 BI Development Studio. (BIDS)<br />
New features for SSAS, SSIS.</p>
<p><strong>SQL Dependency Director</strong><br />
(<a href="http://www.codeplex.com/SQLDependency">http://www.codeplex.com/SQLDependency</a>)<br />
SQL Dependency Director helps you track Microsoft SQL Server Object Dependencies.<br />
SQL Dependency Director will help you see where a certain objects such as a Stored Procedure or Table is used in various Stored Procedures, Views, Functions, Jobs and SSRS Reports.<br />
It is also planned to add the ability to chart the objects and their dependencies in the graphical format.</p>
<p><strong>ReportServer Explorer</strong><br />
(<a href="http://www.codeplex.com/RSSExplorer">http://www.codeplex.com/RSSExplorer</a>)<br />
This windows application lets you manage a Microsoft Reporting Servicer server. It supports both SQL 2000,SQL 2005 and SQL 2008, even when running in SharePoint Integration mode. </p>
<p><strong>DTLoggedExec</strong><br />
(<a href="http://www.codeplex.com/DTLoggedExec">http://www.codeplex.com/DTLoggedExec</a>)<br />
DTLoggedExec is a tool that allows you to run a Sql Server Integration Services (SSIS) Package producing a full and detailed logging informations of execution status and package runtime data.</p>
<p><strong>SSIS Package Manager &#8211; PacMan</strong><br />
(<a href="http://www.codeplex.com/pacman">http://www.codeplex.com/pacman</a>)<br />
PacMan &#8211; The SQL Server Integration Services Package Manager is a utility designed to permit batch operations on arbitrary sets of SSIS packages. Users can select a single package, a Visual Studio project or solution or a file system folder tree and then validate or update all selected packages in one operation.</p>
<p><strong>Vulcan</strong><br />
(tba)<br />
Vulcan is a Business Intelligence Framework built on top of Sql Server Integration Services and Sql Server Analysis Services for quickly creating BI solutions. </p>
<p><strong>SQL Server 2005 Partition Management</strong><br />
(<a href="http://www.codeplex.com/sql2005partitionmgmt">http://www.codeplex.com/sql2005partitionmgmt</a>)<br />
Sliding Window technique is commonly used with partitioned tables to manage large data volumes. It allows efficient loading of new data and archival or removal of the old data. The challenges in a sliding window scenario is to create the staging table(s) correctly for efficient partition SWITCH operations.</p>
<p><strong>Microsoft SQL Server Metadata-Driven ETL Management Studio (MDDE)</strong><br />
(<a href="http://www.codeplex.com/SQLServerMDDEStudio">http://www.codeplex.com/SQLServerMDDEStudio</a>)<br />
Originally an internal MSIT solution that has been released as an open source project, the Microsoft SQL Server Metadata-Driven ETL Management Studio (a.k.a. MDDE) provides a tool for rapidly generating SQL Server Integration Services (SSIS) packages from a shared central metadata repository. MDDE is a software factory for SSIS packages that leverages the SSIS API to provide a templating engine that accelerates ETL development. </p>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2008/07/sql-server-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>INSERT INTO.. aus SELECT</title>
		<link>http://sqlblog.de/blog/2006/08/insert-into-aus-select/</link>
		<comments>http://sqlblog.de/blog/2006/08/insert-into-aus-select/#comments</comments>
		<pubDate>Thu, 10 Aug 2006 06:43:18 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://blog.ralf-eisenreich.de/blog/index.php/2006/08/10/insert-into-aus-select/</guid>
		<description><![CDATA[Mit folgender SQL-Abfrage kann man in ein &#8220;INSERT INTO&#8221; ein SELECT Statement einbauen: INSERT INTO table1 (column1, column2) VALUES(@parameter1, (SELECT...]]></description>
			<content:encoded><![CDATA[<p>Mit folgender SQL-Abfrage kann man in ein &#8220;INSERT INTO&#8221; ein SELECT Statement einbauen:</p>
<p><code>INSERT INTO <em>table1</em> (<em>column1</em>, <em>column2</em>)<br />
VALUES(<em>@parameter1</em>, (SELECT <em>columnX</em> FROM <em>table2</em><br />
WHERE <em>columnY</em> = '<em>@parameter2</em>'))</code></p>
<p>oder</p>
<p><code>INSERT INTO <em>table1</em> (<em>column1</em>, <em>column2</em>)<br />
SELECT <em>@parameter1</em>, columnX FROM <em>table2</em><br />
WHERE <em>columnY</em> = '<em>@parameter2</em>'</code></p>
<p>Quelle: [<a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=5969">SQLTeam</a>] und [<a href="http://www.ive-blaschke.de/">Ive</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2006/08/insert-into-aus-select/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Microsoft SQL Server 2005 (MSSQL)</title>
		<link>http://sqlblog.de/blog/2006/04/microsoft-sql-server-2005-mssql/</link>
		<comments>http://sqlblog.de/blog/2006/04/microsoft-sql-server-2005-mssql/#comments</comments>
		<pubDate>Sat, 08 Apr 2006 16:21:12 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[pentaho]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://ralf-eisenreich.de/blog/index.php/2006/04/08/microsoft-sql-server-2005-mssql/</guid>
		<description><![CDATA[Ein wichtiger Faktor im TagesgeschÃ¤ft ist die angemessene und nÃ¼tzliche Berichtserstattung. Oftmals gibt es gerade hier noch viel Optimierungspotential, einfach...]]></description>
			<content:encoded><![CDATA[<p>Ein wichtiger Faktor im TagesgeschÃ¤ft ist die <em>angemessene</em> und <em>nÃ¼tzliche</em> Berichtserstattung. Oftmals gibt es gerade hier noch viel Optimierungspotential, einfach durch den Einsatz neuer Softwaretechnologien oder -produkte.<br />
Hier kommt der <a title="SQL Server" href="http://www.microsoft.com/sql/">SQL Server 2005</a> ins Spiel. FÃ¼r mich ist er eine echte Benchmarkentwicklung aus dem <a title="Microsoft" href="http://microsoft.com">Microsoft</a>-Imperium.<br />
Gerade wenn vorher viel Reporting Ã¼ber Excel-Sheets oder gar Datenbanken verteilt Ã¼ber Excel-Sheets Einsatz gefunden haben, ist der SQL Server eine gute Alternative.</p>
<p>Hat man das Ziel, einen Bericht zu erstellen, dann beginnt man zunÃ¤chst mit der Anbindung der Datenquellen. MSSQL bietet dazu viele MÃ¶glichkeiten (beispielsweise OLEDB, ODBC, Flat Files, Excel Sheets, CSV Files). Greift man auf Daten aus heterogenen Datenquellen zurÃ¼ck, finden die sog. <em>Integration Services</em> ihren Einsatz. Ein groÃŸartiges Tool, da zahlreiche Elemente zur VefÃ¼gung stehen, um auch sehr verwÃ¼stete Files in den Data-Flow einzubinden.<br />
Hat man die Daten in der Datenbank bietet MSSQL die <em>Analysis Services</em> an, mit denen man (auch grafisch) Abfragen formulieren kann und sich dann automatisch den passenden Berichts erzeugen lassen kann. AuÃŸerdem werden Data Mining Methoden zur VerfÃ¼gung gestellt, die nach Mustern in den DatensÃ¤tzen suchen kÃ¶nnen.<br />
Als nÃ¤chstes legt man das Layout und die Art des Berichts fest: MSSQL bietet dazu entweder den Report Builder oder direkt Visual Studio an, wobei immer zahlreiche Tools und Kontrollelemente zur VerfÃ¼gung gestellt werden. Es gibt auÃŸerdem verschiedene Berichts-Arten (Listen, Charts, Matrizen und multidimensionale Berichte).<br />
Die Verteilung der Berichte wird durch die <em>Reporting Services</em> unterstÃ¼tzt. Dabei kÃ¶nnen Berichte auf einen sogenannten Reporting Server (unter IIS) geladen und von Benutzern abgerufen werden. Diese Berichte kÃ¶nnen dann dynamisch (ad hoc) vom Benutzer verÃ¤ndert werden und in vielen Formaten (html, pdf, xls) heruntergeladen werden.</p>
<p>Alles in allem ist der neue SQL Server eine gelungene und runde Sache, die einen sehr kompletten Funktionsumfang aufweist. Gerade fÃ¼r kleinere Firmen oder Niederlassungen kann der SQL Server eine Alternative zu komplexeren und kostenintensiveren Varianten (beispielsweise SAP, ORACLE) sein.</p>
<p>Ist selbst der SQL Server zu groÃŸ bemessen, sollte man entweder auf MS Access (ein sehr gutes Tool fÃ¼r kleinere Anforderungen) zurÃ¼ckgreifen,  bei seinen Excel Sheets bleiben oder mal im Open-Source Bereich Ausschau halten.</p>
<p>OpenSource: sehr gute Software sind fÃ¼r mich <a title="Pentaho" href="http://pentaho.org">Pentaho</a> (enterprise-class reporting, analysis, dashboard, data mining and workflow capabilities) und <a title="BIRT" href="http://eclipse.org/birt">BIRT</a> (Business Intelligence and Reporting Tools von Eclipse und Actuate).<br />
 <img src='http://sqlblog.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2006/04/microsoft-sql-server-2005-mssql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

