<?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: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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mind Gravy</title>
	
	<link>http://www.mindgravy.net</link>
	<description>Slather Your Mind</description>
	<lastBuildDate>Wed, 07 Dec 2011 18:59:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/mindgravy/feed" /><feedburner:info uri="mindgravy/feed" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Reindex All Tables in Database (SQL Server)</title>
		<link>http://feedproxy.google.com/~r/mindgravy/feed/~3/7p8ptTdiu3I/</link>
		<comments>http://www.mindgravy.net/2011/12/07/reindex-all-tables-in-database-sql-server/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 18:59:50 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.mindgravy.net/2011/12/07/reindex-all-tables-in-database-sql-server/</guid>
		<description><![CDATA[Another thing I do a lot and always forget about: EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', ' ', 80)" GO EXEC sp_updatestats GO]]></description>
			<content:encoded><![CDATA[<p>Another thing I do a lot and always forget about:</p>
<pre class="brush:sql">EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', ' ', 80)"
GO
EXEC sp_updatestats
GO</pre>
<img src="http://feeds.feedburner.com/~r/mindgravy/feed/~4/7p8ptTdiu3I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mindgravy.net/2011/12/07/reindex-all-tables-in-database-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mindgravy.net/2011/12/07/reindex-all-tables-in-database-sql-server/</feedburner:origLink></item>
		<item>
		<title>Execute all SQL Scripts in a Directory</title>
		<link>http://feedproxy.google.com/~r/mindgravy/feed/~3/T2sGaxvmMus/</link>
		<comments>http://www.mindgravy.net/2011/11/18/execute-all-sql-scripts-in-a-directory/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 15:22:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mindgravy.net/2011/11/18/execute-all-sql-scripts-in-a-directory/</guid>
		<description><![CDATA[For my own sanity, I can never remember&#160; this so I’m just posting it Open CMD Prompt CD to the directory where all the scripts are located Use for Windows Authentication: C:&#62;for %f in (*.sql) do sqlcmd /S &#60;servername&#62; /d &#60;dbname&#62; /E /i &#34;%f&#34; OR for Username/password: C:&#62;for %f in (*.sql) do sqlcmd /S &#60;servername&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>For my own sanity, I can never remember&#160; this so I’m just posting it</p>
<p>Open CMD Prompt</p>
<p>CD to the directory where all the scripts are located</p>
<p>Use for Windows Authentication:</p>
<pre class="brush:sql">C:&gt;for %f in (*.sql) do sqlcmd /S &lt;servername&gt; /d &lt;dbname&gt; /E /i &quot;%f&quot;</pre>
<p>OR for Username/password:</p>
<pre class="brush:sql">C:&gt;for %f in (*.sql) do sqlcmd /S &lt;servername&gt; /d &lt;dbname&gt; /U &lt;username&gt; /P &lt;password&gt; /i &quot;%f&quot;</pre>
<p>And instead of outputting to the screen, i&#8217;ll usually redirect it out to a file so I can review all scripts later</p>
<img src="http://feeds.feedburner.com/~r/mindgravy/feed/~4/T2sGaxvmMus" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mindgravy.net/2011/11/18/execute-all-sql-scripts-in-a-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mindgravy.net/2011/11/18/execute-all-sql-scripts-in-a-directory/</feedburner:origLink></item>
		<item>
		<title>OSX Lion 10.7 Sound Issue Fix</title>
		<link>http://feedproxy.google.com/~r/mindgravy/feed/~3/hfeIj1BhV2o/</link>
		<comments>http://www.mindgravy.net/2011/09/10/osx-lion-10-7-sound-issue-fix/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 14:36:47 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mindgravy.net/?p=558</guid>
		<description><![CDATA[So after upgrading my MacBook to Lion, I noticed that every once in a while, my sound would go away. I wouldn&#8217;t be able to listen to anything using the laptop speakers. I could plug in headphones, but if I wanted to play music for the kids, I wouldn&#8217;t be able to. I&#8217;ve been searching [...]]]></description>
			<content:encoded><![CDATA[<p>So after upgrading my MacBook to Lion, I noticed that every once in a while, my sound would go away. I wouldn&#8217;t be able to listen to anything using the laptop speakers. I could plug in headphones, but if I wanted to play music for the kids, I wouldn&#8217;t be able to. I&#8217;ve been searching around for an answer and finally found one in the Apple forums.</p>
<p>The fix that worked for me was opening a Terminal window and running this command:</p>
<pre class="brush:plain">sudo killall coreaudiod</pre>
<p>This will stop the sound and then restart it after a couple of seconds.  This re-enabled the sound on the laptop.</p>
<p>Hope this helps anyone else because I was very frustrated after the upgrade.</p>
<img src="http://feeds.feedburner.com/~r/mindgravy/feed/~4/hfeIj1BhV2o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mindgravy.net/2011/09/10/osx-lion-10-7-sound-issue-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mindgravy.net/2011/09/10/osx-lion-10-7-sound-issue-fix/</feedburner:origLink></item>
		<item>
		<title>Bird is the Word</title>
		<link>http://feedproxy.google.com/~r/mindgravy/feed/~3/r6CDuRDYAF4/</link>
		<comments>http://www.mindgravy.net/2011/01/07/bird-is-the-word/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 19:40:51 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://www.mindgravy.net/?p=542</guid>
		<description><![CDATA[Since YouTube won&#8217;t let me keep this up on their site, I&#8217;m putting it here instead. [stream provider=video flv=x:/www.mindgravy.net/wp-content/uploads/bird_is_the_word.m4v img=x:/www.mindgravy.net/wp-content/uploads/bird_is_the_word.png embed=false share=false width=720 height=480 dock=true controlbar=over bandwidth=high autostart=false /]]]></description>
			<content:encoded><![CDATA[<p>Since YouTube won&#8217;t let me keep this up on their site, I&#8217;m putting it here instead.</p>
<p>[stream provider=video flv=x:/www.mindgravy.net/wp-content/uploads/bird_is_the_word.m4v img=x:/www.mindgravy.net/wp-content/uploads/bird_is_the_word.png embed=false share=false width=720 height=480 dock=true controlbar=over bandwidth=high autostart=false /]</p>
<img src="http://feeds.feedburner.com/~r/mindgravy/feed/~4/r6CDuRDYAF4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mindgravy.net/2011/01/07/bird-is-the-word/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.mindgravy.net/2011/01/07/bird-is-the-word/</feedburner:origLink></item>
		<item>
		<title>Why Illinois Sucks</title>
		<link>http://feedproxy.google.com/~r/mindgravy/feed/~3/eH52WkTegKA/</link>
		<comments>http://www.mindgravy.net/2011/01/06/why-illinois-sucks/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 01:22:07 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[illinois]]></category>

		<guid isPermaLink="false">http://www.mindgravy.net/?p=540</guid>
		<description><![CDATA[I just received this letter from Amazon.  Again, my state doesn&#8217;t know that their mismanagement of money caused our state to become so in debt that they can&#8217;t even pay the schools.  So they&#8217;re trying to get more money out of the people of Illinois instead of cutting back on spending. Looks like I&#8217;ll be [...]]]></description>
			<content:encoded><![CDATA[<p>I just received this letter from Amazon.  Again, my state doesn&#8217;t know that their mismanagement of money caused our state to become so in debt that they can&#8217;t even pay the schools.  So they&#8217;re trying to get more money out of the people of Illinois instead of cutting back on spending.</p>
<p>Looks like I&#8217;ll be moving to a new state.  Our governors suck, our legislature sucks, our treatment of small business sucks.</p>
<blockquote>
<p>﻿Greetings from the Amazon Associates Program:</p>
<p>We regret to inform you that the Illinois state legislature has passed an unconstitutional tax collection scheme that, if signed by Governor Quinn, would leave <a href="http://Amazon.com/">Amazon.com</a> little choice but to end its relationships with Illinois-based Associates.  You are receiving this email because our records indicate that you are a resident of Illinois. If our records are incorrect, you can manage the details of your Associates account here [ <a href="https://affiliate-program.amazon.com/gp/associates/network/your-account/payee-info.html">https://affiliate-program.amazon.com/gp/associates/network/your-account/payee-info.html</a> ].</p>
<p>Please note that this not an immediate termination notice and you are still a valued participant in the Amazon Associates Program.  But if the governor signs this bill, we will need to terminate the participation of all Illinois residents in the Associates Program.  After that point, we will no longer pay any advertising fees for sales referred to <a href="http://amazon.com/">amazon.com</a>, <a href="http://endless.com/">endless.com</a> and <a href="http://smallparts.com/">smallparts.com</a> nor will we accept new applications for the Associates Program from Illinois residents.</p>
<p>The unfortunate consequences of this legislation on Illinois residents like you were explained to the legislature, including Senate and House leadership, as well as to the governor&#8217;s staff.</p>
<p>Over a dozen other states have considered essentially identical legislation but have rejected these proposals largely because of the adverse impact on their states&#8217; residents.  </p>
<p>Governor Quinn&#8217;s office may be reached here [ <a href="http://www2.illinois.gov/gov/Pages/ContacttheGovernor.aspx">http://www2.illinois.gov/gov/Pages/ContacttheGovernor.aspx</a> ].</p>
<p>We thank you for being part of the Amazon Associates Program, and wish you continued success in the future.</p>
<p>Sincerely,</p>
<p><a href="http://Amazon.com/">Amazon.com</a></p>
</blockquote>
<img src="http://feeds.feedburner.com/~r/mindgravy/feed/~4/eH52WkTegKA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mindgravy.net/2011/01/06/why-illinois-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mindgravy.net/2011/01/06/why-illinois-sucks/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.855 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-01-06 10:59:30 -->

