<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>sql-azure &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/sql-azure/</link>
	<description>Feed of posts on WordPress.com tagged "sql-azure"</description>
	<pubDate>Thu, 23 May 2013 01:16:53 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[SQLSailor is exploring(Part6) – Understanding firewall concepts for SQLDatabase on Windows Azure]]></title>
<link>http://sqlsailor.com/2012/08/03/firewallforsqldatabase/</link>
<pubDate>Fri, 03 Aug 2012 22:21:31 +0000</pubDate>
<dc:creator>Anup</dc:creator>
<guid>http://sqlsailor.com/2012/08/03/firewallforsqldatabase/</guid>
<description><![CDATA[Security is one of the most discussed topics for any cloud deployment plans and no organisation woul]]></description>
<content:encoded><![CDATA[<p>Security is one of the most discussed topics for any cloud deployment plans and no organisation would like to compromise on security when they make that &#8216;final&#8217; decision to move their database to the cloud.</p>
<p>In this blog post we will review how protected are our SQLDatabases within Windows Azure using firewalls.</p>
<p>I encountered couple of firewall related issues when I first started working with Windows Azure, and that motivated me to write this blog post.</p>
<p>One of the error message or a warning was</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/azureconnectionerror3.png"><img class="aligncenter size-full wp-image-1121" title="AzureConnectionError3" src="http://smartsqlserver.files.wordpress.com/2012/08/azureconnectionerror3.png?w=584&#038;h=444" alt="" width="584" height="444" /></a></p>
<p>The error message was pretty much saying that the IP address (Hidden in the picture) is not configured to manage the SQLDatabase within the server.</p>
<p>Before we see how we can configure the IP address to grant access, we will need to review what levels of firewall rules can be set on Windows Azure.</p>
<p>We can set firewall rules at <strong>Server Level</strong> and <strong>Database Level</strong></p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/firewalllevelsforazure.png"><img class="aligncenter size-full wp-image-1122" title="FirewallLevelsforAzure" src="http://smartsqlserver.files.wordpress.com/2012/08/firewalllevelsforazure.png?w=553&#038;h=207" alt="" width="553" height="207" /></a></p>
<p><strong>Server level</strong> rule simply means that a client within a particular IP or within a range can access all your databases within the same SQLDatabase server.</p>
<p>In case you would like to restrict a client with a specific IP or a range of IPs to access only specific databases within the SQLDatabase server, then the role of <strong>Database Level</strong> firewall  rules pitch in.</p>
<p>SQLDatabase firewall is considered very important within Windows Azure architecture. Connection attempts from the Internet and Windows Azure must first pass through the SQL Database firewall before they can reach your SQL Database server or database.</p>
<p>Let&#8217;s consider a simple example to learn this in a better way -</p>
<p>When <strong>computer A</strong> tries to connect <strong>SQLDatabase Server</strong> from web, then the originating IP address is first checked by the <strong>SQLDatabase firewall</strong> against the <strong>server level firewall</strong> and grants access if the IP is within server level range. It will check the <strong>database level firewall</strong> rule in case the IP is not found within server level firewall range and connection is granted for the specific database in case the IP falls in database level rule.</p>
<p><span style="text-decoration:underline;"><strong>Setting up server level rules</strong></span></p>
<p>The easiest method to create a Server level firewall is via the Windows Azure portal itself.</p>
<p>We will need to select the server and choose the <strong>Config </strong>option to set a range of IPs or a single IP.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/azureiprange.png"><img class="aligncenter size-full wp-image-1124" title="AzureIPRange" src="http://smartsqlserver.files.wordpress.com/2012/08/azureiprange.png?w=584&#038;h=446" alt="" width="584" height="446" /></a></p>
<p>We have the option to check what all IPs or IP ranges are configured at server level using view <strong>sys.firewall_rules</strong> after connecting to <strong>master</strong> database.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/azureserveriprange.png"><img class="aligncenter size-full wp-image-1125" title="AzureServerIPRange" src="http://smartsqlserver.files.wordpress.com/2012/08/azureserveriprange.png?w=584&#038;h=267" alt="" width="584" height="267" /></a></p>
<p><span style="text-decoration:underline;"><strong>Setting up database level rules</strong></span></p>
<p>The recommended approach to create a database level firewall is to use the stored procedure <strong>sp_set_database_firewall_rule</strong></p>
<p>We will need to connect to the exact database for which we need to create the rule and run the stored procedure with the parameters.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/azureipsetsp.png"><img class="aligncenter size-full wp-image-1127" title="AzureIPSetSP" src="http://smartsqlserver.files.wordpress.com/2012/08/azureipsetsp.png?w=584&#038;h=99" alt="" width="584" height="99" /></a></p>
<h3>[The IP mentioned above is just a test case one]</h3>
<p>The database level IPs or range can be checked using another view <strong>sys.database_firewall_rules</strong> and we will need to connect to the database and run this view to get the accurate details.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/08/azuredatabaseiprange.png"><img class="aligncenter size-full wp-image-1128" title="AzureDatabaseIPRange" src="http://smartsqlserver.files.wordpress.com/2012/08/azuredatabaseiprange.png?w=584&#038;h=262" alt="" width="584" height="262" /></a></p>
<p>A request with IP 10.0.0.5 will be able to access <span style="text-decoration:underline;">only</span> the database for which the rule was set and <span style="text-decoration:underline;">not all</span> the databases within the SQLDatabase server.</p>
<p><span style="text-decoration:underline;"><strong>Conclusion</strong></span></p>
<p>There is good amount of protection available on Windows Azure platform for protecting your mission critical SQLDatabases and in this post we had a quick overview of firewall level protection.</p>
<p>You can read more about the comprehensive security concepts for a SQLDatabase on Windows Azure here -</p>
<h1><a href="http://social.technet.microsoft.com/wiki/contents/articles/2951.windows-azure-sql-database-connection-security.aspx">Windows Azure SQL Database Connection Security</a></h1>
<p>Keep checking this space for more and there are lots of new and exciting stuff coming up !</p>
<p>This post is in continuation with my earlier posts</p>
<p><a href="http://sqlsailor.com/2012/06/08/firstsqldatabase/">SQLSailor is exploring(Part1) – Creating my first SQL Database on Windows Azure</a></p>
<p><a href="http://sqlsailor.com/2012/06/11/managesqldatabases/">SQLSailor is exploring(Part 2) – Managing SQL Databases on Windows Azure</a></p>
<p><a href="http://sqlsailor.com/2012/06/20/designingsqldatabases/">SQLSailor is exploring(Part3) – Designing SQL Databases on Windows Azure</a></p>
<p><a href="http://sqlsailor.com/2012/08/01/basictsqloperations/">SQLSailor is exploring(Part4) – Basic DML,DDL operations with SQL Databases on Windows Azure</a></p>
<p><a href="http://sqlsailor.com/2012/08/02/sqldatabasedashboard/">SQLSailor is exploring(Part5) – SQLDatabase Dashboard on Windows Azure</a></p>
<p>Thanks for reading.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Table row count and size in SQL Azure]]></title>
<link>http://blog.clicdata.com/2012/07/31/table-row-count-and-size-in-sql-azure/</link>
<pubDate>Tue, 31 Jul 2012 09:37:31 +0000</pubDate>
<dc:creator>Telmo Silva</dc:creator>
<guid>http://blog.clicdata.com/2012/07/31/table-row-count-and-size-in-sql-azure/</guid>
<description><![CDATA[Using SQL Server Management Studio with SQL Server 2008/2012 it is quite easy to see how many rows e]]></description>
<content:encoded><![CDATA[<p>Using SQL Server Management Studio with SQL Server 2008/2012 it is quite easy to see how many rows each table contains and what is the overall size each table simply by selecting the database—&#62; Tables and pushing F7.</p>
<p>Not so in SQL Azure, these columns are empty in SSMS 2008/R2 and non existent in SSMS 2012, so T-SQL to the rescue:</p>
<pre class="brush: plain; title: ; notranslate" title="">
SELECT  sys.objects.name, 
        SUM(row_count) AS ‘Row Count’, 
        SUM(reserved_page_count) * 8.0 / 1024 AS ‘Table Size (MB)’
FROM sys.dm_db_partition_stats, sys.objects
WHERE sys.dm_db_partition_stats.object_id = sys.objects.object_id
GROUP BY sys.objects.name
</pre>
<p>The above will produce a list containing the table name, the # of rows in that table and the size in MB.  The size total in MB is roughly close to the reported total using the SQL Azure management  portal tool.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hosting SQL Reporting Service on Azure Virtual Machine]]></title>
<link>http://aditibkup.wordpress.com/2012/07/25/hosting-sql-reporting-service-on-azure-virtual-machine/</link>
<pubDate>Wed, 25 Jul 2012 09:14:00 +0000</pubDate>
<dc:creator>adititechnoblog</dc:creator>
<guid>http://aditibkup.wordpress.com/2012/07/25/hosting-sql-reporting-service-on-azure-virtual-machine/</guid>
<description><![CDATA[Author: Naveen Rao Published: 25th July, 2012 Category:&nbsp;Cloud VM SSRS provides SQL Reporting se]]></description>
<content:encoded><![CDATA[<div dir="ltr" style="text-align:left;"><span style="font-family:'Segoe UI', 'Segoe UI', monospace;">Author: <a href="http://adititechnologiesblog.blogspot.in/2010/07/naveen-rao.html" target="_blank">Naveen Rao</a> Published: 25th July, 2012</span>
<div>
<div><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;">Category:&#160;<a href="http://adititechnologiesblog.blogspot.in/search/label/Cloud" target="_blank">Cloud</a></span></div>
<div><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppBodyText" style="margin:0 0 6pt;text-indent:0;">
<div style="color:#333333;line-height:17px;"><span style="font-family:Segoe UI, Segoe UI, monospace;">VM SSRS provides SQL Reporting service under IAAS model which will be consumed by client application or service. This SSRS is hosted on the Azure VM role. The steps to Create VM on an Azure platform and configure SSRS is discussed in detail in this post.</span></div>
<div style="color:#333333;line-height:17px;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<p><a name='more'></a>
<div style="color:#333333;line-height:17px;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<p><span style="color:#333333;font-family:Segoe UI, Segoe UI, monospace;text-indent:-.3in;"></span>
<div style="text-indent:0;"><span style="color:#333333;font-family:Segoe UI, Segoe UI, monospace;text-indent:-.3in;"><span style="text-indent:-.3in;">2<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="text-indent:-.3in;">PRE-REQUISITES</span></span></div>
<p><span style="color:#333333;font-family:Segoe UI, Segoe UI, monospace;text-indent:-.3in;"></span></div>
<div class="ppBulletList" style="color:#333333;line-height:17px;margin:0 0 6pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">A Windows Azure subscription with Virtual Machine provisioning.</span></div>
<div style="border:none;padding:0 0 1pt;">
<h1 style="border:none;font-variant:small-caps;font-weight:normal;letter-spacing:.25pt;margin:.5in 0 20pt .3in;padding:0;page-break-before:always;position:relative;text-indent:-.3in;"> <span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="line-height:31px;"><a href="http://www.blogger.com/blogger.g?blogID=7118507021004923564" name="_Toc330398226" style="color:purple;"></a><a href="http://www.blogger.com/blogger.g?blogID=7118507021004923564" name="_Toc316025990" style="color:purple;"></a></span><span style="color:#333333;font-variant:normal!important;line-height:31px;text-transform:uppercase;">2<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="color:#333333;font-variant:normal!important;line-height:31px;text-transform:uppercase;">IAAS BASED SSRS VIRTUAL MACHINE</span><span style="font-variant:normal!important;text-transform:uppercase;"><span style="color:#333333;"><span style="line-height:31px;">&#160;SETUP</span></span>
<div style="color:#333333;line-height:31px;text-indent:-28.799999237061px;"><span style="color:#888888;letter-spacing:.25pt;line-height:23px;text-indent:-.4in;"><br /></span></div>
<div style="color:#333333;line-height:31px;text-indent:-28.799999237061px;"><span style="color:#888888;letter-spacing:.25pt;line-height:23px;text-indent:-.4in;">2.1<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="color:#888888;letter-spacing:.25pt;line-height:23px;text-indent:-.4in;">CREATION OF VIRTUAL MACHINE</span></div>
<p></span></span></h1>
</div>
<div class="ppBodyText" style="color:#333333;line-height:17px;margin:0 0 6pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;">The following are the steps to create a new virtual machine for SSRS setup.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">1.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Open Internet Explorer and browse&#160;<a href="https://manage.windowsazure.com/" style="color:purple;">https://manage.windowsazure.com/</a>&#160;&#160;to enter the Windows Azure portal. Then, log in with your credentials.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">2.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the menu located at the bottom, select New &#124; Virtual Machine &#124; From Gallery to start creating a new virtual machine.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image0011.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image0011.png?w=400&#038;h=286" height="286" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 1.&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Creating a new Virtual Machine</span></span></td>
</tr>
</tbody>
</table>
<div><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">3.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the<b>&#160;VM OS Selection</b>&#160;page, click Platform Images on the left menu and select the&#160;<b>Microsoft SQL Server 2012 Evaluation Edition</b><span style="background-color:white;color:#323232;line-height:14px;">&#160;</span>image from the list. Click the arrow to continue.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image002.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image002.png?w=400&#038;h=286" height="286" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 2.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;&#160;Selecting a VM image</span></span></td>
</tr>
</tbody>
</table>
<div class="ppFigureIndent" style="color:#333333;line-height:14px;margin:0 0 .0001pt 47.5pt;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">4.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the VM Configuration page, enter the Virtual Machine Name (i.e. “testssrsvm&#8221;) and the administrator user&#8217;s Password. Select the Size as per the requirement and click the right arrow to continue.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image003.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image003.png?w=400&#038;h=286" height="286" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 3.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;&#160;Creating a VM &#8211; Configuration</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">5.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the&#160;<b>VM Mode</b>&#160;page, select&#160;<b>Standalone Virtual Machine</b>, enter the&#160;<b>DNS Name&#160;</b>(i.e. “testssrsvm”), leave the default value use Automatically Generated Storage Account. Select a Region (for e.g. “East US”). In case of multiple subscriptions select your subscription from the dropdown. Click the right arrow to continue.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image004.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image004.png?w=400&#038;h=287" height="287" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 4.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;Creating a VM &#8211; VM Mode</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">6.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the&#160;<b>VM Options</b>&#160;page, leave the default values and click the button to create a new VM.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="separator" style="clear:both;color:#333333;line-height:20px;text-align:center;"></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image005.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image005.png?w=400&#038;h=287" height="287" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;"><span style="font-weight:normal;line-height:normal;">&#160;</span>Figure 5.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Creating a VM &#8211; VM Options</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">7.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the&#160;<b>Virtual Machines</b>&#160;section, you will see the VM is created with a&#160;<i>provisioning</i>&#160;status. Wait until it changes to&#160;<i>Running</i>&#160;in order to continue with the following step.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image006.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image006.png?w=400&#038;h=168" height="168" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 6.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Creating a VM for SSRS Service</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><b>Note</b>:&#160;It will take from 8 to 10 minutes for the Virtual Machine to complete the provisioning process.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">8.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Once VM is created successfully and in&#160;<i>Running</i>&#160;status click on the VM Name (testssrsvm) to go to the&#160;Dashboard&#160;page and then click&#160;Endpoints.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">9.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Click&#160;<b>Add Endpoint</b>&#160;on the bottom pane. Make sure that&#160;<b>Add Endpoint</b>&#160;option is selected and then click the&#160;<b>right arrow</b>&#160;button to continue.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image007.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image007.png?w=400&#038;h=282" height="282" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><b><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 7.</span><span style="line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;Add a new End point</span></span></b></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><span style="background-color:white;">10.<span style="line-height:normal;">&#160;&#160;&#160;</span></span><span style="background-color:white;">In the&#160;</span><b style="background-color:white;">Specify endpoint details</b><span style="background-color:white;">&#160;page, set the&#160;</span><b style="background-color:white;">Name</b><span style="background-color:white;">&#160;to&#160;“</span><i style="background-color:white;">ssrsport”</i><span style="background-color:white;">, the&#160;</span><b style="background-color:white;">Protocol</b><span style="background-color:white;">&#160;to&#160;TCP&#160;and the&#160;</span><b style="background-color:white;">Public Port</b><span style="background-color:white;">&#160;and&#160;</span><b style="background-color:white;">Private Port</b><span style="background-color:white;">&#160;to&#160;</span><i style="background-color:white;">80</i><span style="background-color:white;">. Click the button to create the endpoint.</span></span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image008.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image008.png?w=400&#038;h=283" height="283" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 8.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;New Endpoint details</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="ppFigureCaption" style="color:#333333;font-style:italic;line-height:14px;margin:0 0 6pt .5in;text-align:justify;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><b><span style="font-style:normal;line-height:17px;">Note</span></b><span style="font-style:normal;line-height:17px;">: It will take some minutes to create a new endpoint.</span></span></div>
<div class="ppBodyText" style="color:#333333;line-height:17px;margin:0 0 6pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<h2 style="color:#888888;font-variant:small-caps;font-weight:normal;line-height:23px;margin:16pt 0 8pt .4in;position:relative;text-indent:-.4in;text-transform:uppercase;"> <span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-variant:normal!important;">2.2<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-variant:normal!important;">ATTACHING EMPTY DISK IMAGE</span><span style="font-variant:normal!important;"></span></span></h2>
<div class="ppBodyText" style="color:#333333;line-height:17px;margin:0 0 6pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;">The following are the steps to create empty data disk and attach them to an existing VM using the Windows AzureManagement Portal. It will be used to store the SQL Server Data and Logs files.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">1.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Virtual Machines</span></strong><span class="apple-converted-space">&#160;</span>section, select the SQL Server VM&#160;(i.e. “testssrsvm&#8221;) created&#160;in the previous section.</span></div>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">2.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the VM&#8217;s<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Dashboard</span></strong>, click<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Attach</span></strong><span class="apple-converted-space">&#160;</span>in the menu at the bottom of the page and select<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Attach Empty Disk</span></strong>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image009.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image009.png?w=320&#038;h=134" height="134" width="320" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 9.</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;Attach Empty Disk</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><span style="background-color:white;line-height:17px;">3.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="background-color:white;line-height:17px;">In the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Attach Empty Disk</span></strong><span class="apple-converted-space">&#160;</span>page, set the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Size</span></strong><span class="apple-converted-space">&#160;</span>to<span class="apple-converted-space">&#160;</span><em style="font-weight:bold;letter-spacing:.5pt;">50</em><span class="apple-converted-space">&#160;</span>GB and create the Disk.</span></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">4.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Wait until the process to attach the disk finishes.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">5.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>You will see 2 disks for the VM: one for the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">OS</span></strong><span class="apple-converted-space">&#160;</span>and other one for<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Data</span></strong>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><strong style="color:#c0504d;"><span style="color:windowtext;">Note:</span></strong><span class="apple-converted-space">&#160;</span>It might take a few minutes until the data disks appear in the VM&#8217;s dashboard within the Azure Portal.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image010.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image010.png?w=400&#038;h=183" height="183" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="text-align:left;text-indent:-124.80000305176px;"><span style="line-height:normal;">&#160;</span><span style="line-height:14px;"><b>Figure 10.</b></span>&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Attached Data Disk</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">6.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Finally, you need to format the disk in order to access them from the Virtual Machine.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">7.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>To do this, click<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Connect</span></strong><span class="apple-converted-space">&#160;</span>to connect to the VM using&#160;<strong style="color:#c0504d;"><span style="color:windowtext;">Remote Desktop connection</span></strong>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">8.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>It will ask you to download the remote desktop client. Click<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Open</span></strong><span class="apple-converted-space">&#160;</span>and log on using the Admin credentials you defined when creating the VM.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">9.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the Virtual Machine, open<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Server Manager</span></strong><span class="apple-converted-space">&#160;</span>from<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Start &#124; All Programs &#124; Administrative Tools</span></strong>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">10.<span style="line-height:normal;">&#160;&#160;&#160;</span>Expand<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Storage</span></strong><span class="apple-converted-space">&#160;</span>node and select<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Disk Management</span></strong><span class="apple-converted-space">&#160;</span>option.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image011.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image011.png?w=400&#038;h=276" height="276" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 11.<span style="font-weight:normal;line-height:normal;">&#160;&#160;</span></span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Disk Management</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">11.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the In the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Initialize Disk</span></strong><span class="apple-converted-space">&#160;</span>dialog window click OK.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image012.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image012.png?w=400&#038;h=276" height="276" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 12.<span style="font-weight:normal;line-height:normal;">&#160;&#160;</span></span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Disk Initialization</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt .75in;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">12.<span style="line-height:normal;">&#160;&#160;</span>Right-click the disk 2 unallocated space and select<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">New Simple Volume</span></strong>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image013.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image013.png?w=400&#038;h=275" height="275" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="text-align:left;text-indent:-124.80000305176px;"><span style="line-height:14px;"><b>Figure 13.</b></span>&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Disk Management</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">13.<span style="line-height:normal;">&#160;&#160;&#160;</span>Follow the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">New Simple Volume Wizard</span></strong>. When asked for the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Volume Label</span></strong><span class="apple-converted-space">&#160;</span>use<span class="apple-converted-space">&#160;</span><em style="font-weight:bold;letter-spacing:.5pt;">SQLData</em>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">14.<span style="line-height:normal;">&#160;&#160;&#160;</span>Wait until the process for the first disk is completed.</span></div>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">15.<span style="line-height:normal;">&#160;&#160;&#160;</span>The<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Disk Management</span></strong><span class="apple-converted-space">&#160;</span>list of available disks should now show the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">SQLData</span></strong><span class="apple-converted-space">&#160;</span>disk like in the following figure:</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image014.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image014.png?w=400&#038;h=276" height="276" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 14.<span style="font-weight:normal;line-height:normal;">&#160;&#160;</span></span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Disk Management</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><span style="line-height:15.75pt;">16.<span style="line-height:normal;">&#160;&#160;&#160;</span></span><span style="line-height:15.75pt;">Now open&#160;<b>Windows Firewall with Advance Security</b>&#160;from&#160;<b>Start &#124; All Programs &#124; Administrative Tools</b>.</span></span></div>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">17.<span style="line-height:normal;">&#160;&#160;&#160;</span>Select&#160;<b>Inbound Rules</b>&#160;node, right-click it and&#160;<b>select&#160;New Rule</b>&#160;to open the&#160;<b>New Inbound Rule Wizard</b>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image015.png?w=206" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image015.png?w=206" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 15.<span style="font-weight:normal;line-height:normal;">&#160;&#160;</span></span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Creating</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">&#160;an Inbound Rule</span>&#160;</span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="background-color:white;color:#333333;line-height:15.75pt;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">18.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the&#160;<b>Rule Type</b>&#160;page, select&#160;<b>Port</b>&#160;and click&#160;<b>Next</b>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image016.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image016.png?w=400&#038;h=318" height="318" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 16.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">New Inbound Rule Wizard</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">19.<span style="line-height:normal;">&#160;&#160;&#160;</span>In&#160;<b>Protocols and Ports</b>&#160;page, leave TCP selected, select&#160;<b>Specific local ports</b>, and set its value to&#160;<i>80</i>. Click<b>Next</b>&#160;to continue.</span></div>
<div class="separator" style="clear:both;color:#333333;line-height:20px;text-align:center;"><a href="http://aditibkup.files.wordpress.com/2012/07/image017.png" style="color:purple;margin-left:1em;margin-right:1em;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image017.png?w=320&#038;h=255" height="255" width="320" /></span></a></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="ppFigureNumber" style="color:#333333;font-weight:bold;line-height:14px;margin:0 0 10pt 1.3in;text-indent:-1.3in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Figure 17.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span style="line-height:17px;">New Inbound Rule Wizard</span></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">20.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the&#160;<b>Action</b>&#160;page, make sure&#160;<b>that Allow the connection</b>&#160;is selected and click&#160;<b>Next</b>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image018.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image018.png?w=400&#038;h=318" height="318" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 18.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:17px;text-align:left;text-indent:-124.80000305176px;">New Inbound Rule Wizard</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">21.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the&#160;<b>Profile</b>&#160;page, leave the default values and click&#160;<b>Next</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">22.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the&#160;<b>Name</b>&#160;page, set the Inbound Rule&#8217;s&#160;<b>Name</b>&#160;to&#160;<i>SSRSRule</i>&#160;and click&#160;<b>Finish.</b></span></div>
<div class="separator" style="clear:both;color:#333333;line-height:20px;text-align:center;"><a href="http://aditibkup.files.wordpress.com/2012/07/image019.png" style="color:purple;margin-left:1em;margin-right:1em;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image019.png?w=320&#038;h=70" height="70" width="320" /></span></a></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><b><span style="font-family:Segoe UI, Segoe UI, monospace;"><br /></span></b></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"></span></div>
<div class="ppFigureNumber" style="color:#333333;font-weight:bold;line-height:14px;margin:0 0 10pt 1.3in;text-indent:-1.3in;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Figure 19.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span style="line-height:17px;">New Inbound Rule Wizard</span></span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">23.<span style="line-height:normal;">&#160;&#160;&#160;</span>Close&#160;<b>Windows Firewall with Advanced Security</b>&#160;window.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><strong style="color:#c0504d;"><span style="color:windowtext;">Note:</span></strong><span class="apple-converted-space">&#160;</span>Do not close the<span class="apple-converted-space">&#160;</span><strong style="color:#c0504d;"><span style="color:windowtext;">Remote Desktop Connection</span></strong>. You will use it in the following task</span></div>
<h2 style="color:#888888;font-variant:small-caps;font-weight:normal;line-height:23px;margin:16pt 0 8pt .4in;position:relative;text-indent:-.4in;text-transform:uppercase;"> <span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-variant:normal!important;">2.3<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-variant:normal!important;">CONFIGURE SQL SERVER</span><span style="font-variant:normal!important;"></span></span></h2>
<div class="ppBodyText" style="color:#333333;line-height:17px;margin:0 0 6pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;">The following are the steps to configure SQL Server in the configured VM.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">1.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Login to the Virtual Machine via remote desktop and open&#160;<b>the SQL Server Management Studio</b>&#160;from&#160;<b>Start &#124; All Programs &#124; Microsoft SQL Server 2012</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">2.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Connect to the SQL Server 2012 default instance using your Windows Account.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">3.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Right click on you SQL Server instance and select&#160;<b>Properties</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">4.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Select&#160;Security from the left side pane and select&#160;<b>SQL Server and Windows Authentication mode</b>&#160;as&#160;<b>Server authentication</b>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image020.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image020.png?w=400&#038;h=357" height="357" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="text-align:left;text-indent:-124.80000305176px;">&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 20.</span><span style="text-align:left;text-indent:-124.80000305176px;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">SQL Authentication Mode</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">5.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Select&#160;<b>Database Settings</b>&#160;from the left side pane.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">6.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Locate the&#160;<b>Database default locations</b>&#160;section and update the default values to point to the disks attached in the previous task and click OK.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image021.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image021.png?w=400&#038;h=358" height="358" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 21.</span><span style="text-align:left;text-indent:-124.80000305176px;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Setting Database Default Locations</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">7.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Now restart the SQL server instance by right clicking on you SQL Server instance and the select&#160;<b>Restart</b>. Click OK on the confirmation popup.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">8.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Using Windows Explorer create the following folders:&#160;<b>F:\Data</b>,&#160;<b>F:\Logs</b>&#160;and&#160;<b>F:\Backups</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">9.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the SQL management studio expand Security&#160;folder within the SQL Server instance. Right-click&#160;<b>Logins</b>&#160;folder and select&#160;<b>New Login</b>.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image022.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image022.png?w=320&#038;h=224" height="224" width="320" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 22.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Creating a New Login</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">10.<span style="line-height:normal;">&#160;&#160;&#160;</span>In the&#160;<b>General</b>&#160;section, set the&#160;<b>Login name</b>&#160;to&#160;<i>ssrssqluser</i>.&#160;Select&#160;<b>SQL Server authentication</b>&#160;option and set the&#160;<b>Password</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">11.<span style="line-height:normal;">&#160;&#160;&#160;</span>Unselect&#160;<b>Enforce password policy</b>&#160;checkbox to avoid having to change the password the first time you log on.</span></div>
<div class="separator" style="clear:both;color:#333333;line-height:20px;text-align:center;"></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image023.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image023.png?w=400&#038;h=357" height="357" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:14px;text-align:left;text-indent:-124.80000305176px;">Figure 23.</span><span style="text-align:left;text-indent:-124.80000305176px;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span style="font-weight:bold;line-height:17px;text-align:left;text-indent:-124.80000305176px;">Creating a New Login</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">12.<span style="line-height:normal;">&#160;&#160;&#160;</span>Click&#160;<b>Server Roles</b>&#160;on the left pane. Select the checkbox against the&#160;<i>sysadmin</i>&#160;<b>Rerver Roles</b>&#160;and click OK.</span></div>
<h2 style="color:#888888;font-variant:small-caps;font-weight:normal;line-height:23px;margin:16pt 0 8pt .4in;position:relative;text-indent:-.4in;text-transform:uppercase;"> <span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-variant:normal!important;">2.4<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-variant:normal!important;">CONFIGURE SQL REPORTING SERVICE</span><span style="font-variant:normal!important;"></span></span></h2>
<div class="ppBodyText" style="color:#333333;line-height:17px;margin:0 0 6pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;">The following are the steps to configure SSRS service.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">1.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Open the Reporting Services Configuration Manager from&#160;<b>Start &#124; All Programs &#124; Microsoft SQL Server 2012 &#124; Configuration Tools</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">2.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Click&#160;<b>Connect</b>&#160;in the Reporting Services Configuration Manager Connection dialog box.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">3.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Now Click&#160;<b>Web service Url</b>&#160;from the left side pane and Click&#160;<b>Apply</b>&#160;button at bottom right.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image024.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image024.png?w=400&#038;h=281" height="281" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 24.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Configure Web Service URL</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">4.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Click&#160;<b>Database</b>&#160;from the left side pane and Click&#160;<b>Apply</b>&#160;button at bottom right.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image025.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image025.png?w=400&#038;h=287" height="287" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 25.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Configure SSRS database</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">5.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the Change Database dialog window, keep the default selection as “Create a new report server database” and click&#160;<b>Next</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">6.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Now select the Authentication Type as&#160;<b>SQL Server Account</b>&#160;and enter SQL user credential (testssrsvm) in the Username and Password field.</span></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image026.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image026.png?w=400&#038;h=286" height="286" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 26.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Configure SSRS database</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">7.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Click Test Connection button for database credential verification. On successful verification click the&#160;<b>Next</b>twice.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">8.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>In the credential page select&#160;<b>Authentication Type</b>&#160;as SQL user credential and enter the SQL user credential (testssrsvm) in the Username and Password field and click&#160;<b>Next</b>.</span></div>
<div class="separator" style="clear:both;color:#333333;line-height:20px;text-align:center;"></div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="color:#333333;line-height:20px;margin-left:auto;margin-right:auto;padding:4px;position:relative;text-align:center;">
<tbody>
<tr>
<td><a href="http://aditibkup.files.wordpress.com/2012/07/image027.png" style="color:purple;margin-left:auto;margin-right:auto;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/image027.png?w=400&#038;h=286" height="286" width="400" /></span></a></td>
</tr>
<tr>
<td class="tr-caption"><span style="font-family:Segoe UI, Segoe UI, monospace;font-size:small;"><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Figure 27.<span style="font-weight:normal;line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span></span><span style="font-weight:bold;line-height:18px;text-align:left;text-indent:-124.80000305176px;">Configure SSRS credential</span></span></td>
</tr>
</tbody>
</table>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">9.<span style="line-height:normal;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Verify the information in the summary and click&#160;<b>Next</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">10.<span style="line-height:normal;">&#160;&#160;&#160;</span>Once configuration wizard successfully configures the SSRS click&#160;<b>Finish</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">11.<span style="line-height:normal;">&#160;&#160;&#160;</span>Now click&#160;<b>Report Manager Url</b>&#160;from the left side pane and Click&#160;<b>Apply</b>&#160;button at bottom right.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;">
<div class="separator" style="clear:both;text-align:center;"><a href="image/png;base64,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" style="margin-left:1em;margin-right:1em;"></a></div>
<p><span style="font-family:Segoe UI, Segoe UI, monospace;">12.<span style="line-height:normal;">&#160;&#160;&#160;</span>Click&#160;<b>Exit</b>&#160;to finish the SSRS configuration.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">13.<span style="line-height:normal;">&#160;&#160;&#160;</span>Navigate to the folder “<i>C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer</i>” and open the configuration file&#160;<b>rsreportserver.config</b>&#160;in notepad.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">14.<span style="line-height:normal;">&#160;&#160;&#160;</span>Navigate to&#160;<b>Render</b>\<b>Extension</b>&#160;node for the extension names&#160;<b><i>XML</i></b>,&#160;<b><i>MHTML</i></b>&#160;and&#160;<b><i>IMAGE</i></b>&#160;and add new attribute&#160;<b>Visible=&#8221;false&#8221;</b>&#160;and save the file.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:-.25in;"><span style="font-family:Segoe UI, Segoe UI, monospace;">15.<span style="line-height:normal;">&#160;&#160;&#160;</span>Now close the&#160;<b>Remote Desktop Connection</b>.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 33.85pt;text-indent:0;"><span style="font-family:Segoe UI, Segoe UI, monospace;"><b>Verification</b>: Open internet Explorer from any client machine and navigate to the below URL and enter administrator credential created during the VM creating section.</span></div>
<div class="ppNumberList" style="color:#333333;line-height:17px;margin:0 0 10pt 51.85pt;text-indent:0;"><span style="color:purple;font-family:Segoe UI, Segoe UI, monospace;"><a href="http://testssrsvm.cloudapp.net/Reports/Pages/Folder.aspx" style="color:purple;">http://testssrsvm.cloudapp.net/Reports/Pages/Folder.aspx</a></span></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://info.aditi.com/what-is-the-cloud-an-in-depth-architects-perspective" target="_blank"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/cloud-computing-banner.png?w=300" /></a></div>
<div class="separator" style="clear:both;text-align:center;"></div>
<p></div>
</div>
<div id="fb-root" style="font-family:&#34;"></div>
<div style="font-family:&#34;">(function(d, s, id) {  var js, fjs = d.getElementsByTagName(s)[0];  if (d.getElementById(id)) {return;}  js = d.createElement(s); js.id = id;  js.src = &#8220;//connect.facebook.net/en_US/all.js#xfbml=1&#8243;;  fjs.parentNode.insertBefore(js, fjs);}(document, &#8216;script&#8217;, &#8216;facebook-jssdk&#8217;)); </div>
<div class="fb-comments" style="font-family:&#34;"></div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SQL Azure’s Journey from Inception in Year 2008 to June 2012!]]></title>
<link>http://parasdoshi.com/2012/07/24/sql-azures-journey-from-inception-in-year-2008-to-june-2012/</link>
<pubDate>Wed, 25 Jul 2012 01:30:33 +0000</pubDate>
<dc:creator>Paras Doshi</dc:creator>
<guid>http://parasdoshi.com/2012/07/24/sql-azures-journey-from-inception-in-year-2008-to-june-2012/</guid>
<description><![CDATA[SQL Azure has been evolving at an amazing pace. Here is a list that summarizes the evolution till Ju]]></description>
<content:encoded><![CDATA[SQL Azure has been evolving at an amazing pace. Here is a list that summarizes the evolution till Ju]]></content:encoded>
</item>
<item>
<title><![CDATA[Taking a IIS pre-generated web service and putting into Azure]]></title>
<link>http://blog.vbmagic.net/2012/07/19/taking-a-iis-pre-generated-web-service-and-putting-into-azure/</link>
<pubDate>Thu, 19 Jul 2012 14:11:20 +0000</pubDate>
<dc:creator>vbmagic</dc:creator>
<guid>http://blog.vbmagic.net/2012/07/19/taking-a-iis-pre-generated-web-service-and-putting-into-azure/</guid>
<description><![CDATA[I had, what I thought, was a simple job to do; but it took over two weeks of discovery to find out i]]></description>
<content:encoded><![CDATA[<p>I had, what I thought, was a simple job to do; but it took over two weeks of discovery to find out it actually was easy, but not quite in the way I was planning to do it.</p>
<p>I had two web services that I needed to host in Azure. For a temporary measure, I create a single Azure instance and this had a simple elevated start up task that installed required run-times and then downloaded 7zip file from Azure storage and then extracted this file.</p>
<p>I then connected to the instance via remote desktop, launched IIS Manager and created the web applications there. I also manually started a back end process.</p>
<p>The next step was to try and automate the deployment of this process using two instances. I moved the required database into SQL Azure which worked fine.</p>
<p>Next I created a new C# Azure project with an ASP.net web role and added the tasks to install the runtime and also looked up the commands required to add the website applications.</p>
<p>I hit a problem that I never really managed to solve where the installation of the C++ 10 runtime would just hang the start-up task. After spending around three days trying to diagnose what had happened I decided to start again from scratch.</p>
<p>I created a new VB Azure project with an ASP.net web role. I added the same task which ran a batch file. This time round the run-times installed with no problem. (I guess I&#8217;ll never know what went wrong with that one)</p>
<p>The next part of the script was to download and extract the 7zip archive file. (To download from storage I used the Azure Command Line tools from Rob  Blackwell/Two10 Degrees: <a href="https://github.com/RobBlackwell/AzureCommandLineTools">https://github.com/RobBlackwell/AzureCommandLineTools</a>)</p>
<p>I then extracted the archive using 7zip command line tools (<a href="http://www.7-zip.org/download.html">http://www.7-zip.org/download.html</a>)</p>
<p>It was when I came to run AppCmd.exe to add the extracted web applications, I learned about the order that Tasks etc. are run in Azure. (After a day or so of tracking things down)</p>
<p>The following article helped clarify this a lot. (I&#8217;ve borrowed the picture from the article below) <a href="http://msdn.microsoft.com/en-us/library/windowsazure/hh127476.aspx">http://msdn.microsoft.com/en-us/library/windowsazure/hh127476.aspx</a></p>
<div class="wp-caption alignnone" style="width: 392px"><a href="http://msdn.microsoft.com/en-us/library/windowsazure/hh127476.aspx"><img title="Azure Startup flow chart" src="http://i.msdn.microsoft.com/dynimg/IC500728.png" alt="Azure Startup flow chart" width="382" height="399" /></a><p class="wp-caption-text">Azure Startup flow chart</p></div>
<p>&#160;</p>
<p>So basically, any start-up tasks would not be able to run scripts that try to modify the website (Like adding the web applications). I abandoned that idea.</p>
<p>Now there is an Elevated Simple task which installs the required run-times and downloads and extracts the files required.</p>
<p>Then there is an Elevated Foreground task which starts the back end process.</p>
<p>All that was left to do was get the web applications (Which were extracted by the Simple Task onto the C: drive)</p>
<p>After a lot more web searching I decided to modify the service definition file for the website and added the virtual applications to this file. (As described in this article: <a href="http://msdn.microsoft.com/en-us/library/windowsazure/gg433110.aspx">http://msdn.microsoft.com/en-us/library/windowsazure/gg433110.aspx</a> )</p>
<p>I pointed the physical directory to where the application will be extracted to on the C drive of the instance. This caused a build error saying it couldn&#8217;t find the directories. I created these directories on the C drive of the machine I was publishing from which allowed the publish to complete.</p>
<p>Unfortunately the deployment got stuck in busy until I deleted it. (Waited a good few hours and tried a couple of times just in case of a &#8220;Glitch&#8221;).</p>
<p>As a last resort, I extracted the web applications and added the files to the web role&#8217;s project folder and then included them into the project. Next I modified the physical directory to a relative directory pointing to the included application directories.</p>
<p>Published and to my great surprise it actually work. Phew!</p>
<p>Took a few weeks but was a great learning process (If a bit frustrating at times <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
<p>Jas</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SharePoint and Windows Azure: Why are they better together?]]></title>
<link>http://altabel.wordpress.com/2012/07/18/sharepoint-and-windows-azure-why-are-they-better-together/</link>
<pubDate>Wed, 18 Jul 2012 14:42:53 +0000</pubDate>
<dc:creator>altabel</dc:creator>
<guid>http://altabel.wordpress.com/2012/07/18/sharepoint-and-windows-azure-why-are-they-better-together/</guid>
<description><![CDATA[It is doubtless that both SharePoint and Windows Azure can each work well on their own, but when put]]></description>
<content:encoded><![CDATA[It is doubtless that both SharePoint and Windows Azure can each work well on their own, but when put]]></content:encoded>
</item>
<item>
<title><![CDATA[HOW TO: Achieve CHANGE_TRACKING_CURRENT_VERSION on SQL Azure]]></title>
<link>http://aditibkup.wordpress.com/2012/07/03/how-to-achieve-change_tracking_current_version-on-sql-azure/</link>
<pubDate>Tue, 03 Jul 2012 16:02:00 +0000</pubDate>
<dc:creator>adititechnoblog</dc:creator>
<guid>http://aditibkup.wordpress.com/2012/07/03/how-to-achieve-change_tracking_current_version-on-sql-azure/</guid>
<description><![CDATA[Author: Prabhakar Krishnakumar Published: July 3rd, 2012 Category: Cloud Recently, I came across a c]]></description>
<content:encoded><![CDATA[<div dir="ltr" style="text-align:left;">
<div dir="ltr" style="font-family:&#34;text-align:left;">Author: <a href="http://adititechnologiesblog.blogspot.in/2010/07/prabhakar-krishnakumar.html" target="_blank">Prabhakar Krishnakumar</a> Published: July 3rd, 2012 <br />Category: <a href="http://adititechnologiesblog.blogspot.in/search/label/Cloud" target="_blank">Cloud</a></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://aditibkup.files.wordpress.com/2012/07/currentversionwindowsazure1.png?w=145" style="clear:left;float:left;margin-bottom:1em;margin-right:1em;"><img border="0" src="http://aditibkup.files.wordpress.com/2012/07/currentversionwindowsazure1.png?w=145" /></a></div>
<p>Recently, I came across a customer who wanted to migrate their database from an SQL Server to <a href="http://cumulux.aditi.com/SQL_Azure.aspx" target="_blank">SQL Azure</a>. The interesting part of this migration was when we identified that the customer is using <b>CHANGE_TRACKING_CURRENT_VERSION</b> feature of SQL server to track changes on few of the tables and triggers the respective client to upgrade.</p>
<p>As you all know, this feature is not supported on SQL Azure but the functionality seemed to create roadblocks during the migration. </p>
<p><b>We came up with two solutions: </b><br /><a name='more'></a><br />1. Add an additional column by name LastModifiedtime or timestamp in the table to identify all newly added/Altered records from a specified time<br />2. Write a custom tracking based on the trigger on the tables.</p>
<p>These solutions have their respective pros and cons. </p>
<p><b>Approach 1:</b> Add an additional column by name LastModifiedtime or timestamp in the table.</p>
<p><b>Changes Required:</b><br />1.&#160;&#160;&#160; Alter all the tables at once and add an additional non-nullable column “LastModifiedtime”.<br />2.&#160;&#160;&#160; Identify the default time for the existing record and update it in the “LastModifiedtime” column.<br />3.&#160;&#160;&#160; Change all the objects using this table and alter the logic to add value to the new column.</p>
<p><b>Cons:</b><br />1.&#160;&#160;&#160; The regression effort is going to tested on all the changed objects<br />2.&#160;&#160;&#160; Deleted records cannot be tracked</p>
<p><b>Approach 2:</b> Write a custom tracking based on the trigger on the tables.</p>
<p><b>Changes Required:</b><br />1.&#160;&#160;&#160; Alter all the tables at once and add additional non-nullable columns “CreateDatetime” and “LastModifiedDatetime”.<br />2.&#160;&#160;&#160; Alter all the tables at once and add Insert, Create, and Delete triggers on it.<br />3.&#160;&#160;&#160; In the Insert and Update trigger, fill out the values for “CreateDatetime” and “LastModifiedDatetime” columns of the table respectively.<br />4.&#160;&#160;&#160; There are no changes required on existing objects using this table</p>
<p><b>Pros:</b><br />1.&#160;&#160;&#160; The regression effort is less.</p>
<p><b>Cons:</b><br />1.&#160;&#160;&#160; Coding takes longer.<br />2.&#160;&#160;&#160; Due to the triggers, there could be slight degradation of performance.</p>
<p>Below you will find sample code to implement and test the second approach. We tested this Query on SQL server 2008 to validate that we get the required results.</p>
<pre class="brush:js">1.&#160;&#160;&#160; Create a test table<br /><br />CREATE TABLE TestTable&#160; (ColA INT PRIMARY KEY,&#160;&#160; ColB INT NOT NULL,&#160;&#160; ColC AS (ColA + ColB) * 2);<br /><br />2.&#160;&#160;&#160; Run the Below SQL file which will create trigger on this table:<br /><br /><span lang="EN-US" style="font-size:11pt;"><img height="54" src="%5CUsers%5CAliveNow%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_image002.gif" width="182" /></span><br /><br />3.&#160;&#160;&#160; Insert Few records in the table<br /><br />INSERT INTO TestTable (Cola,ColB)&#160;&#160;&#160;&#160; VALUES (1,87); <br /><br />INSERT INTO TestTable (Cola,ColB)&#160;&#160;&#160;&#160; VALUES (2,87); <br /><br />4.&#160;&#160;&#160; Get the Last run time stamp and from the TestTable and set to the variable @lastrun<br /><br />5.&#160;&#160;&#160; Get the current revision of the table using CHANGE_TRACKING_CURRENT_VERSION () and set it to @LastVersion variable.<br /><br />6.&#160;&#160;&#160; Insert, Edit few records in the table <br /><br />INSERT INTO TestTable (Cola,ColB)&#160;&#160;&#160;&#160; VALUES (3,87); <br /><br />INSERT INTO TestTable (Cola,ColB)&#160;&#160;&#160;&#160; VALUES (4,87); <br /><br />UPDATE TestTable Set ColB =56 where cola=2<br /><br />DELETE FROM TestTable&#160; where Cola= 3<br /><br />7.&#160;&#160;&#160; Run the below query and Validate if the result are same<br /><br />Below Query uses SQL Server inbuilt Change traking feature<br /><br />SELECT colA,* FROM CHANGETABLE(CHANGES TestTable, NULL) CT WHERE SYS_CHANGE_VERSION &#62; @LastVersion AND SYS_CHANGE_VERSION&#160; &#60;= @CurrentVersion<br /><br /><br /><br />Below Query is based on the custom Change tracking will work on all version of SQL server which has trigger supported<br /><br />select * from TestTable where CreationDate &#62; @lastrun<br /><br />select * from TestTable where LastEditDate &#62; @lastrun<br /><br />select * from TestTable_DeleteRecords where deletionDate &#62; @lastrun<br /><br />8.&#160;&#160;&#160; Below is the Sample Script which we used to test on SQL Server 2008<br /><br /></pre>
<p>
<div id="fb-root"></div>
<p>(function(d, s, id) {&#160; var js, fjs = d.getElementsByTagName(s)[0];&#160; if (d.getElementById(id)) {return;}&#160; js = d.createElement(s); js.id = id;&#160; js.src = &#8220;//connect.facebook.net/en_US/all.js#xfbml=1&#8243;;&#160; fjs.parentNode.insertBefore(js, fjs);}(document, &#8216;script&#8217;, &#8216;facebook-jssdk&#8217;)); 
<div class="fb-comments"></div>
</div>
<div style="font-family:&#34;"></div>
<div style="font-family:&#34;"></div>
<div style="font-family:&#34;"></div>
<div style="font-family:&#34;"></div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[WebsiteSpark Members Now Have Access To Windows Azure Benefits]]></title>
<link>http://theflyingmaverick.com/2012/06/28/websitespark-members-have-access-to-windows-azure/</link>
<pubDate>Thu, 28 Jun 2012 15:39:08 +0000</pubDate>
<dc:creator>Maverick</dc:creator>
<guid>http://theflyingmaverick.com/2012/06/28/websitespark-members-have-access-to-windows-azure/</guid>
<description><![CDATA[Microsoft’s WebsiteSpark program has been updated to now include Windows Azure benefits. If you’re a]]></description>
<content:encoded><![CDATA[<p>Microsoft’s <a href="http://www.microsoft.com/web/websitespark/">WebsiteSpark</a> program has been updated to now include <a href="http://www.windowsazure.com/">Windows Azure</a> benefits. If you’re a member of this program then you should have or will be receiving an email to update your account. </p>
<p>You will need to login to your WebsiteSpark account and then click to update your account to include the new Windows Azure benefits. </p>
<p><a href="http://calloncampbell.files.wordpress.com/2012/06/sshot-239.png"><img style="background-image:none;margin:5px;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="sshot-239" border="0" alt="sshot-239" src="http://calloncampbell.files.wordpress.com/2012/06/sshot-239_thumb.png?w=571&#038;h=419" width="571" height="419" /></a></p>
<p>Here is what is included…</p>
<p>WebsiteSpark members can now get up to $1400 in annual Windows Azure resources to design, develop and deploy their site in the cloud. You will also get to keep at no charge, an Expression Web license upon completion of the 3 year program.</p>
<p>Here is additional information about the WebsiteSpark Azure Offer Details:</p>
<p><a href="http://calloncampbell.files.wordpress.com/2012/06/sshot-235.png"><img style="background-image:none;margin:5px;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="sshot-235" border="0" alt="sshot-235" src="http://calloncampbell.files.wordpress.com/2012/06/sshot-235_thumb.png?w=556&#038;h=431" width="556" height="431" /></a></p>
<p>In order to take advantage of these additional program benefits, you will need to do this prior to 12/18/2012.</p>
<p><a href="http://www.windowsazure.com/en-us/offers/ms-azr-0010p"><img style="background-image:none;margin:5px;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="sshot-238" border="0" alt="sshot-238" src="http://calloncampbell.files.wordpress.com/2012/06/sshot-238.png?w=91&#038;h=39" width="91" height="39" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SQL Azure Reporting. ]]></title>
<link>http://bi-bigdata.com/2012/06/25/sql-azure-reporting/</link>
<pubDate>Mon, 25 Jun 2012 14:18:33 +0000</pubDate>
<dc:creator>Suhas Kudekar(MCC)</dc:creator>
<guid>http://bi-bigdata.com/2012/06/25/sql-azure-reporting/</guid>
<description><![CDATA[SQL Azure Reporting SQL Azure Reporting enables developers to enhance their applications by embeddin]]></description>
<content:encoded><![CDATA[<div><strong>SQL Azure Reporting </strong></div>
<div></div>
<div>SQL Azure Reporting enables developers to enhance their applications by embedding cloud based reports on information stored in a SQL Azure database.  Developers can author reports using familiar SQL Server Reporting Services tools and then use these reports in their applications which may be on-premises or in the cloud.</div>
<div><!--more--></div>
<div></div>
<div><a href="http://suhaskudekar.files.wordpress.com/2012/06/28_5_2011_sqlazur1.jpg"><img class="size-full wp-image" alt="Image" src="http://suhaskudekar.files.wordpress.com/2012/06/28_5_2011_sqlazur1.jpg?w=172" /></a></div>
<div></div>
<div>First we need to understand what is SQL Azure &#38; SQL Azure Database?</div>
<div></div>
<div><strong>Microsoft SQL Azure</strong></div>
<div>Microsoft SQL Azure delivers on Microsoft’s SQL Server Data platform vision of extending the Data platform capabilities to the cloud. SQL Azure provides data services, including a relational database, reporting; and data synchronization with mobile users, remote offices and business partners.</div>
<div></div>
<div>Sign Up for a free account to Access SQL Azure</div>
<div>Two ways you can try SQL Azure FREE of charge:</div>
<ul>
<li>Sign up for this limited-time promotion, and you’ll get TWO 1GB Web Edition databases for one month.</li>
<li>Get a 1GB Web Edition database for no charge for 3 months.</li>
</ul>
<div><strong>Microsoft SQL Azure Database</strong></div>
<div>Microsoft SQL Azure Database is part of Microsoft SQL Azure. It is a cloud-based relational database service built on SQL Server technologies. It provides a highly available, scalable, multi-tenant database service hosted by Microsoft in the cloud. SQL Azure Database enables easy provisioning and deployment of multiple databases.</div>
<div></div>
<div><a href="http://suhaskudekar.files.wordpress.com/2012/06/28_5_2011_sqlazur2.jpg"><img class="size-full wp-image" alt="Image" src="http://suhaskudekar.files.wordpress.com/2012/06/28_5_2011_sqlazur2.jpg?w=529" /></a></div>
<div></div>
<div><strong>Benefits of the Azure platform for Azure Reporting Services are:</strong></div>
<div></div>
<div><span style="text-decoration:underline;">Advantages-</span></div>
<div></div>
<ul>
<li>Highly available, the cloud services platform has built-in high availability.</li>
<li>Cloud services platform automatically scales up and down.</li>
<li>Reports and SQL Azure databases are on a safe place in the cloud.</li>
<li>Don’t have to set up servers and you don’t have to invest in managing servers.</li>
<li>Use the same tools you use today to develop your solutions. Just develop your reports in BIDS or Report Builder and deploy to Azure.</li>
</ul>
<div><span style="text-decoration:underline;">Disadvantages-</span></div>
<div></div>
<ul>
<li>No subscriptions or scheduled delivery available.</li>
<li>No developer extensibility in the first version, so no custom data sources, assemblies, report  items or authentication</li>
<li>SQL Azure databases are the only supported data sources in the first version, more data sources are expected to come.</li>
<li>No Windows Authentication, only SQL Azure username/password is supported in the first version, similar to SQL Azure database. When SQL Azure database gets Windows Authentication</li>
</ul>
<p><strong>Difference between SQL Server Reporting Services (SSRS) &#38; SQL AZURE Reporting</strong></p>
<div></div>
<div><span style="text-decoration:underline;">Developer Tool:</span></div>
<ul>
<li><strong>SSRS</strong>-Business Intelligence Design Studio (BIDS)Report Builder</li>
<li><strong>SQL Azure Reporting</strong>-Business Intelligence Design Studio (BIDS)</li>
</ul>
<p>Report Builder (Authoring only &#8211; deployment to SQL Azure Reporting through BIDS)</p>
<div></div>
<div><span style="text-decoration:underline;">Supported Data Sources:</span></div>
<ul>
<li><strong>SSRS</strong>-Diverse data sources</li>
<li><strong>SQL Azure Reporting</strong>-SQL Azure databases</li>
</ul>
<div></div>
<div><span style="text-decoration:underline;">Report:</span></div>
<ul>
<li><strong>SSRS</strong>-Embed reports into your apps</li>
<li><strong>SQL Azure Reporting</strong>-Embed hosted reports into your apps</li>
</ul>
<div></div>
<div><span style="text-decoration:underline;">Management &#38; Delivery:</span></div>
<ul>
<li><strong>SSRS</strong>-Report Manager or SharePoint Portal display reports rendering to multiple formats subscriptions scheduled delivery</li>
<li><strong>SQL Azure Reporting</strong>-SQL Azure Development Portal display reports rendering to multiple formats</li>
</ul>
<div></div>
<div><span style="text-decoration:underline;">Developer Extensibility:</span></div>
<ul>
<li><strong>SSRS</strong>-Extensible for custom data sources, assemblies, report items, authentication, etc.</li>
<li><strong>SQL Azure Reporting</strong>-Extensibility is not yet enabled</li>
</ul>
<div></div>
<div><span style="text-decoration:underline;">Security Model:</span></div>
<ul>
<li><strong>SSRS</strong>-Windows Authentication</li>
<li><strong>SQL Azure Reporting</strong>-SQL Azure Username/password</li>
</ul>
<div> Suhas R. Kudekar(MCC)</div>
		<div id="geo-post-286" class="geo geo-post" style="display: none">
			<span class="latitude">0.000000</span>
			<span class="longitude">0.000000</span>
		</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SQLSailor is exploring(Part3) – Designing SQL Databases on Windows Azure]]></title>
<link>http://sqlsailor.com/2012/06/20/designingsqldatabases/</link>
<pubDate>Wed, 20 Jun 2012 19:19:50 +0000</pubDate>
<dc:creator>Anup</dc:creator>
<guid>http://sqlsailor.com/2012/06/20/designingsqldatabases/</guid>
<description><![CDATA[This post is in continuation with my earlier posts SQLSailor is exploring(Part1) – Creating my first]]></description>
<content:encoded><![CDATA[<p>This post is in continuation with my earlier posts</p>
<p><a href="http://sqlsailor.com/2012/06/08/firstsqldatabase/">SQLSailor is exploring(Part1) – Creating my first SQL Database on Windows Azure</a></p>
<p><a href="http://sqlsailor.com/2012/06/11/managesqldatabases/">SQLSailor is exploring(Part 2) – Managing SQL Databases on Windows Azure</a></p>
<p>In this post we will check out how to design a SQL Database which is on Windows Azure.</p>
<p>Once the database is created we have the <strong>Manage</strong> button to start working on administration and design of the database (As mentioned in the earlier posts)</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic81.png"><img class="aligncenter size-full wp-image-997" title="AzurePic8" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic81.png?w=700&#038;h=577" alt="" width="700" height="577" /></a></p>
<p>Clicking on Manage button will route us to another page where in we will have to enter the credentials(Set during database creation)</p>
<p>Once the credentials are validated we will have a page where in we can choose the design option.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic14.png"><img class="aligncenter size-full wp-image-998" title="AzurePic14" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic14.png?w=700&#038;h=485" alt="" width="700" height="485" /></a></p>
<p>Let’s start building a <strong>table</strong> for the database MySQLDatabase which we have already created earlier.</p>
<p>We have the option called <strong>New table </strong>which will help us to start designing the tables and the columns.</p>
<p>We can specify the table name, start building the columns, set Primary key, set Default values, specify Is Identity, Is Required etc.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic15.png"><img class="aligncenter size-full wp-image-999" title="AzurePic15" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic15.png?w=700&#038;h=518" alt="" width="700" height="518" /></a></p>
<p>Once the required details have been filled in we have the option to <strong>Save</strong> the structure.</p>
<p>We have the option to create and manage the indexes too. The <strong>Indexes and Keys</strong> section will display the existing indexes and we have the option to create new ones too.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic16.png"><img class="aligncenter size-full wp-image-1000" title="AzurePic16" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic16.png?w=700&#038;h=259" alt="" width="700" height="259" /></a></p>
<p>Creating an index is also pretty easy and we have some advanced options like <strong>Auto Update Stats </strong>and <strong>Rebuild Index Online.</strong></p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic17.png"><img class="aligncenter size-full wp-image-1001" title="AzurePic17" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic17.png?w=700&#038;h=379" alt="" width="700" height="379" /></a></p>
<p>Once the database and table is ready, we will need some data to do some DML operation. We can insert some data via the <strong>Data</strong> section.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic18.png"><img class="aligncenter size-full wp-image-1002" title="AzurePic18" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic18.png?w=700&#038;h=287" alt="" width="700" height="287" /></a></p>
<p>The portal is pretty smart as it does validation the same time you are entering the data.</p>
<p><a href="http://smartsqlserver.files.wordpress.com/2012/06/azurepic19.png"><img class="aligncenter size-full wp-image-1003" title="AzurePic19" src="http://smartsqlserver.files.wordpress.com/2012/06/azurepic19.png?w=700&#038;h=314" alt="" width="700" height="314" /></a></p>
<p><span style="text-decoration:underline;"><strong>Conclusion</strong></span></p>
<p><strong><br />
</strong>Designing the tables,indexes,relations etc are really easy via the portal and we saw some real time validations too.</p>
<p>I will write about some DML operations during the coming days and there some exciting stuff coming up too.Please stay tuned.</p>
<p>Thanks for reading.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cloud computing infrastructure: 2012 and beyond]]></title>
<link>http://gigaom.com/2012/06/19/cloud-computing-infrastructure-2012-and-beyond/</link>
<pubDate>Wed, 20 Jun 2012 06:55:39 +0000</pubDate>
<dc:creator>Edit Staff</dc:creator>
<guid>http://gigaom.com/2012/06/19/cloud-computing-infrastructure-2012-and-beyond/</guid>
<description><![CDATA[Cloud computing continues to change and shape the technology industry, and these days discussions ar]]></description>
<content:encoded><![CDATA[<p>Cloud computing continues to change and shape the technology industry, and these days discussions are about more than simply reorganizing the IT department. New developments in chip and hardware architectures, finding greener data centers, regulatory concerns and simplifying data analytics are all discussions currently circling through the industry. For this report, GigaOM Pro has gathered six of its analysts to discuss these topics and others in current cloud market. Here we present several areas to consider when thinking about your business in the cloud. </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Qu’est que le WAAD ?]]></title>
<link>http://franceazure.wordpress.com/2012/06/19/quest-que-le-waad/</link>
<pubDate>Tue, 19 Jun 2012 04:44:51 +0000</pubDate>
<dc:creator>franceazure</dc:creator>
<guid>http://franceazure.wordpress.com/2012/06/19/quest-que-le-waad/</guid>
<description><![CDATA[Le WAAD est un système intégré dans le cloud computing ou informatique dans le nuage. Cet outil cons]]></description>
<content:encoded><![CDATA[<p>Le WAAD est un système intégré dans le cloud computing ou informatique dans le nuage. Cet outil constitue un service d’annuaire très performant. Microsoft azure a conçu ce système depuis 24 mois. Avec un tel annuaire, vous regroupez toutes les applications de Windows  dans la même application. Autrement dit, vos serveurs, vos bases de données et vos postes de travail peuvent être intégrés dans le WAAD.</p>
<p>Le WAAD permet à une meilleure utilisation d’Internet. Ce programme de Windows azure permet de faciliter la gestion des applications présentes sur votre ordinateur. Vous pouvez utiliser ce logiciel avec un <a href="http://windows-azure.developpez.com/" target="_blank"><strong>sql azure</strong></a>. Ce dernier est doté d’un ACS compatible avec PHP, Java, Ruby et d’autres applications.net. Dans le <a href="http://www.developpez.net/forums/f1366/dotnet/developpement-web/windows-azure/" target="_blank"><strong>forum azure</strong></a>, vous pouvez discuter de ce logiciel en compagnie d’autres développeurs.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Exploring Windows Azure]]></title>
<link>http://theflyingmaverick.com/2012/06/14/exploring-windows-azure/</link>
<pubDate>Thu, 14 Jun 2012 12:51:00 +0000</pubDate>
<dc:creator>Maverick</dc:creator>
<guid>http://theflyingmaverick.com/2012/06/14/exploring-windows-azure/</guid>
<description><![CDATA[If you don’t already know what Windows Azure is, then it’s Microsoft’s public cloud. Microsoft’s Win]]></description>
<content:encoded><![CDATA[<p><a href="http://calloncampbell.files.wordpress.com/2012/06/image7.png"><img style="background-image:none;margin:5px 5px 0 0;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://calloncampbell.files.wordpress.com/2012/06/image_thumb7.png?w=589&#038;h=32" width="589" height="32" /></a></p>
<p>If you don’t already know what Windows Azure is, then it’s Microsoft’s public cloud. </p>
<p>Microsoft’s Windows Azure is <strong>flexible</strong>, <strong>open</strong> and <strong>rock solid</strong>. Windows Azure allows you to quickly build, deploy and manage applications across a global network of Microsoft-managed datacenters. You can build applications using any OS, Language, Database or Tool and it has a 99.95% monthly SLA. </p>
<p>One of the new features I noticed is FREE Web Sites. It allows you to start for free and scale as you go. </p>
<p>When they say open, they have greatly expanded the development languages, framework and tools available, all of which are open source and available on <a href="https://www.windowsazure.com/en-us/develop/downloads/">github</a>. Cool!</p>
<p>There are also changes in what servers you can use. Apart from Windows, you can now also install Linux as well in virtual machines. </p>
<p>Azure is really transforming into a cloud that isn’t just limited to the Microsoft technology stack, not that there is nothing wrong with that. I love Microsoft technologies, but I think Microsoft make a smart decision to open up and allows Linux, mySql and other languages to be used.</p>
<p>Speaking of languages, there is now support for 5 major languages and then some.</p>
<h2>Languages</h2>
<p><a href="https://www.windowsazure.com/en-us/develop/overview/"><img style="background-image:none;margin:5px 5px 5px 0;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://calloncampbell.files.wordpress.com/2012/06/image8.png?w=240&#038;h=184" width="240" height="184" /></a></p>
<h2>Developer Features</h2>
<h3>Data Storage</h3>
<ul>
<li>Blob Service</li>
<li>Table Service</li>
<li>SQL Database</li>
<li>SQL Reporting</li>
<li>Hadoop</li>
</ul>
<h3>Messaging and Integration</h3>
<ul>
<li>Service Bus Queues</li>
<li>Service Bus Topics</li>
<li>Queue Service</li>
<li>Service Bus Relay</li>
</ul>
<h3>Additional Features</h3>
<ul>
<li>Caching (AppFabric)</li>
<li>Access Control</li>
<li>Diagnostics</li>
<li>Autoscaling</li>
<li>Media Services</li>
<li>SendGrid Email Service</li>
<li>Twilio</li>
</ul>
<h2>Free Trial</h2>
<p>With the free trial you can…</p>
<ul>
<li>Quickly deploy websites to a highly scalable cloud environment </li>
<li>Easily deploy and manage virtual machines running Windows Server and Linux </li>
<li>Create highly scalable applications in a rich PaaS environment </li>
<li>Create, manage and distribute media in the cloud </li>
</ul>
<p>The free trial contains:</p>
<table border="0" cellspacing="0" cellpadding="2" width="512">
<tbody>
<tr>
<td valign="top" width="143">compute</td>
<td valign="top" width="367">750 small compute hours per month</td>
</tr>
<tr>
<td valign="top" width="143">web sites </td>
<td valign="top" width="367">10 shared web sites</td>
</tr>
<tr>
<td valign="top" width="143">relational database </td>
<td valign="top" width="367">1 GB SQL database instance</td>
</tr>
<tr>
<td valign="top" width="143">storage </td>
<td valign="top" width="367">20 GB with 1,000,000 storage transactions</td>
</tr>
<tr>
<td valign="top" width="143">bandwidth</td>
<td valign="top" width="367">unlimited inbound and 20 GB outbound</td>
</tr>
</tbody>
</table>
<p>There is a lot that can be done with Windows Azure and the only way to know if it’s right for you and your organization is to give it a try and see what you think.</p>
<p>Get started now:</p>
<p><a href="https://www.windowsazure.com/en-us/pricing/free-trial/" target="_blank"><img style="background-image:none;margin:5px 5px 5px 0;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://calloncampbell.files.wordpress.com/2012/06/image9.png?w=337&#038;h=90" width="337" height="90" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Configuring Team Foundation Service (TFS) for Windows Azure Website or Cloud Services &ndash; #Meet Azure Edition]]></title>
<link>http://karthikeyananbarasan.wordpress.com/2012/06/14/configuring-team-foundation-service-tfs-for-windows-azure-website-or-cloud-services-meet-azure-edition/</link>
<pubDate>Thu, 14 Jun 2012 11:18:57 +0000</pubDate>
<dc:creator>Karthikeyan Anbarasan</dc:creator>
<guid>http://karthikeyananbarasan.wordpress.com/2012/06/14/configuring-team-foundation-service-tfs-for-windows-azure-website-or-cloud-services-meet-azure-edition/</guid>
<description><![CDATA[In this tutorial we are going to see how to configure the Team Foundation services over the web for]]></description>
<content:encoded><![CDATA[In this tutorial we are going to see how to configure the Team Foundation services over the web for]]></content:encoded>
</item>
<item>
<title><![CDATA[Azure Synchronisation]]></title>
<link>http://sladescross.wordpress.com/2012/06/14/azure-synchronisation/</link>
<pubDate>Thu, 14 Jun 2012 08:46:17 +0000</pubDate>
<dc:creator>sladescross</dc:creator>
<guid>http://sladescross.wordpress.com/2012/06/14/azure-synchronisation/</guid>
<description><![CDATA[http://blogs.msdn.com/b/steve_fox/archive/2012/06/13/sharepoint-and-windows-azure-data-sync-media-se]]></description>
<content:encoded><![CDATA[<p><a href="http://blogs.msdn.com/b/steve_fox/archive/2012/06/13/sharepoint-and-windows-azure-data-sync-media-services-amp-virtual-machines.aspx">http://blogs.msdn.com/b/steve_fox/archive/2012/06/13/sharepoint-and-windows-azure-data-sync-media-services-amp-virtual-machines.aspx</a></p>
<p>Windows Azure Data Synchronization to enable you to filter data from on-premises to the cloud;</p>
<p><strong>Synchronizing Data from On-premises to the Cloud</strong></p>
<p>This is an interesting area that provides us to leverage a data sync from data that we are storing in SQL Server on-premises (which I was using in an external list via BCS in SharePoint) to a SQL Database instance sitting in Windows Azure. It’s interesting because one of the key concerns today is data protection and sovereignty. For example, the screen-shot below provides a snapshot of my Data Sync Group that takes data from my on-premises SQL Server and syncs it with SQL Database. You can see on the right the “Edit Dataset” button that enables you to edit the columns you want to expose to your SQL Database.</p>
<p>&#160;</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Create a WordPress Website in minutes with Azure Portal &ndash; #Meet Azure Edition]]></title>
<link>http://karthikeyananbarasan.wordpress.com/2012/06/13/create-a-wordpress-website-in-minutes-with-azure-portal-meet-azure-edition/</link>
<pubDate>Wed, 13 Jun 2012 07:15:54 +0000</pubDate>
<dc:creator>Karthikeyan Anbarasan</dc:creator>
<guid>http://karthikeyananbarasan.wordpress.com/2012/06/13/create-a-wordpress-website-in-minutes-with-azure-portal-meet-azure-edition/</guid>
<description><![CDATA[&#160; In our earlier article today we have seen how easy its to create and deploy a website to Wind]]></description>
<content:encoded><![CDATA[&#160; In our earlier article today we have seen how easy its to create and deploy a website to Wind]]></content:encoded>
</item>
<item>
<title><![CDATA[SQL Reporting on Azure goes GA, PowerView not available in cloud]]></title>
<link>http://businessintelligist.com/2012/06/12/sql-reporting-on-azure-goes-ga/</link>
<pubDate>Wed, 13 Jun 2012 02:38:04 +0000</pubDate>
<dc:creator>Business Intelligist</dc:creator>
<guid>http://businessintelligist.com/2012/06/12/sql-reporting-on-azure-goes-ga/</guid>
<description><![CDATA[Microsoft has just announced that Windows Azure SQL Reporting is Generally Available.  A quick glanc]]></description>
<content:encoded><![CDATA[<p>Microsoft has <a href="http://blogs.msdn.com/b/microsoft_business_intelligence1/archive/2012/06/12/announcing-windows-azure-sql-reporting-general-availability.aspx" target="_blank">just announced </a>that Windows Azure SQL Reporting is Generally Available. </p>
<p><img class="alignnone" title="Windows Azure SQL Reporting" src="http://blogs.msdn.com/cfs-filesystemfile.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-43-09-metablogapi/4380.clip_5F00_image002_5F00_163F639B.jpg" alt="" width="490" height="274" /></p>
<p>A quick glance on the <a href="http://msdn.microsoft.com/en-us/library/windowsazure/gg430132" target="_blank">Guidelines and Limitations </a>reveals that the released functionality is mainly based on the SQL Server 2008 R2 stack, which means that PowerView is not available in the cloud yet.</p>
]]></content:encoded>
</item>

</channel>
</rss>
