<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Systems Engineering and RDBMS</title>
	<atom:link href="http://decipherinfosys.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://decipherinfosys.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 21:46:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='decipherinfosys.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a1338244b8e44d57d83b1634936133f5?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Systems Engineering and RDBMS</title>
		<link>http://decipherinfosys.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://decipherinfosys.wordpress.com/osd.xml" title="Systems Engineering and RDBMS" />
	<atom:link rel='hub' href='http://decipherinfosys.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Reading from a XML Data Type Column in SQL Server</title>
		<link>http://decipherinfosys.wordpress.com/2011/11/23/reading-from-a-xml-data-type-column-in-sql-server/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/11/23/reading-from-a-xml-data-type-column-in-sql-server/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 13:40:32 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2911</guid>
		<description><![CDATA[We have covered XML capabilities in SQL Server in several posts before &#8211; you can read those here.  Yesterday, while helping a client, the developer needed to read from an XML data type column and the way the code was written was to iterate over the records, fetch one record at a time, assign it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2911&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We have covered XML capabilities in SQL Server in several posts before &#8211; you can read those <a href="http://decipherinfosys.wordpress.com/?s=nodes">here</a>.  Yesterday, while helping a client, the developer needed to read from an XML data type column and the way the code was written was to iterate over the records, fetch one record at a time, assign it to a variable and then using the nodes() method, extract out the data and their hierarchies into a flat row/column structure as a data set.  This approach is not very scalable on large data sets and performance becomes an issue.</p>
<p>One can use the nodes() method and CROSS APPLY/OUTER APPLY to do this in a SET based fashion using a single SQL statement.  We had demonstrated this before in some of our Report Server queries as well.  Here is an example of how to do that:</p>
<p>We will first create a demo table:<br />
<code>IF EXISTS (SELECT 1 FROM SYS.objects WHERE TYPE = 'U' AND NAME = 'AP_DEMO')<br />
BEGIN<br />
DROP TABLE AP_DEMO<br />
END<br />
GO<br />
CREATE TABLE dbo.AP_DEMO<br />
(<br />
TRANSACTION_ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY,<br />
Xml_Data XML NOT NULL<br />
)<br />
GO</code></p>
<p>And now insert into this table 2 records &#8211; note that the XML that is being inserted has a three layer hierarchy &#8211; One Transaction can have 1-N Services and 1 Service can have 1-N Responses.  Also note that we are using the <a href="http://decipherinfosys.wordpress.com/2007/08/19/row-value-constructor-support-in-sql-server-2008/">row value constructor</a> feature of SQL Server 2008 to do these inserts.</p>
<p>INSERT INTO AP_DEMO (XML_DATA)<br />
VALUES<br />
(<br />
&#8216;&lt;?xml version=&#8221;1.0&#8243; ?&gt;<br />
&lt;Root&gt;<br />
&lt;Transaction&gt;<br />
&lt;Tattrib1&gt;Test1&lt;/Tattrib1&gt;<br />
&lt;Tattrib2&gt;100&lt;/Tattrib2&gt;<br />
&lt;Service&gt;<br />
&lt;Id&gt;1&lt;/Id&gt;<br />
&lt;Name&gt;Service1&lt;/Name&gt;<br />
&lt;Response&gt;<br />
&lt;Key&gt;KeyTest1&lt;/Key&gt;<br />
&lt;Value&gt;Value1&lt;/Value&gt;<br />
&lt;Point&gt;10&lt;/Point&gt;<br />
&lt;/Response&gt;<br />
&lt;/Service&gt;<br />
&lt;/Transaction&gt;<br />
&lt;Transaction&gt;<br />
&lt;Tattrib1&gt;Test2&lt;/Tattrib1&gt;<br />
&lt;Tattrib2&gt;53&lt;/Tattrib2&gt;<br />
&lt;Service&gt;<br />
&lt;Id&gt;100&lt;/Id&gt;<br />
&lt;Name&gt;Service2&lt;/Name&gt;<br />
&lt;Response&gt;<br />
&lt;Key&gt;KeyTest2&lt;/Key&gt;<br />
&lt;Value&gt;Value2&lt;/Value&gt;<br />
&lt;Point&gt;90&lt;/Point&gt;<br />
&lt;/Response&gt;<br />
&lt;/Service&gt;<br />
&lt;/Transaction&gt;<br />
&lt;/Root&gt;&#8217;)<br />
,<br />
(&#8216;&lt;?xml version=&#8221;1.0&#8243; ?&gt;<br />
&lt;Root&gt;<br />
&lt;Transaction&gt;<br />
&lt;Tattrib1&gt;Test3&lt;/Tattrib1&gt;<br />
&lt;Tattrib2&gt;1000&lt;/Tattrib2&gt;<br />
&lt;Service&gt;<br />
&lt;Id&gt;9&lt;/Id&gt;<br />
&lt;Name&gt;Service20&lt;/Name&gt;<br />
&lt;Response&gt;<br />
&lt;Key&gt;KeyTest3&lt;/Key&gt;<br />
&lt;Value&gt;Value3&lt;/Value&gt;<br />
&lt;Point&gt;99&lt;/Point&gt;<br />
&lt;/Response&gt;<br />
&lt;/Service&gt;<br />
&lt;/Transaction&gt;<br />
&lt;Transaction&gt;<br />
&lt;Tattrib1&gt;Test4&lt;/Tattrib1&gt;<br />
&lt;Tattrib2&gt;999&lt;/Tattrib2&gt;<br />
&lt;Service&gt;<br />
&lt;Id&gt;87&lt;/Id&gt;<br />
&lt;Name&gt;Service30&lt;/Name&gt;<br />
&lt;Response&gt;<br />
&lt;Key&gt;KeyTest4&lt;/Key&gt;<br />
&lt;Value&gt;Value4&lt;/Value&gt;<br />
&lt;Point&gt;97&lt;/Point&gt;<br />
&lt;/Response&gt;<br />
&lt;/Service&gt;<br />
&lt;/Transaction&gt;<br />
&lt;/Root&gt;&#8217;)</p>
<p>And now, we can extract this data using the nodes() method and applying <a href="http://decipherinfosys.wordpress.com/2007/10/08/apply-operator-in-sql-server-2005/">CROSS APPLY</a> at it to extract out each hierarchy:</p>
<p><code>SELECT<br />
svc.value('(Tattrib1/text())[1]', 'varchar(100)') as Txn_Attribute_1<br />
, svc.value('(Tattrib2/text())[1]', 'varchar(100)') as Txn_Attribute_2<br />
, rsp.value('(Id/text())[1]', 'int') as Service_Id<br />
, rsp.value('(Name/text())[1]', 'nvarchar(100)') as [Service_Name]<br />
, val.value('(Key/text())[1]', 'nvarchar(100)') as Response_Key<br />
, val.value('(Value/text())[1]', 'nvarchar(100)') as TSR_Value<br />
, val.value('(Point/text())[1]', 'int') as TSR_Point<br />
FROM<br />
AP_DEMO<br />
CROSS APPLY Xml_Data.nodes('//Transaction') AS Txn(svc)<br />
CROSS APPLY svc.nodes('Service') AS svc(rsp)<br />
CROSS APPLY rsp.nodes('Response') as rsp(val)<br />
GO<br />
</code></p>
<p>This will give the following output:<br />
<code><br />
<strong>Txn_Attribute_1 Txn_Attribute_2 Service_Id Service_Name Response_Key TSR_Value TSR_Point</strong><br />
Test1           100             1          Service1     KeyTest1     Value1    10<br />
Test2           53              100        Service2     KeyTest2     Value2    90<br />
Test3           1000            9          Service20    KeyTest3     Value3    99<br />
Test4           999             87         Service30    KeyTest4     Value4    97<br />
</code></p>
<p>As you can see from above, one can easily extract out the data from a XML data type column in a table by using a single SQL statement.  Of course, one should ensure that one has proper filter conditions in the WHERE clause on properly indexed columns and is also making use of <a href="http://decipherinfosys.wordpress.com/2007/11/07/xml-indexes-in-sql-server-2005/">XML indexes</a> in order to ensure a good execution plan for the SQL.</p>
<p>Hope this small code snippet helps in your work.  Wish all of our readers in the US a very Happy Thanksgiving.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2911/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2911&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/11/23/reading-from-a-xml-data-type-column-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>History of Programming Languages</title>
		<link>http://decipherinfosys.wordpress.com/2011/07/28/history-of-programming-languages/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/07/28/history-of-programming-languages/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 21:07:58 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2908</guid>
		<description><![CDATA[Nice infographic from Rackspace on the history of programming languages: http://www.rackspace.com/cloud/blog/2011/05/17/infographic-evolution-of-computer-languages/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2908&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice infographic from Rackspace on the history of programming languages:</p>
<p><a title="Rackspace: History of Programming Languages" href="http://www.rackspace.com/cloud/blog/2011/05/17/infographic-evolution-of-computer-languages/" target="_blank">http://www.rackspace.com/cloud/blog/2011/05/17/infographic-evolution-of-computer-languages/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2908/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2908&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/07/28/history-of-programming-languages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Cannot Access Newly Created Instance</title>
		<link>http://decipherinfosys.wordpress.com/2011/07/06/cannot-access-newly-created-instance/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/07/06/cannot-access-newly-created-instance/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 16:06:13 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2904</guid>
		<description><![CDATA[Got a question from a reader yesterday: &#8220;I just joined a new company and was given a VM on which my domain account was part of the Administrators group but the SQL Server 2008 R2 install was done by the IT team and even by using my Windows account, I cannot login to the instance.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2904&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Got a question from a reader yesterday:</p>
<p><span style="color:#808000;"><em>&#8220;I just joined a new company and was given a VM on which my domain account was part of the Administrators group but the SQL Server 2008 R2 install was done by the IT team and even by using my Windows account, I cannot login to the instance.  I tried using the &#8220;sa&#8221; account thinking that they might have left the password as blank but keep getting errors.  How can I resolve it?  My understanding was/is that if my Windows account is part of the Administrators group on the local machine/VM, I should be able to log in since the BUILTIN\Administrators group is always by default assigned sysadmin rights on a newly created instance.  Is that no longer the case in SQL Server 2008 R2?&#8221;</em></span></p>
<p>Yes, as part of the new security features in SQL Server 2008, by default, the local Windows group &#8220;BUILTIN\Administrators&#8221; is no longer made part of the sysadmin fixed server role.  You have to explicitly add it if you want that to be the case. It is very well documented in BOL and MSDN and we would recommend that you go through this article to familiarize yourself with the security changes in SQL Server 2008 R2:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc280562.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/cc280562.aspx</a></p>
<p>While helping the user above to resolve the issue, it turned out that IT Admin had used a domain group that only IT team members were a part of and a) Installed in Windows Authentication mode, and b) Only made that group a part of the sysadmin role.  The user above tried to get in by making changes to the registry to change the authentication to mixed mode by changing the value for this registry setting to 2:</p>
<p>HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSSQL.1\MSSQLServer\LoginMode</p>
<p>Or in the case of a named instance:</p>
<p>HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSSQL.<em>n</em>\MSSQLServer\LoginMode (n: Instance nbr of the named instance)</p>
<p>Post re-starting the service, it did change the authentication mode to mixed mode, however due to un-successful attempts and the password policy in place, the &#8220;sa&#8221; account was locked out/disabled.  One can easily enable it but first one needs to be able to get in with sysadmin privs. and then make the changes.  Best option was to get one of the IT team members to login and post it, add additional logins, enable the &#8220;sa&#8221; account, set it&#8217;s password and then make whatever changes needed for the logins/their access levels etc.  The user did that and was on his way to managing the newly created instance.  One can enable a disabled/locked SQL Server account through the GUI or by using the &#8220;ALTER LOGIN&#8221; statement as we had shown in a previous post <a href="http://decipherinfosys.wordpress.com/2008/12/26/disabling-a-login-account/" target="_blank">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2904/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2904&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/07/06/cannot-access-newly-created-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Apps vs Office 365</title>
		<link>http://decipherinfosys.wordpress.com/2011/07/06/google-apps-vs-office-365/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/07/06/google-apps-vs-office-365/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 15:18:54 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2900</guid>
		<description><![CDATA[A nice feature comparison between Google Apps and Office 365: http://lifehacker.com/5818368/google-apps-v-office-365-feature-showdown-which-should-you-use<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2900&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A nice feature comparison between Google Apps and Office 365:</p>
<p><a href="http://lifehacker.com/5818368/google-apps-v-office-365-feature-showdown-which-should-you-use" target="_blank">http://lifehacker.com/5818368/google-apps-v-office-365-feature-showdown-which-should-you-use</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2900/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2900&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/07/06/google-apps-vs-office-365/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Mercury QC Explorer Add-In</title>
		<link>http://decipherinfosys.wordpress.com/2011/06/09/mercury-qc-explorer-add-in/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/06/09/mercury-qc-explorer-add-in/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 11:45:12 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2896</guid>
		<description><![CDATA[Ran into this issue yesterday at a client site so thought about posting it in case any of you run into this.  Accessing Mercury&#8217;s QC over IE was working fine till the version of IE was upgraded to IE8.  Post that, accessing QC directly using the IE browser was not working due to security settings [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2896&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ran into this issue yesterday at a client site so thought about posting it in case any of you run into this.  Accessing Mercury&#8217;s QC over IE was working fine till the version of IE was upgraded to IE8.  Post that, accessing QC directly using the IE browser was not working due to security settings and restrictions to use the ActiveX components.  HP has a QC Explorer Add-in which allows you to use QC without a web browser.  You can download it from here:</p>
<p><a title="Mercury QC Explorer Add-In" href="http://updates.merc-int.com/qualitycenter/qc90/others/qcexplorer/index.html" target="_blank">http://updates.merc-int.com/qualitycenter/qc90/others/qcexplorer/index.html</a></p>
<p>Post the install, just bring it up, type in the address (for QCBin or SiteAdmin &#8211; sabin) in the space above, press Go and you are all set.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2896/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2896&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/06/09/mercury-qc-explorer-add-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>List of NoSQL Databases</title>
		<link>http://decipherinfosys.wordpress.com/2011/04/26/list-of-nosql-databases/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/04/26/list-of-nosql-databases/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 19:03:57 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2893</guid>
		<description><![CDATA[Here is a good list of the NoSQL databases: http://nosql-database.org/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2893&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a good list of the <a href="http://decipherinfosys.wordpress.com/?s=NoSQL">NoSQL</a> databases:</p>
<p><a href="http://nosql-database.org/">http://nosql-database.org/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2893/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2893/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2893/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2893&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/04/26/list-of-nosql-databases/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Deep Web</title>
		<link>http://decipherinfosys.wordpress.com/2011/03/16/deep-web/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/03/16/deep-web/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 02:09:26 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2887</guid>
		<description><![CDATA[Yesterday, while having a discussion with a friend on search engines, the topic of Deep Web was raised. Deep web (or Deepnet) is essentially the part of the internet that is not indexed by the search engines for example the dynamically generated site content. It is an interesting topic &#8211; here is the wikipedia link [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2887&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday, while having a discussion with a friend on search engines, the topic of Deep Web was raised.  Deep web (or Deepnet) is essentially the part of the internet that is not indexed by the search engines for example the dynamically generated site content.  It is an interesting topic &#8211; here is the wikipedia link in case you are interested in learning further:</p>
<p><a href="http://en.wikipedia.org/wiki/Deep_Web">http://en.wikipedia.org/wiki/Deep_Web</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2887/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2887/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2887/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2887&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/03/16/deep-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting PL/SQL code into web services</title>
		<link>http://decipherinfosys.wordpress.com/2011/02/25/converting-plsql-code-into-web-services/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/02/25/converting-plsql-code-into-web-services/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 14:37:13 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2878</guid>
		<description><![CDATA[Native XML DB Web Services in Oracle 11g makes the conversion of PL/SQL code into web services much easier.  Here are some links on this topic to get you started: Oracle documentation &#8211; here. Oracle-Base post &#8211; here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2878&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Native XML DB Web Services in Oracle 11g makes the conversion of PL/SQL code into web services much easier.  Here are some links on this topic to get you started:</p>
<ul>
<li>Oracle documentation &#8211; <a href="http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369/xdb_web_services.htm">here</a>.</li>
</ul>
<ul>
<li>Oracle-Base post &#8211; <a href="http://www.oracle-base.com/articles/11g/NativeOracleXmlDbWebServices_11gR1.php">here</a>.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2878/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2878&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/02/25/converting-plsql-code-into-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
		<item>
		<title>Back to the Basics: Restoring an Analysis Services Database</title>
		<link>http://decipherinfosys.wordpress.com/2011/02/24/back-to-the-basics-restoring-an-analysis-services-database/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/02/24/back-to-the-basics-restoring-an-analysis-services-database/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 15:15:55 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2866</guid>
		<description><![CDATA[Not every DBA or Database Developer has had experience with Analysis Services so it did not come as a surprise when a DBA at a client site approached us for quick help in restoring the Analysis Services Database on-to the development environment.  In our back to the basics series of posts, we will be covering [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2866&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Not every DBA or Database Developer has had experience with Analysis Services so it did not come as a surprise when a DBA at a client site approached us for quick help in restoring the Analysis Services Database on-to the development environment.  In our <a href="http://decipherinfosys.wordpress.com/?s=%22Back+to+the+Basics%22">back to the basics</a> series of posts, we will be covering this topic today.</p>
<p>Let&#8217;s use SSMS to connect to Analysis Services instance first.  In case you have never done that before, when you connect, select &#8220;Analysis Services&#8221; from the drop-down in the Server Type, the proper Server Name (your instance) and the authentication and you will be connected to the Analysis Services instance in which we will restore the back-up of the Analysis Services Database:</p>
<p><a href="http://decipherinfosys.files.wordpress.com/2011/02/as_1.jpg"><img class="aligncenter size-full wp-image-2869" title="AS_1" src="http://decipherinfosys.files.wordpress.com/2011/02/as_1.jpg" alt="" width="426" height="321" /></a></p>
<p>Once connected, right click on &#8220;Databases&#8221; and select &#8220;Restore&#8221;:</p>
<p><a href="http://decipherinfosys.files.wordpress.com/2011/02/as_2.jpg"><img class="aligncenter size-full wp-image-2870" title="AS_2" src="http://decipherinfosys.files.wordpress.com/2011/02/as_2.jpg" alt="" width="268" height="354" /></a></p>
<p>You will be presented with a very simple &#8220;Restore Database&#8221; window &#8211; most of the items are self explanatory &#8211; you would browse to select the location of your backup file (we selected the production backup file in the example below):</p>
<p><a href="http://decipherinfosys.files.wordpress.com/2011/02/as_3.jpg"><img class="aligncenter size-full wp-image-2871" title="AS_3" src="http://decipherinfosys.files.wordpress.com/2011/02/as_3.jpg" alt="" width="1024" height="577" /></a></p>
<p>Once that is done, you need to then give a name for the restored database (in our example, we are calling it PRODCOPY), select a storage location using the browse button, Allow for the database overwrite if it already exists on the instance, choose to overwrite the security information and if the backup was encrypted, provide the password so that you can move ahead with the restore process:</p>
<p><a href="http://decipherinfosys.files.wordpress.com/2011/02/as_4.jpg"><img class="aligncenter size-full wp-image-2872" title="AS_4" src="http://decipherinfosys.files.wordpress.com/2011/02/as_4.jpg" alt="" width="537" height="610" /></a></p>
<p><a href="http://decipherinfosys.files.wordpress.com/2011/02/as_5.jpg"><img class="aligncenter size-full wp-image-2873" title="AS_5" src="http://decipherinfosys.files.wordpress.com/2011/02/as_5.jpg" alt="" width="229" height="272" /></a></p>
<p>Once that is done, you would be able to restore the database on that instance and then do configuration changes, data source changes etc.</p>
<p>Another way of doing the restore: In case you are not a GUI kind of guy and like to us scripts, you can also use <a href="http://technet.microsoft.com/en-us/library/ms186654.aspx">XMLA</a>.  You can read up on the command <a href="http://technet.microsoft.com/en-us/library/ms187189.aspx">here</a>.  You can invoke XMLA by right clicking on the Analysis Services instance and choosing &#8220;New Query&#8221; and XMLA.  The command parameters are the same as you saw in the GUI option above so add the values appropriately and then execute it in order to complete the restore process.</p>
<p><strong>Resources:</strong></p>
<ul>
<li>XMLA &#8211; <a href="http://technet.microsoft.com/en-us/library/ms186654.aspx">here</a>.</li>
<li>Backup and Restore Analysis Services Databases &#8211; article on SQLServerPerformance.com by Ashish Kumar Mehta &#8211; <a href="http://www.sql-server-performance.com/articles/reporting/backup_analysis_services_database_p1.aspx">here</a>.</li>
<li>MSDN post on backing up and restoring Analysis Services Database &#8211; <a href="http://msdn.microsoft.com/en-us/library/ms174874%28v=sql.90%29.aspx">here</a>.</li>
<li>Database Journal Article on restoring Analysis Services Database using Windows Powershell and SQL Server 2008 AMO &#8211; <a href="http://www.databasejournal.com/features/mssql/article.php/3802561/Restore-Analysis-Services-database-using-Windows-PowerShell-and-SQL-Server-2008-AMO.htm">here</a>.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2866/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2866&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/02/24/back-to-the-basics-restoring-an-analysis-services-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>

		<media:content url="http://decipherinfosys.files.wordpress.com/2011/02/as_1.jpg" medium="image">
			<media:title type="html">AS_1</media:title>
		</media:content>

		<media:content url="http://decipherinfosys.files.wordpress.com/2011/02/as_2.jpg" medium="image">
			<media:title type="html">AS_2</media:title>
		</media:content>

		<media:content url="http://decipherinfosys.files.wordpress.com/2011/02/as_3.jpg" medium="image">
			<media:title type="html">AS_3</media:title>
		</media:content>

		<media:content url="http://decipherinfosys.files.wordpress.com/2011/02/as_4.jpg" medium="image">
			<media:title type="html">AS_4</media:title>
		</media:content>

		<media:content url="http://decipherinfosys.files.wordpress.com/2011/02/as_5.jpg" medium="image">
			<media:title type="html">AS_5</media:title>
		</media:content>
	</item>
		<item>
		<title>Next Release of SQL Server &#8211; Denali (SQL Server 2011)</title>
		<link>http://decipherinfosys.wordpress.com/2011/02/23/next-release-of-sql-server-denali-sql-server-2011/</link>
		<comments>http://decipherinfosys.wordpress.com/2011/02/23/next-release-of-sql-server-denali-sql-server-2011/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 20:59:36 +0000</pubDate>
		<dc:creator>decipherinfosys</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://decipherinfosys.wordpress.com/?p=2864</guid>
		<description><![CDATA[MSFT had announced the first CTP of the next version of SQL Server at PASS last November.  Since then, there has been quite some buzz on the new features of the next version.  We were at a client site last week who had just now finished migrating to SQL Server 2008 and will be moving [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2864&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MSFT had announced the first CTP of the next version of SQL Server at PASS last November.  Since then, there has been quite some buzz on the new features of the next version.  We were at a client site last week who had just now finished migrating to SQL Server 2008 and will be moving to SQL Server 2008 R2 shortly.  So, it was an interesting discussion with the CIO of the company who was putting together a presentation for the board of directors which showed the technology road-map for the company.  It becomes difficult to justify another migration in 2 years time (assuming they move to Denali in late 2012) unless there are key benefits to the business.</p>
<p>Here are some of the URLs to help you get up-to-speed on Denali:</p>
<ul>
<li>You can download the CTP from <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6a04f16f-f6be-4f92-9c92-f7e5677d91f9">here</a>.</li>
<li>BOL for Denali &#8211; <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=A94FD771-9E65-4AFA-9C5F-03344C48133F">here</a>.</li>
<li>What&#8217;s new in Denali &#8211; <a href="http://msdn.microsoft.com/en-us/library/bb500435%28v=sql.110%29.aspx">here</a>.</li>
<li>MVP Michael Otey&#8217;s post on the new features in Denali &#8211; <a href="http://www.sqlmag.com/article/sql-server/SQL-Server-Denali-Features.aspx">here</a>.</li>
<li>Future SQL Server Editions page on MSFT site &#8211; <a href="http://www.microsoft.com/sqlserver/en/us/product-info/future-editions.aspx">here</a>.</li>
<li>Analysis Services Roadmap for Denali &#8211; post on blogs.technet.com &#8211; <a href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/11/12/analysis-services-roadmap-for-sql-server-denali-and-beyond.aspx">here</a>.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decipherinfosys.wordpress.com/2864/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decipherinfosys.wordpress.com/2864/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decipherinfosys.wordpress.com/2864/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decipherinfosys.wordpress.com&amp;blog=691282&amp;post=2864&amp;subd=decipherinfosys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decipherinfosys.wordpress.com/2011/02/23/next-release-of-sql-server-denali-sql-server-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0409e90c82255ecb867b436a97e4f779?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">decipherinfosys</media:title>
		</media:content>
	</item>
	</channel>
</rss>
