<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>FUblog</title>
			<link>http://developer.fusium.com/fublog/</link>
			<description>Fusium Blog </description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 18:19:27 -0400</pubDate>
			<lastBuildDate>Tue, 29 May 2007 00:00:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>info@Fusium.com</managingEditor>
			<webMaster>info@Fusium.com</webMaster>
			
			
			
			
			
			<item>
				<title>Moving On</title>
				<link>http://developer.fusium.com/fublog//2007/5/29/Moving-On</link>
				<description>
				
				As you can see, there&apos;s not much activity here anymore.

You can find more of Nat&apos;s wisdom at &lt;a href=&quot;http://www.webapper.net/&quot;&gt;webapper&lt;/a&gt;. 

Erik is now blogging at &lt;a href=&quot;http://www.psykel.com/blog/&quot;&gt;psykel&lt;/a&gt;. 

Happy Trails,
grumps
				
				</description>
				
				<category>Server</category>
				
				<category>General</category>
				
				<category>CSS</category>
				
				<category>Java</category>
				
				<category>ColdFusion</category>
				
				<category>FUsebox</category>
				
				<category>Minaret</category>
				
				<category>Hardware</category>
				
				<category>Database</category>
				
				<category>CommonSnot</category>
				
				<pubDate>Tue, 29 May 2007 00:00:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog//2007/5/29/Moving-On</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>appending an ntext field</title>
				<link>http://developer.fusium.com/fublog//2006/7/13/appending-an-ntext-field</link>
				<description>
				
				Say you want to do something like this:

update table set ntextThing = ntextThing + &apos;!&apos; where id = 1

That&apos;s not going to work.  This does, though:

&lt;code&gt;
DECLARE @ptrval binary(16)
SELECT @ptrval = TEXTPTR(ntextThing) 
FROM item 
WHERE id =1
UPDATETEXT table.ntextthing @ptrval NULL 0 &apos;!&apos;
GO 
&lt;/code&gt;
				
				</description>
				
				<category>Database</category>
				
				<pubDate>Thu, 13 Jul 2006 14:50:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog//2006/7/13/appending-an-ntext-field</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Exporting DTS Packages</title>
				<link>http://developer.fusium.com/fublog//2006/6/24/Exporting-DTS-Packages</link>
				<description>
				
				When you backup and restore an MSSQL database, or use DTS to move schema and/or data between servers, you won&apos;t get the DTS packages that apply to that database. But what if your application relies on those DTS packages? You&apos;re gonna need to DTS the DTS packages. And here&apos;s how you do it.
				 [More]
				</description>
				
				<category>Database</category>
				
				<pubDate>Sat, 24 Jun 2006 12:43:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog//2006/6/24/Exporting-DTS-Packages</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>dbcc checkdb</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=E2EFEF5E-05AC-347A-06EB16EA51EEFFEB</link>
				<description>
				
				Got this error logged for a DB I had just restored: 

&lt;div class=&quot;code&quot;&gt;[Macromedia][SQLServer JDBC Driver][SQLServer]Could not find the index entry for RID &apos;3601000000040000006e0800000000000005000001002200323030352d30392d3239&apos; in index page (&lt;FONT COLOR=BLUE&gt;1&lt;/FONT&gt;:1485), index ID 0, database &apos;commonspot-health&apos;&lt;/div&gt;

Hunted around, came up with this:

&lt;div class=&quot;code&quot;&gt;EXEC sp_dboption &apos;commonspot-health&apos;, &apos;single user&apos;, &apos;TRUE&apos;&lt;br&gt;
dbcc checkdb (&apos;commonspot-health&apos;,REPAIR_REBUILD)&lt;br&gt;
EXEC sp_dboption &apos;commonspot-health&apos;, &apos;single user&apos;, &apos;FALSE&apos;&lt;/div&gt;

&lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_dbcc_00gy.asp&quot;&gt;DBCC&lt;/a&gt; is my friend.
				
				</description>
				
				<category>Database</category>
				
				<pubDate>Wed, 30 Nov 2005 12:47:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=E2EFEF5E-05AC-347A-06EB16EA51EEFFEB</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Scheduled DTS Package won&apos;t run</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=D9225D2C-C35D-1150-4C0BEC6F47F51FBB</link>
				<description>
				
				If you&apos;ve got a scheduled DTS Package that won&apos;t run, it&apos;s probably a simple fix.

The error we got was &quot;reason: the system cannot find the file specified.&quot;

The job would run just fine when manually started, but scheduled jobs would fail.

The reason is irritating -- SQL Server doesn&apos;t include the path to &quot;DTSRun.exe&quot;

So you&apos;ll need to add that path to your PATH environmental variable, or edit each job you create individually.

To edit the job, go the the STEPS tab, double click the Step, and manually edit the command that calles DTSRun.  

You&apos;ll find DTSRun.exe in tools/binn.
				
				</description>
				
				<category>Database</category>
				
				<pubDate>Mon, 28 Nov 2005 14:57:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=D9225D2C-C35D-1150-4C0BEC6F47F51FBB</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Firehose mode in SQL Server</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=541FCE6B-E44E-D3E8-F6076412436F5959</link>
				<description>
				
				I saw this super odd error message from SQL Server today:

&lt;div class=&quot;code&quot;&gt;Transaction cannot start while in firehose mode&lt;/div&gt;

Firehose mode?  What&apos;s that?
				 [More]
				</description>
				
				<category>Database</category>
				
				<pubDate>Tue, 26 Jul 2005 10:04:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=541FCE6B-E44E-D3E8-F6076412436F5959</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>yukon aka mssql 2005</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=28D63050-F404-738B-4686C257AC3FF2DC</link>
				<description>
				
				A Community Technology Preview of MSSQL 2005 is out, a free, no registration download from ms.com. I ran it as an upgrade to MSSQL 2000.

Speaking of MS, have you checked out the Action Pack subscription? We get it at Fusium and if you&apos;ve never seen the deal before, you&apos;ll prolly poop your pants. &lt;a href=&quot;https://partner.microsoft.com/global/40016455&quot;&gt;Check it.&lt;/a&gt;
				
				</description>
				
				<category>General</category>
				
				<category>Database</category>
				
				<pubDate>Mon, 18 Jul 2005 00:22:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=28D63050-F404-738B-4686C257AC3FF2DC</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>killing processes in mssql via script</title>
				<link>http://developer.fusium.com/fublog/?mode=entry&amp;entry=C9C26B2C-D7EB-F307-C30309C38B82B081</link>
				<description>
				
				While working on TBJ, I had a LOT of open database connections at any time. Now sure, I *DO* close my connections, but there&apos;s a lot of db communication going on, and Tomcat has some kind of connection pooling such that it puts connections to sleep when it&apos;s done with them, but they&apos;re still there!

Now the problem comes when I needed to restore a database on top of the existing database. MSSQL doesn&apos;t like you to do that unless all the open processes are killed. Normally I just rt-click kill process each one, since there are only a couple.

But oh my god, I had about a hundred. F that. Enter Google.
				 [More]
				</description>
				
				<category>Database</category>
				
				<pubDate>Wed, 29 Jun 2005 13:15:00 -0400</pubDate>
				<guid>http://developer.fusium.com/fublog/?mode=entry&amp;entry=C9C26B2C-D7EB-F307-C30309C38B82B081</guid>
				
			</item>
			
		 	
			</channel></rss>
	

