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

<channel>
	<title>Thiago Zavaschi R2 &#187; Alta Disponibilidade</title>
	<atom:link href="http://zavaschi.com/index.php/category/alta-disponibilidade/feed/" rel="self" type="application/rss+xml" />
	<link>http://zavaschi.com</link>
	<description>www.zavaschi.com</description>
	<lastBuildDate>Mon, 02 Jan 2012 16:51:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Verificando o status do seu Cluster SQL Server</title>
		<link>http://zavaschi.com/index.php/2010/01/verificando-o-status-do-seu-cluster-sql-server/</link>
		<comments>http://zavaschi.com/index.php/2010/01/verificando-o-status-do-seu-cluster-sql-server/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 14:29:00 +0000</pubDate>
		<dc:creator>Thiago Zavaschi</dc:creator>
				<category><![CDATA[Alta Disponibilidade]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Clustering]]></category>

		<guid isPermaLink="false">http://zavaschi.com/index.php/2010/01/verificando-o-status-do-seu-cluster-sql-server/</guid>
		<description><![CDATA[Olá a todos,
O post de hoje é uma dica rápida para os profissionais que precisam trabalhar com instâncias clusterizadas do SQL Server e gostariam de saber algumas informações sobre as mesmas!
Temos o uso do SERVERPROPERTY e das DMV’s: sys.dm_io_cluster_shared_drives / sys.dm_os_cluster_nodes.
Para extrair algumas informações:

SELECT
    SERVERPROPERTY('IsClustered') as _1_Eh_Clusterizada,
    SERVERPROPERTY('ComputerNamePhysicalNetBIOS') as [...]]]></description>
			<content:encoded><![CDATA[<p>Olá a todos,</p>
<p align="justify">O post de hoje é uma dica rápida para os profissionais que precisam trabalhar com instâncias clusterizadas do SQL Server e gostariam de saber algumas informações sobre as mesmas!</p>
<p align="justify">Temos o uso do SERVERPROPERTY e das DMV’s: sys.dm_io_cluster_shared_drives / sys.dm_os_cluster_nodes.</p>
<p>Para extrair algumas informações:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:177da72f-a3bd-4b78-b3dd-2463c8645283" class="wlWriterEditableSmartContent">
<pre style="background-color:#FFFFFF;overflow: auto;"><span style="color: #0000FF;">SELECT</span><span style="color: #000000;">
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">IsClustered</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> _1_Eh_Clusterizada,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">ComputerNamePhysicalNetBIOS</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> NoAtual,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">Edition</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> Edicao,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">MachineName</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> VirtualName,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">InstanceName</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> NomeInstancia,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">ServerName</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> Virtual_e_InstanceNames,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">ProductVersion</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> Versao,
    SERVERPROPERTY(</span><span style="color: #FF0000;">'</span><span style="color: #FF0000;">ProductLevel</span><span style="color: #FF0000;">'</span><span style="color: #000000;">) </span><span style="color: #0000FF;">as</span><span style="color: #000000;"> NomeVersaoSemHotfixes</span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
<p align="justify">&#160;</p>
<p align="justify">E para extrair outras informações é bastante interessante utilizar as seguintes queries:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:fb4c0d87-f1a0-46ce-83e1-e7550a04e010" class="wlWriterEditableSmartContent">
<pre style="background-color:#FFFFFF;overflow: auto;"><span style="color: #0000FF;">SELECT</span><span style="color: #000000;"> </span><span style="color: #808080;">*</span><span style="color: #000000;"> </span><span style="color: #0000FF;">FROM</span><span style="color: #000000;"> sys.dm_io_cluster_shared_drives

</span><span style="color: #0000FF;">SELECT</span><span style="color: #000000;"> </span><span style="color: #808080;">*</span><span style="color: #000000;"> </span><span style="color: #0000FF;">FROM</span><span style="color: #000000;"> sys.dm_os_cluster_nodes
</span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
</p>
<p>Espero que as queries sejam úteis a vocês!</p>
<p>Abraços,<br />
  <br />Thiago Zavaschi</p>
]]></content:encoded>
			<wfw:commentRss>http://zavaschi.com/index.php/2010/01/verificando-o-status-do-seu-cluster-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alta Disponibilidade no SQL Server 2008</title>
		<link>http://zavaschi.com/index.php/2009/09/alta-disponibilidade-no-sql-server-2008/</link>
		<comments>http://zavaschi.com/index.php/2009/09/alta-disponibilidade-no-sql-server-2008/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 16:42:00 +0000</pubDate>
		<dc:creator>Thiago Zavaschi</dc:creator>
				<category><![CDATA[Alta Disponibilidade]]></category>

		<guid isPermaLink="false">8DE5A8EFC1819ECA!402</guid>
		<description><![CDATA[Acaba de ser lançado mais um excelente whitepaper (em inglês): High Availability with SQL Server 2008.
Dados sobre o artigo (em inglês):
Writer: Paul S. Randal (SQLskills.com)Technical Reviewers: Sanjay Mishra, Michael Thomassy, Haydn Richardson, Gopal Ashok, Kimberly L. Tripp (SQLskills.com), Glenn Berry (NewsGator Technologies)Published: September 2009Applies to: SQL Server 2008
Summary:This white paper describes the technologies available in [...]]]></description>
			<content:encoded><![CDATA[<p>Acaba de ser lançado mais um excelente whitepaper (em inglês): High Availability with SQL Server 2008.</p>
<p>Dados sobre o artigo (em inglês):</p>
<p><strong>Writer:</strong> Paul S. Randal (SQLskills.com)<br /><strong>Technical Reviewers:</strong> Sanjay Mishra, Michael Thomassy, Haydn Richardson, Gopal Ashok, Kimberly L. Tripp (SQLskills.com), Glenn Berry (NewsGator Technologies)<br /><strong>Published:</strong> September 2009<br /><strong>Applies to:</strong> SQL Server 2008
<p><strong>Summary:<br /></strong><em>This white paper describes the technologies available in SQL Server 2008 that can be used as part of a high-availability strategy to protect critical data. As well as describing the technologies in detail, the white paper also discusses the various causes of downtime and data loss, and how to evaluate and balance requirements and limitations when planning a high-availability strategy involving SQL Server 2008.<br /></em><em>This white paper is targeted at architects, IT pros, and database administrators (DBAs) tasked with implementing a high-availability strategy. It assumes the reader is familiar with Windows and SQL Server and has at least a rudimentary knowledge of database concepts such as transactions.</em>
<p><a title="http://msdn.microsoft.com/en-us/library/ee523927.aspx" href="http://msdn.microsoft.com/en-us/library/ee523927.aspx">http://msdn.microsoft.com/en-us/library/ee523927.aspx</a></p>
<p>Enjoy!</p>
<p>Já estou lendo e realmente está bem bacana :)</p>
<p>Abraços,<br />Thiago Zavaschi</p>
]]></content:encoded>
			<wfw:commentRss>http://zavaschi.com/index.php/2009/09/alta-disponibilidade-no-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

