<?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>Data Analysts, Data Trending, Reporting &#187; Sql Server 2008 Express</title>
	<atom:link href="http://datamart.org/category/sql-server-2008-express/feed/" rel="self" type="application/rss+xml" />
	<link>http://datamart.org</link>
	<description>Make Informed Decisions</description>
	<lastBuildDate>Thu, 17 May 2012 11:01:43 +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>Temp table a useful tool in many reports</title>
		<link>http://datamart.org/2009/12/28/temp-table-a-useful-tool-in-many-reports/</link>
		<comments>http://datamart.org/2009/12/28/temp-table-a-useful-tool-in-many-reports/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 15:56:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Reporting Services]]></category>
		<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[Sql Server 2005]]></category>
		<category><![CDATA[Sql Server 2008]]></category>
		<category><![CDATA[Sql Server 2008 Express]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://datamart.org/?p=580</guid>
		<description><![CDATA[Reporting the payments received against shipment’s C&#38;F value. In this example our client was facing an  issue where shipments are made  and C&#38;F value amount is taken as Accounts Receivable, payments are received in 2 to 3  installments.  Management wants to know how much is outstanding against each shipment C&#38;F Invoice. In database invoice is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://datamart.org/wp-content/uploads/2009/12/TmpTable1.jpg"><img src="http://datamart.org/wp-content/uploads/2009/12/TmpTable1-300x136.jpg" alt="" title="TmpTable" width="300" height="136" class="alignnone size-medium wp-image-656" /></a>Reporting the payments received against shipment’s C&amp;F value.</p>
<p>In this example our client was facing an  issue where shipments are made  and C&amp;F value amount is taken as Accounts Receivable, payments are received in 2 to 3  installments.  Management wants to know how much is outstanding against each shipment C&amp;F Invoice.</p>
<p>In database invoice is generated on C&amp;F basis where comprehensive information is recorded like invoice no,  Bill of Lading No, C&amp;F Amount, Shipment NO and so on.</p>
<p>When Payments are received it is recorded exportpayments table along with shipment NO.</p>
<p>In order to create a report to what is outstanding against respective invoice we created a SQL Query  using select into Transact-SQL  as follows;</p>
<p>select sn1, sum(amt) as cfvl</p>
<p> into #sd4</p>
<p>from dbo.exportpayments</p>
<p>group by sn1</p>
<p>Select Sn, CFvlu,sn1, cfvl, Cfvlu-cfvl as balance from</p>
<p> dbo.invocesexpressions inner join #sd4 on</p>
<p>dbo.invocesexpressions.sn = #sd4.sn1</p>
<p>drop table #sd4</p>
<p>In the above example we selected Shipment NO SN1 and sum amount Sum(amt) as cfvlu</p>
<p>Into temp table SD4 and then we selected Shipment no SN, CFVLU from invoices table and CFVL from Temp table #SD4 and join Invoices table and #sd4 based on Shipment NO</p>
<p>At the end we dropped thetemp table  #SD4.</p>
<p>This example utilized the temp table for generating outstanding payments report.</p>
<p>Shipmnt              CFVLU          Shpmnt  Amnt RCD       Blnc</p>
<table border="0" cellspacing="0" cellpadding="0" width="326" align="left">
<tbody>
<tr>
<td width="64" valign="bottom">
<p align="right">311</p>
</td>
<td width="70" valign="bottom">
<p align="right">672000</p>
</td>
<td width="64" valign="bottom">
<p align="right">311</p>
</td>
<td width="64" valign="bottom">
<p align="right">672000</p>
</td>
<td width="64" valign="bottom">
<p align="right">0</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">315</p>
</td>
<td width="70" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">315</p>
</td>
<td width="64" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">0</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">316</p>
</td>
<td width="70" valign="bottom">
<p align="right">62968.75</p>
</td>
<td width="64" valign="bottom">
<p align="right">316</p>
</td>
<td width="64" valign="bottom">
<p align="right">62969</p>
</td>
<td width="64" valign="bottom">
<p align="right">-0.25</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">317</p>
</td>
<td width="70" valign="bottom">
<p align="right">43775</p>
</td>
<td width="64" valign="bottom">
<p align="right">317</p>
</td>
<td width="64" valign="bottom">
<p align="right">42819</p>
</td>
<td width="64" valign="bottom">
<p align="right">956</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">318</p>
</td>
<td width="70" valign="bottom">
<p align="right">43775</p>
</td>
<td width="64" valign="bottom">
<p align="right">318</p>
</td>
<td width="64" valign="bottom">
<p align="right">43776</p>
</td>
<td width="64" valign="bottom">
<p align="right">-1</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">325</p>
</td>
<td width="70" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">325</p>
</td>
<td width="64" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">0</p>
</td>
</tr>
<tr>
<td width="64" valign="bottom">
<p align="right">326</p>
</td>
<td width="70" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">326</p>
</td>
<td width="64" valign="bottom">
<p align="right">48950</p>
</td>
<td width="64" valign="bottom">
<p align="right">0</p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://datamart.org/2009/12/28/temp-table-a-useful-tool-in-many-reports/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Experiance of installing SQL server 2008 Express and Evaluation edition</title>
		<link>http://datamart.org/2009/08/03/experiance-of-installing-sql-server-2008-express-and-evaluation-edition/</link>
		<comments>http://datamart.org/2009/08/03/experiance-of-installing-sql-server-2008-express-and-evaluation-edition/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 02:05:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Sql Reporting Services]]></category>
		<category><![CDATA[Sql Server 2008]]></category>
		<category><![CDATA[Sql Server 2008 Express]]></category>

		<guid isPermaLink="false">http://datamart.org/?p=530</guid>
		<description><![CDATA[I would like to share my experiance of installing SQL server 2008 Express and Evaluation edition. To day I installed the Sql Server 2008 express and Sql Server 2008 Evaluation edition on Windsows XP. The following steps are must for installing SQL Server 2008. 1- Windows XP SP2 and SP 32- Step 1: Download and [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to share my experiance of installing SQL server 2008 Express and Evaluation edition.<br />
To day I installed the Sql Server 2008 express and Sql Server 2008 Evaluation edition on Windsows XP.<br />
The following steps are must for installing SQL Server 2008.<br />
1- <em><strong>Windows XP SP2 and SP 3</strong></em>2- Step 1: Download and install Microsoft .Net Framework 3.5 SP1.<br />
Step 2 Download and install Windows Installer 4.5.<br />
.Step 3 Download and install Windows PowerShell 1.0.<br />
Then downloaded The sample database Adventure works. Business Intelligence Studio, Sql Server management Studio 2008 works ok. I also created a AnalysisServices project.</p>
<p>I would like to emphasie that Windows XP SP2 and SP 3 are must before installing the SQL Server 2008 and sample database. I learned this lesson in my previous attempt when I forgot the Windows XP SP2 and SP 3 and faced difficulties in installing Sql Server 2008 and Sample databases.</p>
]]></content:encoded>
			<wfw:commentRss>http://datamart.org/2009/08/03/experiance-of-installing-sql-server-2008-express-and-evaluation-edition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Report Model &#8211; Business Intelligence Development Studio 2008</title>
		<link>http://datamart.org/2009/06/15/report-model-business-intelligence-development-studio-2008/</link>
		<comments>http://datamart.org/2009/06/15/report-model-business-intelligence-development-studio-2008/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 02:10:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Sql Server 2008]]></category>
		<category><![CDATA[Sql Server 2008 Express]]></category>

		<guid isPermaLink="false">http://datamart.org/?p=356</guid>
		<description><![CDATA[Report Model is a project type in Business Intelligence 2008. It is metadata description of data objects and the relationship between the data in the underlying source. Report model expose the data objects and relationship from the data sources as entities and relationships logically grouped together. These entities and relationship are easy to understand than [...]]]></description>
			<content:encoded><![CDATA[<p>Report Model is a project type in Business Intelligence 2008. It is metadata description of data objects and the relationship between the data in the underlying source. Report model expose the data objects and relationship from the data sources as entities and relationships logically grouped together. These entities and relationship are easy to understand than the underlying data source objects business users. The report model is accessed through the report builder by Business users. Report Model is basically for business users so that they do not have to go through the technicalities of underlying data source.</p>
]]></content:encoded>
			<wfw:commentRss>http://datamart.org/2009/06/15/report-model-business-intelligence-development-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 Express Edition with advanced service &#8211; Our experiance</title>
		<link>http://datamart.org/2009/06/11/sql-server-2008-express-edition-with-advanced-service-our-experiance/</link>
		<comments>http://datamart.org/2009/06/11/sql-server-2008-express-edition-with-advanced-service-our-experiance/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 00:09:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Reporting Services]]></category>
		<category><![CDATA[Sql Server 2008]]></category>
		<category><![CDATA[Sql Server 2008 Express]]></category>

		<guid isPermaLink="false">http://datamart.org/?p=300</guid>
		<description><![CDATA[Today we downloaded the SQL Server 2008 Express edition with advanced services.   As mentioned on Microsoft website &#8211; Microsoft SQL Server 2008 Express with Advanced Services is a free, easy-to use version of SQL Server Express that includes more features and makes it easier than ever to start developing powerful data-driven applications for the [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Today we downloaded the SQL Server 2008 Express edition with advanced services. <span style="mso-spacerun: yes;"> </span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">As mentioned on Microsoft website &#8211; Microsoft SQL Server 2008 Express with Advanced Services is a free, easy-to use version of SQL Server Express that includes more features and makes it easier than ever to start developing powerful data-driven applications for the web or local desktop.</span></span></p>
<p>It was  installed  on Windows XP Media edition we were required to download the following as well;</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Step 1: Download and install Microsoft .Net Framework 3.5 SP1. </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Step 2 Download and install Windows Installer 4.5.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Step 3 Download and install Windows PowerShell 1.0.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;">SQL Server 2008 was installed successfully. In addition to SQL Server 2008 Management Studio, that installation includes the Reporting services, SQL Server 2008 Business intelligence development studio. </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">We downloaded the Adventure works database separately. Every thing went OK and</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">It was a nice for us that in (BIDS) Business Intelligence Development Studio 2008, we found </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;">The templates for ;</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Analysis Services Project</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Integration Services Connection Project</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Report Server Project Wizard</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Report Server Project</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Apparently, looks like there is a much more functionality in SQL Server 2008 than 2005, which is excellent for training purposes. We will write more in coming posts about our experiences and what is possible in Business Intelligence Development Studio 2008.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Times New Roman;">Stay tuned for our coming post on this topic.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://datamart.org/2009/06/11/sql-server-2008-express-edition-with-advanced-service-our-experiance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

