<?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 Inspirations &#187; spatial data</title>
	<atom:link href="http://blog.datainspirations.com/tag/spatial-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.datainspirations.com</link>
	<description>Inspiring Intelligence from Information</description>
	<lastBuildDate>Thu, 02 Feb 2012 01:12:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Multi-State Maps in Reporting Services</title>
		<link>http://blog.datainspirations.com/2011/03/24/multi-state-maps-in-reporting-services/</link>
		<comments>http://blog.datainspirations.com/2011/03/24/multi-state-maps-in-reporting-services/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 13:22:15 +0000</pubDate>
		<dc:creator>Stacia Misner</dc:creator>
				<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[spatial data]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://blog.datainspirations.com/?p=389</guid>
		<description><![CDATA[In SQL Server 2008 R2 Reporting Services, you can now create maps for reports using the built-in map gallery of the United States or individual states, ESRI shapefiles, or a spatial query. In a previous post, I explained how to obtain an ESRI shapefile for another country and convert it into spatial data so that [...]]]></description>
			<content:encoded><![CDATA[<p>In SQL Server 2008 R2 Reporting Services, you can now create maps for reports using the built-in map gallery of the United States or individual states, ESRI shapefiles, or a spatial query. In a <a title="SQL Server 2008 R2 Reporting Services – The World is But a Stage (T-SQL Tuesday #006)" href="http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/" target="_blank">previous post</a>, I explained how to obtain an ESRI shapefile for another country and convert it into spatial data so that you can have other maps available in the map gallery. In this post, I&#8217;ll show you how to create one map from multiple ESRI shapefiles. Whether you add it to the map gallery or not is up to you!</p>
<p><strong>Obtaining State Shapefiles</strong></p>
<p>To start, the process is similar to the one I described in my previous post on working with spatial data. This time my goal is to create a map of two states &#8211; Nevada and California. The best place to download free shapefiles for US states is the <a href="http://www.census.gov/geo/www/tiger/tgrshp2010/tgrshp2010.html" target="_blank">U.S. Census Bureau</a> where I used the link to download by state. I found the Nevada directory and then used the topmost directory 32 where there many files to download. I chose tl_2010_32_state00.zip. Similarly in the California directory, I used the topmost directory to find and download tl_2010_06_state00.zip.  Then I extracted each zip file to its own directory on my computer. They each contain a variety of files, including SHP and DBF files that I could use for a map using the ESRI shapefile data source option if I want to create a separate map for each state. But I want to combine these maps, so my mission is not yet complete.</p>
<p><strong>Converting Shapefiles to SQL Spatial Data</strong></p>
<p>My next step is to use a tool called <a href="http://www.sharpgis.net/page/SQL-Server-2008-Spatial-Tools.aspx" target="_blank">Shape2SQL</a> to extract the spatial data from the shapefile into a SQL Server table. Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">blog</a>|<a href="http://twitter.com/PinalDave" target="_blank">twitter</a>) has a <a title="SQL SERVER – World Shapefile Download and Upload to Database – Spatial Database" href="http://blog.sqlauthority.com/2010/03/30/sql-server-world-shapefile-download-and-upload-to-database-spatial-database/" target="_blank">tutorial </a>explaining how to do that. I had the same experience that I described in my last post &#8211; I had to clear the Create Spatial Index checkbox to get the table to load properly for the first state. When I loaded the second state, I had to clear the Replace Existing Table checkbox. Now I have both states in a table called State, as shown below, with a geom column having the SQL Geometry data type.</p>
<p><a href="http://blog.datainspirations.com/wp-content/uploads/2011/03/StateTable.jpg"><img class="alignnone size-full wp-image-390" title="StateTable" src="http://blog.datainspirations.com/wp-content/uploads/2011/03/StateTable.jpg" alt="" width="623" height="27" /></a></p>
<p><strong>Creating the Multi-State Map</strong></p>
<p>Now that I have my spatial data in a table, I&#8217;m ready to create the map. In Business Intelligence Development Studio, I added the map to my report which launched the Map Wizard and then I used the following steps:</p>
<ol>
<li>On the <strong>Choose a source of spatial data</strong> page of the wizard, select <strong>SQL Server spatial query</strong>, and click <strong>Next</strong>.</li>
<li>On the <strong>Choose a dataset with SQL Server spatial data</strong> page, select <strong>Add a new dataset with SQL Server spatial data</strong>.</li>
<li>On the <strong>Choose a connection to a SQL Server spatial data source</strong> page, select <strong>New</strong>.</li>
<li>In the <strong>Data Source Properties</strong> dialog box, on the <strong>General</strong> page, add a connecton string like this (changing your server name if necessary):<br />
<code>Data Source=(local);Initial Catalog=SpatialData</code></li>
<li>Click <strong>OK</strong> and then click <strong>Next</strong>.</li>
<li>On the <strong>Design a query</strong> page, add a query for the country shape, like this:<br />
<code>SELECT  NAME00, geom FROM State</code></li>
<li>Click <strong>Next</strong>. The map wizard reads the spatial data and renders it for you on the <strong>Choose spatial data and map view options</strong> page, as shown below.</li>
</ol>
<p><a href="http://blog.datainspirations.com/wp-content/uploads/2011/03/NevadaCalifornia.jpg"><img class="alignnone size-full wp-image-391" title="NevadaCalifornia" src="http://blog.datainspirations.com/wp-content/uploads/2011/03/NevadaCalifornia.jpg" alt="" width="594" height="338" /></a></p>
<p>Of course, you can use these technique with any shapefiles that you can locate. It&#8217;s not limited to the United States. For example, if you want to create a map of multiple European countries or a combination of states in India, you could use a similar process by downloading shapefiles from either the <a href="http://www.gadm.org/country" target="_blank">Global Administrative Areas spatial database</a> or the <a href="http://www.naturalearthdata.com/downloads/" target="_blank">Natural Earth database</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.datainspirations.com/2011/03/24/multi-state-maps-in-reporting-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do-It-Yourself Map Gallery in SQL Server 2008 R2 Reporting Services</title>
		<link>http://blog.datainspirations.com/2010/08/31/do-it-yourself-map-gallery-in-sql-server-2008-r2-reporting-services/</link>
		<comments>http://blog.datainspirations.com/2010/08/31/do-it-yourself-map-gallery-in-sql-server-2008-r2-reporting-services/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 01:54:47 +0000</pubDate>
		<dc:creator>Stacia Misner</dc:creator>
				<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[spatial data]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://blog.datainspirations.com/2010/08/31/do-it-yourself-map-gallery-in-sql-server-2008-r2-reporting-services/</guid>
		<description><![CDATA[A common question that I get when introducing the map feature in SQL Server 2008 R2 Reporting Services is why the map gallery is limited to maps of the United States and individual states in the US. The reason as I&#8217;ve heard it explained is that the political boundaries for other countries are sometimes in [...]]]></description>
			<content:encoded><![CDATA[<p style="MARGIN: 0in 0in 10pt">A common question that I get when introducing <a href="http://msdn.microsoft.com/en-us/library/ee210581.aspx" target="_blank" title="Working with Map Report Items">the map feature in SQL Server 2008 R2 Reporting Services</a> is why the map gallery is limited to maps of the United States and individual states in the US. The reason as I&#8217;ve heard it explained is that the political boundaries for other countries are sometimes in dispute and it was better to stay away from any legal issues that might arise from publishing a map as part of a software installation. Presumably that means that boundaries between states (and even towns) are not in dispute, but that&#8217;s not entirely true as a <a href="http://www.cbsnews.com/stories/2010/04/26/national/main6432406.shtml" target="_blank" title="Vermont Towns Settle Colonial Boundary Dispute">CBS New report</a> highlights.</p>
<p style="MARGIN: 0in 0in 10pt">Border integrity notwithstanding, the good news is that even though Microsoft doesn&#8217;t give you international maps in the map gallery, you can do it yourself. The files that the Reporting Services installation provides are simply reports created using TIGER/Line Shapefiles available free from the United States Census Bureau and stored in the Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\MapGallery folder. (Look in the Program Files (x36) folder if you&#8217;re developing on a 64-bit computer.) You can add your own reports to this same folder to update the map gallery.</p>
<p style="MARGIN: 0in 0in 10pt">You can&#8217;t add just any report to the Map Gallery for this technique to work. The report must contain a map with embedded spatial data. You can create such a report by creating a map using any of the three options for spatial data &#8211; map gallery, ESRI Shapefile, or a SQL Server spatial query. Then, on the &#8220;Choose spatial data and map view options&#8221; page of the Map Wizard, you must select the &#8220;Embed map data in the report&#8221; option as shown below.</p>
<p style="MARGIN: 0in 0in 10pt"><img src="http://blog.datainspirations.com/wp-content/uploads/2010/05/1_France_MapWizard.png" style="WIDTH: 476px; DISPLAY: inline; HEIGHT: 337px" height="30" width="28"/></p>
<p style="MARGIN: 0in 0in 10pt">Using the map that I created for <a href="http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/" target="_blank">my post earlier this year about the map control</a>, I eliminated the point layer and then saved the RDL file to the map gallery folder. Then whenever I want to create a new map for France, I can select it in the Map Wizard as shown below.</p>
<p style="MARGIN: 0in 0in 10pt"><img src="http://blog.datainspirations.com/wp-content/uploads/2010/08/MapWizard2.png" style="WIDTH: 476px; DISPLAY: inline; HEIGHT: 345px" height="345" width="476"/></p>
<p style="MARGIN: 0in 0in 10pt">If you plan to use this option for making additional maps available to report developers, be aware that you must do this on every computer using Business Intelligence Development Studio to create reports. If you have users creating reports with Report Builder 3.0, you also need to store the map RDL in the following location: C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder\RptBuilder_3\MapGallery where MSRS10_50.MSSQLSERVER is the name of the Reporting Services instance.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.datainspirations.com/2010/08/31/do-it-yourself-map-gallery-in-sql-server-2008-r2-reporting-services/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 R2 Reporting Services &#8211; The World is But a Stage (T-SQL Tuesday #006)</title>
		<link>http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/</link>
		<comments>http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/#comments</comments>
		<pubDate>Tue, 11 May 2010 19:29:56 +0000</pubDate>
		<dc:creator>Stacia Misner</dc:creator>
				<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[spatial data]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/</guid>
		<description><![CDATA[Host Michael Coles (blog&#124;twitter) has selected LOB data as the topic for this month&#8217;s T-SQL Tuesday, so I&#8217;ll take this opportunity to post an overview of reporting with spatial data types. As part of my work with SQL Server 2008 R2 Reporting Services, I&#8217;ve been exploring the use of spatial data types in the new [...]]]></description>
			<content:encoded><![CDATA[<p>Host Michael Coles (<a title="Michael Cole's blog" href="http://sqlblog.com/blogs/michael_coles/default.aspx" target="_blank">blog</a>|<a title="@Sergeant_SQL" href="http://twitter.com/Sergeant_SQL" target="_blank">twitter</a>) has selected <a title="MSDN: Working with Large Value Types" href="http://msdn.microsoft.com/en-us/library/a1904w6t(VS.80).aspx" target="_blank">LOB data</a> as the topic for this month&#8217;s <a title="What About Blob?" href="http://sqlblog.com/blogs/michael_coles/archive/2010/05/03/t-sql-tuesday-006-what-about-blob.aspx" target="_blank">T-SQL Tuesday</a>, so I&#8217;ll take this opportunity to post an overview of reporting with spatial data types. As part of my work with <a title="MSDN: What's New (Reporting Services)" href="http://msdn.microsoft.com/en-us/library/ms170438(v=SQL.105).aspx" target="_blank">SQL Server 2008 R2 Reporting Services</a>, I&#8217;ve been exploring the use of spatial data types in the new <a title="MSDN: Working with Map Report Items" href="http://msdn.microsoft.com/en-us/library/ee210581(v=SQL.105).aspx" target="_blank">map data region</a>. You can create a map using any of the following data sources:</p>
<ul>
<li>Map Gallery &#8211; a set of Shapefiles for the United States only that ships with Reporting Services</li>
<li>ESRI Shapefile &#8211; a .shp file conforming to the <a title="ESRI: Getting Started for Developers" href="http://www.esri.com/getting-started/developers/index.html" target="_blank">Environmental Systems Research Institute, Inc. (ESRI)</a> shapefile spatial data format</li>
<li><a title="MSDN: Types of Spatial Data" href="http://msdn.microsoft.com/en-us/library/bb964711(v=SQL.105).aspx" target="_blank">SQL Server spatial data</a> &#8211; a query that includes SQLGeography or SQLGeometry data types</li>
</ul>
<p>Rob Farley (<a title="Rob Farley's Blog" href="http://sqlblog.com/blogs/rob_farley/default.aspx" target="_blank">blog</a>|<a title="@rob_farley" href="http://twitter.com/rob_farley" target="_blank">twitter</a>) points out today in <a title="Spatial data from shapefiles (for T-SQL Tuesday #006)" href="http://sqlblog.com/blogs/rob_farley/archive/2010/05/11/spatial-data-from-shapefiles-for-t-sql-tuesday-006.aspx" target="_blank">his T-SQL Tuesday post</a> that using the SQL geography field is a preferable alternative to ESRI shapefiles for storing spatial data in SQL Server. So how do you get spatial data? If you don&#8217;t already have a GIS application in-house, you can find a variety of sources. Here are a few to get you started:</p>
<ul>
<li>US Census Bureau Website, <a href="http://www.census.gov/geo/www/tiger/">http://www.census.gov/geo/www/tiger/</a></li>
<li>Global Administrative Areas Spatial Database, <a href="http://biogeo.berkeley.edu/gadm/">http://biogeo.berkeley.edu/gadm/</a></li>
<li>Digital Chart of the World Data Server, <a href="http://www.maproom.psu.edu/dcw/">http://www.maproom.psu.edu/dcw/</a></li>
</ul>
<p>In a recent <a title="SQL SERVER – World Shapefile Download and Upload to Database – Spatial Database" href="http://blog.sqlauthority.com/2010/03/30/sql-server-world-shapefile-download-and-upload-to-database-spatial-database/" target="_blank">post</a> by Pinal Dave (<a title="Journey to SQL Authority with Pinal Dave" href="http://blog.sqlauthority.com/" target="_blank">blog</a>|<a title="@pinaldave" href="http://twitter.com/pinaldave">twitter</a>), you can find a link to free shapefiles for download and a tutorial for using <a title="Shape2SQL" href="http://www.sharpgis.net/page/SQL-Server-2008-Spatial-Tools.aspx">Shape2SQL</a>, a free tool to convert shapefiles into SQL Server data.</p>
<p>In my post today, I&#8217;ll show you how to use combine spatial data that describes boundaries with spatial data in AdventureWorks2008R2 that identifies stores locations to embed a map in a report.</p>
<p><strong>Preparing the spatial data</strong></p>
<p>First, I downloaded Shapefile data for the <a title="Spatial Data Download - France - Administrative Areas from DIVA-GIS" href="http://www.diva-gis.org/data/adm/FRA_adm.zip" target="_blank">administrative boundaries in France</a> and unzipped the data to a local folder. Then I used Shape2SQL to upload the data into a SQL Server database called Spatial. I&#8217;m not sure of the reason why, but I had to uncheck the option to create a spatial index to upload the data. Otherwise, the upload appeared to run successfully, but no table appeared in my database.</p>
<p>The zip file that I downloaded contained three files, but I didn&#8217;t know what was in them until I used Shape2SQL to upload the data into tables. Then I found that FRA_adm0 contains spatial data for the country of France, FRA_adm1 contains spatial data for each region, and FRA_adm2 contains spatial data for each department (a subdivision of region).</p>
<p>Next I prepared my SQL query containing sales data for fictional stores selling Adventure Works products in France. The Person.Address table in the AdventureWorks2008R2 database (which you can <a title="AdventureWorks 2008 R2 databases" href="http://msftdbprodsamples.codeplex.com/releases/view/24854" target="_blank">download from Codeplex</a>) contains a SpatialLocation column which I joined &#8211; along with several other tables &#8211; to the Sales.Customer and Sales.Store tables. I&#8217;ll be able to superimpose this data on a map to see where these stores are located. I included the SQL script for this query (as well as the spatial data for France) in the <a title="Spatial Data in SSRS project" href="http://datainspirations.com/uploads/SpatialDataInSSRS.zip" target="_blank">downloadable project</a> that I created for this post.</p>
<p><strong>Step 1: Using the Map Wizard to Create a Map of France</strong></p>
<p>You can build a map without using the wizard, but I find it&#8217;s rather useful in this case. Whether you use Business Intelligence Development Studio (BIDS) or Report Builder 3.0, the map wizard is the same. I used BIDS so that I could create a project that includes all the files related to this post. To get started, I added an empty report template to the project and named it France Stores. Then I opened the Toolbox window and dragged the Map item to the report body which starts the wizard. Here are the steps to perform to create a map of France:</p>
<ol>
<li>On the <strong>Choose a source of spatial data</strong> page of the wizard, select <strong>SQL Server spatial query</strong>, and click <strong>Next</strong>.</li>
<li>On the <strong>Choose a dataset with SQL Server spatial data</strong> page, select <strong>Add a new dataset with SQL Server spatial data</strong>.</li>
<li>On the <strong>Choose a connection to a SQL Server spatial data source</strong> page, select <strong>New</strong>.</li>
<li>In the <strong>Data Source Properties</strong> dialog box, on the <strong>General</strong> page, add a connecton string like this (changing your server name if necessary):<br />
<code>Data Source=(local);Initial Catalog=Spatial</code></li>
<li>Click <strong>OK</strong> and then click <strong>Next</strong>.</li>
<li>On the <strong>Design a query</strong> page, add a query for the country shape, like this:<br />
select * from fra_adm1</li>
<li>Click <strong>Next</strong>. The map wizard reads the spatial data and renders it for you on the <strong>Choose spatial data and map view options</strong> page, as shown below.<br />
<img style="width: 526px; display: inline; height: 431px;" src="http://blog.datainspirations.com/wp-content/uploads/2010/05/1_France_MapWizard.png" alt="Map Wizard with France regional boundaries" width="849" height="622" /><br />
You have the option to add a Bing Maps layer which shows surrounding countries. Depending on the type of Bing Maps layer that you choose to add (from Road, Aerial, or Hybrid) and the zoom percentage you select, you can view city names and roads and various boundaries. To keep from cluttering my map, I&#8217;m going to omit the Bing Maps layer in this example, but I do recommend that you experiment with this feature. It&#8217;s a nice integration feature.</li>
<li>Use the + or &#8211; button to rexize the map as needed. (I used the + button to increase the size of the map until its edges were just inside the boundaries of the visible map area (which is called the viewport). You can eliminate the color scale and distance scale boxes that appear in the map area later.</li>
<li>Select the <strong>Embed map data in this report</strong> for faster rendering. The spatial data won&#8217;t be changing, so there&#8217;s no need to leave it in the database. However, it does increase the size of the RDL. Click <strong>Next</strong>.</li>
<li>On the <strong>Choose map visualization</strong> page, select <strong>Basic Map</strong>. We&#8217;ll add data for visualization later. For now, we have just the outline of France to serve as the foundation layer for our map. Click <strong>Next</strong>, and then click <strong>Finish</strong>.</li>
<li>Now click the color scale box in the lower left corner of the map, and press the Delete key to remove it. Then repeat to remove the distance scale box in the lower right corner of the map.</li>
</ol>
<p><strong>Step 2: Add a Map Layer to an Existing Map</strong></p>
<p>The map data region allows you to add multiple layers. Each layer is associated with a different data set. Thus far, we have the spatial data that defines the regional boundaries in the first map layer. Now I&#8217;ll add in another layer for the store locations by following these steps:</p>
<ol>
<li>If the Map Layers windows is not visible, click the report body, and then click twice anywhere on the map data region to display it.</li>
<li>Click on the New Layer Wizard button in the Map layers window.<br />
<img style="width: 104px; height: 338px;" src="http://blog.datainspirations.com/wp-content/uploads/2010/05/2_NewLayerWizard.png" alt="2_NewLayerWizard.png" width="159" height="400" /><br />
And then we start over again with the process by choosing a spatial data source.</li>
<li>Select <strong>SQL Server spatial query</strong>, and click <strong>Next</strong>.</li>
<li>Select <strong>Add a new dataset with SQL Server spatial data</strong>, and click <strong>Next</strong>.</li>
<li>Click <strong>New</strong>, add a connection string to the AdventureWorks2008R2 database, and click <strong>Next</strong>.</li>
<li>Add a query with spatial data (like the one I included in the <a title="Spatial Data In SSRS project" href="http://datainspirations.com/uploads/SpatialDataInSSRS.zip" target="_blank">downloadable project</a>), and click <strong>Next</strong>.</li>
<li>The location data now appears as another layer on top of the regional map created earlier. Use the + button to resize the map again to fill as much of the viewport as possible without cutting off edges of the map. You might need to drag the map within the viewport to center it properly.</li>
<li>Select <strong>Embed map data in this report</strong>, and click <strong>Next</strong>.</li>
<li>On the <strong>Choose map visualization</strong> page, select <strong>Basic Marker Map</strong>, and click <strong>Next</strong>.</li>
<li>On the <strong>Choose color theme and data visualization</strong> page, in the <strong>Marker</strong> drop-down list, change the marker to diamond. There&#8217;s no particular reason for a diamond; I think it stands out a little better than a circle on this map. Clear the <strong>Single color map</strong> checkbox as another way to distinguish the markers from the map.<br />
You can of course create an analytical map instead, which would change the size and/or color of the markers according to criteria that you specify, such as sales volume of each store, but I&#8217;ll save that exploration for another post on another day.</li>
<li>Click <strong>Finish</strong> and then click <strong>Preview</strong> to see the rendered report. Et voilà&#8230;c&#8217;est fini.<br />
<img style="width: 501px; height: 313px;" src="http://blog.datainspirations.com/wp-content/uploads/2010/05/3_FinalMap.png" alt="3_FinalMap.png" width="584" height="369" /><br />
Yes, it&#8217;s a very simple map at this point, but there are many other things you can do to enhance the map. I&#8217;ll create a series of posts to explore the possibilities.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.datainspirations.com/2010/05/11/sql-server-2008-r2-reporting-services-the-word-is-but-a-stage-t-sql-tuesday-006/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

