<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Cleveland DBA</title>
	
	<link>http://colleenmorrow.com</link>
	<description>SQL Server and Oracle database administration in sunny Cleveland, OH</description>
	<lastBuildDate>Fri, 17 May 2013 22:38:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForClevelandDBA" /><feedburner:info uri="commentsforclevelanddba" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Comment on Pitching Pebbles – Using Certificates to Grant Privileges by Colleen M. Morrow</title>
		<link>http://colleenmorrow.com/2011/12/19/tossing-pebbles-using-certificates-to-grant-privileges/#comment-3115</link>
		<dc:creator>Colleen M. Morrow</dc:creator>
		<pubDate>Fri, 17 May 2013 22:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=914#comment-3115</guid>
		<description><![CDATA[Greg - I think the thing to do would be to create the certificate in the utility database, back it up to a file, use that file to create the certificate in the master database.  Then create a login from the master certificate and create an associated user in the utility database, and grant execute on the stored proc to the user.  Jonathan Kehayias goes through a demo &lt;a href=&quot;http://www.sqlskills.com/blogs/jonathan/certificate-signing-stored-procedures-in-multiple-databases/&quot; title=&quot;SQLSkills&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;. His example deals with multiple user databases, but it should work for what you&#039;re trying to do.]]></description>
		<content:encoded><![CDATA[<p>Greg &#8211; I think the thing to do would be to create the certificate in the utility database, back it up to a file, use that file to create the certificate in the master database.  Then create a login from the master certificate and create an associated user in the utility database, and grant execute on the stored proc to the user.  Jonathan Kehayias goes through a demo <a href="http://www.sqlskills.com/blogs/jonathan/certificate-signing-stored-procedures-in-multiple-databases/" title="SQLSkills" rel="nofollow">here</a>. His example deals with multiple user databases, but it should work for what you&#8217;re trying to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Toolbox by Kevin Zakoski</title>
		<link>http://colleenmorrow.com/toolbox/#comment-3098</link>
		<dc:creator>Kevin Zakoski</dc:creator>
		<pubDate>Tue, 14 May 2013 01:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?page_id=1469#comment-3098</guid>
		<description><![CDATA[Great tool, even as a Powershell newbie like myself I was able to convert it to Trusted Autentication and it&#039;s now collecting data from approx. 300 SQL boxes in our environment.

However, the one problem I&#039;m having and haven&#039;t found a solution for is the CommandTimeout.  The default of 30 secs causes an exception error every now and them, but I can&#039;t find any way to set the value higher.  There have been some posts around the subject but everything I try errors out with an invalid argument.

Do you know of a way to set the value higher and can you provide an example, if possible?

Thanks,

Kevin Z.]]></description>
		<content:encoded><![CDATA[<p>Great tool, even as a Powershell newbie like myself I was able to convert it to Trusted Autentication and it&#8217;s now collecting data from approx. 300 SQL boxes in our environment.</p>
<p>However, the one problem I&#8217;m having and haven&#8217;t found a solution for is the CommandTimeout.  The default of 30 secs causes an exception error every now and them, but I can&#8217;t find any way to set the value higher.  There have been some posts around the subject but everything I try errors out with an invalid argument.</p>
<p>Do you know of a way to set the value higher and can you provide an example, if possible?</p>
<p>Thanks,</p>
<p>Kevin Z.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Composite indexes – Does column order matter? by Erik Grob</title>
		<link>http://colleenmorrow.com/2011/04/07/composite-indexes-does-column-order-matter/#comment-3070</link>
		<dc:creator>Erik Grob</dc:creator>
		<pubDate>Mon, 06 May 2013 19:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://cledba.wordpress.com/?p=164#comment-3070</guid>
		<description><![CDATA[Hi Colleen,

One thing that I&#039;d suggest would be to perform the test on a Table and not a Heap - (1) We&#039;ll get more predictable and repeatable results testing things out in a &quot;lab environment&quot; when we have a clustered index and (2) it&#039;s good to enforce best practices in the postings we create, so that others don&#039;t run into issues resulting in [the specific case] the use of HEAPS.

Heaps are great for loading large amounts of data into an ETL staging table, but when performing due diligence or doing lab work, tables with a clustered index is something I would recommend.

Lastly, I agree with Bruce.  In fact, I just answered an interview question with - &#039;It depends&#039;, regarding column ordering and index usage, and I referenced the same reasoning behind my answer.  SQL Server is constantly making decisions on the fastest route to take, and complexity and page allocation of branches in a b-tree index is something taken into consideration.]]></description>
		<content:encoded><![CDATA[<p>Hi Colleen,</p>
<p>One thing that I&#8217;d suggest would be to perform the test on a Table and not a Heap &#8211; (1) We&#8217;ll get more predictable and repeatable results testing things out in a &#8220;lab environment&#8221; when we have a clustered index and (2) it&#8217;s good to enforce best practices in the postings we create, so that others don&#8217;t run into issues resulting in [the specific case] the use of HEAPS.</p>
<p>Heaps are great for loading large amounts of data into an ETL staging table, but when performing due diligence or doing lab work, tables with a clustered index is something I would recommend.</p>
<p>Lastly, I agree with Bruce.  In fact, I just answered an interview question with &#8211; &#8216;It depends&#8217;, regarding column ordering and index usage, and I referenced the same reasoning behind my answer.  SQL Server is constantly making decisions on the fastest route to take, and complexity and page allocation of branches in a b-tree index is something taken into consideration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pitching Pebbles – Using Certificates to Grant Privileges by Greg Faulk</title>
		<link>http://colleenmorrow.com/2011/12/19/tossing-pebbles-using-certificates-to-grant-privileges/#comment-3067</link>
		<dc:creator>Greg Faulk</dc:creator>
		<pubDate>Fri, 03 May 2013 17:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=914#comment-3067</guid>
		<description><![CDATA[Could you extend the example to demonstrate how to sign a stored procedure that is not stored in the master database, but is instead stored in a DBA utility database? I ask because the &#039;CREATE LOGIN ... FROM CERTIFICATE&#039; statement requires the certificate to reside in the master database. However, &#039;ADD SIGNATURE ...&#039; does not allow the certificate to reside in another database. I tried to work around the problem by creating the certificate a second time in the utility database but that resulted in a different certificate thumbprint so the permissions weren&#039;t granted. Is the solution to export the certificate from master and then import it to the utility database so as to preserve the original certificate thumbprint?]]></description>
		<content:encoded><![CDATA[<p>Could you extend the example to demonstrate how to sign a stored procedure that is not stored in the master database, but is instead stored in a DBA utility database? I ask because the &#8216;CREATE LOGIN &#8230; FROM CERTIFICATE&#8217; statement requires the certificate to reside in the master database. However, &#8216;ADD SIGNATURE &#8230;&#8217; does not allow the certificate to reside in another database. I tried to work around the problem by creating the certificate a second time in the utility database but that resulted in a different certificate thumbprint so the permissions weren&#8217;t granted. Is the solution to export the certificate from master and then import it to the utility database so as to preserve the original certificate thumbprint?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PAGE_VERIFY – Checksum vs. Torn Page Detection by Writing Checksums by Reindexing | FradenSQL</title>
		<link>http://colleenmorrow.com/2012/06/07/page_verify-checksum-vs-torn-page-detection/#comment-3039</link>
		<dc:creator>Writing Checksums by Reindexing | FradenSQL</dc:creator>
		<pubDate>Tue, 30 Apr 2013 13:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=1294#comment-3039</guid>
		<description><![CDATA[[...] a checksum on the page.  To do that I used the method Colleen Morrow used when she discussed switching from torn page to checksum recovery models.  As she shows, the checksum is stored in the m_tornBits field of the page header instead of a [...]]]></description>
		<content:encoded><![CDATA[<p>[...] a checksum on the page.  To do that I used the method Colleen Morrow used when she discussed switching from torn page to checksum recovery models.  As she shows, the checksum is stored in the m_tornBits field of the page header instead of a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Event Notifications 101 – Intro to Event Notifications by Colleen M. Morrow</title>
		<link>http://colleenmorrow.com/2013/04/15/event-notifications-101-intro-to-event-notifications/#comment-2967</link>
		<dc:creator>Colleen M. Morrow</dc:creator>
		<pubDate>Thu, 18 Apr 2013 01:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=1684#comment-2967</guid>
		<description><![CDATA[I hope so, too, Mike.  And I&#039;m definitely heading over to check out your posts!]]></description>
		<content:encoded><![CDATA[<p>I hope so, too, Mike.  And I&#8217;m definitely heading over to check out your posts!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building a SQL Server Inventory – Part 2 by Colleen M. Morrow</title>
		<link>http://colleenmorrow.com/2012/05/31/building-a-sql-server-inventory-part-2/#comment-2966</link>
		<dc:creator>Colleen M. Morrow</dc:creator>
		<pubDate>Thu, 18 Apr 2013 01:07:01 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=1280#comment-2966</guid>
		<description><![CDATA[Shannon  - Yep, the end of that line went AWOL.  It&#039;s been updated, thanks for pointing it out!  :-)]]></description>
		<content:encoded><![CDATA[<p>Shannon  &#8211; Yep, the end of that line went AWOL.  It&#8217;s been updated, thanks for pointing it out!  <img src='http://colleenmorrow.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Composite indexes – Does column order matter? by Javier Villegas</title>
		<link>http://colleenmorrow.com/2011/04/07/composite-indexes-does-column-order-matter/#comment-2965</link>
		<dc:creator>Javier Villegas</dc:creator>
		<pubDate>Wed, 17 Apr 2013 16:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://cledba.wordpress.com/?p=164#comment-2965</guid>
		<description><![CDATA[Hi, I think you should force not to use Cache on your test. I have similar conclusion until I forced NO_SQL_CACHE.]]></description>
		<content:encoded><![CDATA[<p>Hi, I think you should force not to use Cache on your test. I have similar conclusion until I forced NO_SQL_CACHE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building a SQL Server Inventory – Part 2 by Shannon</title>
		<link>http://colleenmorrow.com/2012/05/31/building-a-sql-server-inventory-part-2/#comment-2964</link>
		<dc:creator>Shannon</dc:creator>
		<pubDate>Wed, 17 Apr 2013 16:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=1280#comment-2964</guid>
		<description><![CDATA[Is there something missing within the inner query around line 405?  The where statement reads &quot;AND backupset_inner.backup_start_date&quot; then a bunch of white space before picking backup up again with &quot;AND backupset_inner.is_copy_only = 0 )&quot;.]]></description>
		<content:encoded><![CDATA[<p>Is there something missing within the inner query around line 405?  The where statement reads &#8220;AND backupset_inner.backup_start_date&#8221; then a bunch of white space before picking backup up again with &#8220;AND backupset_inner.is_copy_only = 0 )&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Event Notifications 101 – Intro to Event Notifications by Mbourgon</title>
		<link>http://colleenmorrow.com/2013/04/15/event-notifications-101-intro-to-event-notifications/#comment-2950</link>
		<dc:creator>Mbourgon</dc:creator>
		<pubDate>Tue, 16 Apr 2013 03:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://colleenmorrow.com/?p=1684#comment-2950</guid>
		<description><![CDATA[I really do think and hope 2012 is the year for EN!  Looking forward to seeing what you&#039;ve done with it.

Some posts of mine, culminating with a multi-server setup. http://thebakingdba.blogspot.com/search?q=Event+notifications]]></description>
		<content:encoded><![CDATA[<p>I really do think and hope 2012 is the year for EN!  Looking forward to seeing what you&#8217;ve done with it.</p>
<p>Some posts of mine, culminating with a multi-server setup. <a href="http://thebakingdba.blogspot.com/search?q=Event+notifications" rel="nofollow">http://thebakingdba.blogspot.com/search?q=Event+notifications</a></p>
]]></content:encoded>
	</item>
</channel>
</rss><!-- Dynamic page generated in 0.311 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-18 00:11:04 --><!-- Compression = gzip -->
