<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>The Johnnynine Weblog</title>
  <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/" />
  <link rel="self" href="http://johnnynine.com/blog/SyndicationService.asmx/GetAtom" />
  <logo>http://johnnynine.com/images/j9rss64x64.gif</logo>
  <icon>favicon.ico</icon>
  <updated>2007-12-03T11:54:40.7922371-07:00</updated>
  <author>
    <name>Johnny Hughes</name>
  </author>
  <subtitle>A weblog by Johnny Hughes</subtitle>
  <id>http://johnnynine.com/blog/</id>
  <generator uri="http://www.dasblog.net" version="1.9.6264.0">DasBlog</generator>
  <entry>
    <title>How to view the Oracle sql cache / sql history</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/HowToViewTheOracleSqlCacheSqlHistory.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,cff04620-58d8-4337-868d-edcc7a0295ec.aspx</id>
    <published>2007-12-03T11:54:16.9013063-07:00</published>
    <updated>2007-12-03T11:54:40.7922371-07:00</updated>
    <category term="Database" label="Database" scheme="http://johnnynine.com/blog/CategoryView,category,Database.aspx" />
    <category term="Database/Oracle" label="Database/Oracle" scheme="http://johnnynine.com/blog/CategoryView,category,Database%2cOracle.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
alter system flush shared_pool; -- flushes the cache
</p>
        <p>
select * from v$sqlarea; -- for baseline 
</p>
        <p>
-- execute your code/sql here 
</p>
        <p>
select * from v$sqlarea; -- compare to baseline 
</p>
        <p>
  
</p>
        <p>
  
</p>
        <p>
keywords: sql history, past sql, previous sql statement
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=cff04620-58d8-4337-868d-edcc7a0295ec" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Running a .Net application from a network share</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/RunningANetApplicationFromANetworkShare.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,0f27df07-afb1-4ee0-812e-8f76c4841d37.aspx</id>
    <published>2007-10-10T11:23:17.0179875-07:00</published>
    <updated>2007-10-10T11:23:17.0179875-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you copy a .net application to a network share and try to run it, you will be default
get a unhelpful error message.
</p>
        <p>
"... has encountered a problem and needs to close.  We are sorry for the inconvenience."
</p>
        <p>
 
</p>
        <p>
There are at least 2 ways around this:
</p>
        <p>
 
</p>
        <p>
1. You can use the .NET Framework configuration tool (Mscorcfg.msc) to change the
security policy.
</p>
        <p>
For .net 10, 1.1 see: <a title="http://support.microsoft.com/kb/832742" href="http://support.microsoft.com/kb/832742">http://support.microsoft.com/kb/832742</a></p>
        <p>
          <strong>For .net 2.0</strong>: This is only installed with the SDK, so you'll likely
need to use CasPol.exe below.
</p>
        <blockquote>
          <p>
The easiest way to modify your security policy is by using the Microsoft .NET Framework
Configuration utility from the control panel. You can also run this tool from the
command line by running mscorcfg.msc. 
</p>
          <p>
1. Expand the Runtime Security Policy folder<br />
2. Expand the Machine policy level<br />
3. Expand the Code Groups folder 
</p>
          <p>
To modify the polcy to trust a specific strong name: 
</p>
          <p>
1. Right click on All_Code, and select New<br />
2. Create a new code group for your strong name, and hit next<br />
3. Select a strong name membership condition from the drop down box<br />
4. Hit the import button, and select your assembly. The configuration tool will import
your public key. If you want to trust everything you sign with this key, leave the
name and version boxes unchecked<br />
5. Select the FullTrust permission set 
</p>
          <p>
To modify the policy to allow full trust for all Intranet assemblies: 
</p>
          <p>
1. Expand the All_Code code group<br />
2. Right click the LocalIntranet_Zone code group, and select properties<br />
3. Switch to the Permission Set tab, and select FullTrust 
</p>
        </blockquote>
        <p>
2. On the clinet pc you can give full trust access to the whole share which allows
running any .net apps frim that share (or just an individual file if you wish) as
follows:
</p>
        <p>
CasPol.exe -m -ag 1.2 -url file://storage/files/* FullTrust
</p>
        <p>
See: <a title="http://blogs.gotdotnet.com/shawnfa/archive/2004/12/30/344554.aspx" href="http://blogs.gotdotnet.com/shawnfa/archive/2004/12/30/344554.aspx">http://blogs.gotdotnet.com/shawnfa/archive/2004/12/30/344554.aspx</a></p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=0f27df07-afb1-4ee0-812e-8f76c4841d37" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Assembly not found when compiling on a new/different machine</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/AssemblyNotFoundWhenCompilingOnANewdifferentMachine.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,f40ec3f0-3d3c-4dce-bcc2-db46b1413227.aspx</id>
    <published>2007-09-27T23:49:54.3010830-07:00</published>
    <updated>2007-09-28T00:24:10.1736155-07:00</updated>
    <category term=".NET" label=".NET" scheme="http://johnnynine.com/blog/CategoryView,category,.NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Although there is a relative Reference HintPath in the .csproj file, when you move
a solution to a different machine, the hint path may not be correct for that machine. 
An easy way to get around this problem is to just ensure that your needed assembly
is in the Public Assemblies folder: Program Files\Microsoft Visual Studio .NET\Common7\IDE\Public
Assemblies.  Of course this should really only be done when you don't make any
changes to the referenced assembly, such as a 3rd party dll.
</p>
        <p>
 
</p>
        <p>
A good summary: <a title="http://blogs.msdn.com/manishagarwal/archive/2005/09/28/474769.aspx" href="http://blogs.msdn.com/manishagarwal/archive/2005/09/28/474769.aspx">http://blogs.msdn.com/manishagarwal/archive/2005/09/28/474769.aspx</a></p>
        <p>
 
</p>
        <p>
From: <a title="http://msdn2.microsoft.com/en-us/library/8y13ka7c(VS.80).aspx" href="http://msdn2.microsoft.com/en-us/library/8y13ka7c(VS.80).aspx">http://msdn2.microsoft.com/en-us/library/8y13ka7c(VS.80).aspx</a></p>
        <p>
When the project system finds an assembly reference, it resolves the reference by
looking in the following locations, in the following order: 
</p>
        <p>
1. The project directory. The project directory files appear in Solution Explorer
when Show All Files is not in effect.<br />
2. Directories specified in this dialog box.<br />
3. Directories displaying files in the Add Reference Dialog Box.<br />
4. The project's obj directory. (Any assemblies created as a result of adding a COM
reference to your project are added to the project's obj directory.) 
</p>
        <p>
From: <a title="http://msdn2.microsoft.com/en-us/library/wkze6zky(VS.80).aspx" href="http://msdn2.microsoft.com/en-us/library/wkze6zky(VS.80).aspx">http://msdn2.microsoft.com/en-us/library/wkze6zky(VS.80).aspx</a></p>
        <p>
To display an assembly in the Add Reference dialog box 
</p>
        <p>
* Move or copy the assembly to one of the following locations:
</p>
        <blockquote>
          <p>
o The current project directory (you can find these assemblies using the Browse tab).<br />
o Other project directories within the same solution (you can find these assemblies
using the Projects tab).<br />
o The Public Assemblies folder: Program Files\Microsoft Visual Studio .NET\Common7\IDE\Public
Assemblies; (you can find these assemblies on the .NET tab).
</p>
        </blockquote>
        <p>
* Set a reference path to the directory containing the assembly using the Reference
Paths Dialog Box (Visual Basic) or the Reference Paths Page, Project Designer (C#,
J#).<br />
* Set a registry key that specifies the location of assemblies to display: 
</p>
        <p>
Add one of the following registry keys, where &lt;AssemblyLocation&gt; is the directory
of the assemblies that you want to appear in the Add Reference dialog box, for example,
C:\MyAssemblies\. 
</p>
        <p>
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\.NETFramework\&lt;version&gt;\AssemblyFoldersEx\MyAssemblies]@="&lt;AssemblyLocation&gt;" 
</p>
        <p>
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\&lt;version&gt;\AssemblyFoldersEx\MyAssemblies]@="&lt;AssemblyLocation&gt;"
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=f40ec3f0-3d3c-4dce-bcc2-db46b1413227" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>How to immediately shrink Sql Server log files (.LDF files)</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/HowToImmediatelyShrinkSqlServerLogFilesLDFFiles.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,1aaf07d5-d74f-4735-bcbb-b908fe505485.aspx</id>
    <published>2007-07-31T10:39:29.4503497-07:00</published>
    <updated>2007-07-31T10:52:41.5542385-07:00</updated>
    <category term="Database" label="Database" scheme="http://johnnynine.com/blog/CategoryView,category,Database.aspx" />
    <category term="Database/Sql Server" label="Database/Sql Server" scheme="http://johnnynine.com/blog/CategoryView,category,Database%2cSql%2BServer.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <strong>THIS WAY HAS WORKED WELL FOR ME:</strong>
        </p>
        <p>
The easiest way I have found to immediatley shrink the log file is to detach the database,
rename the .LDF file then reattach the .MDF file. In SQL Server 2005 you'll need to
remove the missing .LDF file from the list before attaching, and one will be created
for you.
</p>
        <p>
 
</p>
        <p>
          <strong>I DID NOT GET THIS ROUTINE BELOW TO WORK WITH SQL SERVER 2005:</strong>
        </p>
        <p>
 
</p>
        <p>
From the April 2001 edition of SQL Server Magazine:
</p>
        <p>
 
</p>
        <p>
Shrinking Log Files Immediately
</p>
        <p>
You can use the DBCC Shrinkfile statement in SQL Server 7.0 to shrink the size of
a specified data file or log file for a related database. But SQL Server professionals
often ask me why the DBCC Shrinkfile command doesn't shrink the size of their transaction
logs immediately and how to make their transaction logs smaller. 
</p>
        <p>
SQL Server 7.0 doesn't immediately shrink log files when you issue the DBCC Shrinkfile
command. The DBCC Shrinkfile operation occurs only at checkpoints or transaction log
backups. SQL Server segments each physical log file internally into a number of virtual
log files (VLFs), which make up the transaction log. SQL Server marks the VLFs as
truncateable either after SQL Server has backed them up or at checkpoints. At any
given time, you might have VLFs with free or reusable space at the beginning, middle,
and end of the log. Only when the VLFs that SQL Server marked as truncateable are
at the end of the log file can the DBCC Shrinkfile operation remove the VLFs and shrink
the log file. Because SQL Server can shrink a log file only to a virtual-log-file
boundary, you can't shrink a log file to a size smaller than the size of a virtual
log file—even if you aren't using the log file. (For more information about virtual
log files, see SQL Server <i>Books Online—BOL</i>.) 
</p>
        <p>
Listing 1 shows a script that shrinks the log file immediately after you stop running
the script. The script first marks a shrinkpoint, which tells the DBCC Shrinkfile
(or the DBCC Shrinkdatabase) command where to shrink the log file to. The script then
forces truncateable VLFs to the end of the log file and issues a BACKUP command to
truncate the log. In my experience, you need to run the script for 3 to 4 minutes
before stopping it manually. 
</p>
        <p>
—Simon Su  yqsu@microsoft.com 
</p>
        <p>
  
</p>
        <blockquote>
          <pre>Listing 1: Script to Shrink a Log File

/* Run "SELECT fileid, name,filename FROM &lt;db_name&gt;..sysfiles" to get
the fileid you want to shrink. */

USE &lt;db_name&gt;
GO
DBCC shrinkfile(&lt;fileid&gt;,notruncate)
DBCC shrinkfile(&lt;fileid&gt;,truncateonly)
CREATE TABLE t1 (char1 char(4000))
GO
DECLARE @i int
SELECT @i = 0
WHILE (1 = 1)
BEGIN
WHILE (@i &lt; 100)
BEGIN
INSERT INTO t1 values ('a')
SELECT @i = @i +1
END
TRUNCATE TABLE t1
backup log &lt;db_name&gt; with truncate_only
END
GO
</pre>
        </blockquote>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=1aaf07d5-d74f-4735-bcbb-b908fe505485" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>CDO is not included with Outlook 2007</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/CDOIsNotIncludedWithOutlook2007.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,b870e7de-6877-49b1-9d76-19c73d9a5ff4.aspx</id>
    <published>2007-06-15T09:00:16.7340011-07:00</published>
    <updated>2007-06-15T09:00:51.8904761-07:00</updated>
    <category term="Fixes" label="Fixes" scheme="http://johnnynine.com/blog/CategoryView,category,Fixes.aspx" />
    <category term="Technical" label="Technical" scheme="http://johnnynine.com/blog/CategoryView,category,Technical.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
From microsoft.com:
</p>
        <p>
"Beginning in Exchange 2007 Beta 2 and Outlook 2007 Beta 2, CDO 1.2.1 will no longer
be provided as a part of the install of the product. As a result, there is functionality
missing that many applications depend upon. CDO 1.2.1 is a package providing access
to Outlook-compatible objects through a COM-based API."
</p>
        <p>
You can download Collaboration Data Objects, version 1.2.1 from microsoft <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2714320d-c997-4de1-986f-24f081725d36&amp;displaylang=en">here</a>.
</p>
        <p>
Just as a note, CDO was included as an optional accessory starting with Outlook 2000-ish.
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=b870e7de-6877-49b1-9d76-19c73d9a5ff4" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>How to rename a Sql Server Table Index</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/HowToRenameASqlServerTableIndex.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,ee80c8e0-4db2-40eb-88d7-5dfd56e2e0d5.aspx</id>
    <published>2007-05-29T11:03:44.3966303-07:00</published>
    <updated>2007-05-29T11:03:44.3966303-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
EXEC sp_rename 'tablename.oldindexname, tablename.newindexname', 'INDEX'
</p>
        <p>
 
</p>
        <p>
Don't forget the tablenames.
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=ee80c8e0-4db2-40eb-88d7-5dfd56e2e0d5" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Connection Strings</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/ConnectionStrings.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,0f2f11d5-0ada-4897-95c8-c3afa6d18441.aspx</id>
    <published>2007-05-18T15:26:15.6710405-07:00</published>
    <updated>2007-05-18T15:27:48.0147905-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm always forgetting my dsn-less connection string formats.
</p>
        <p>
 
</p>
        <p>
          <strong>VB6:</strong>
        </p>
        <blockquote>
          <p>
            <strong>
              <em>Oracle:</em>
            </strong>
          </p>
          <p>
Provider=OraOLEDB.Oracle.1;Data Source=tnsname;User Id=userid;Password=password; 
</p>
          <p>
  
</p>
          <p>
            <strong>
              <em>Sql Server:</em>
            </strong>
          </p>
          <p>
Provider=sqloledb;Data Source=servername;Initial Catalog=dbname;User Id=userid;Password=password;
</p>
        </blockquote>
        <p>
          <strong>.Net</strong>
        </p>
        <blockquote>
          <p>
            <strong>
              <em>Oracle (OracleClient):</em>
            </strong>
          </p>
          <p>
Data Source=tnsname;User ID=userid;Password=password; 
</p>
          <p>
  
</p>
          <p>
            <strong>
              <em>Sql Server (SqlClient):</em>
            </strong>
          </p>
          <p>
Server=servername;Database=dbname;User ID=userid;Password=password;Trusted_Connection=False
</p>
        </blockquote>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=0f2f11d5-0ada-4897-95c8-c3afa6d18441" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Why use Acronis True Image over Vista's Complete PC Backup?</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/WhyUseAcronisTrueImageOverVistasCompletePCBackup.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,c402b33c-b310-4f6d-98b6-a694cf3587f8.aspx</id>
    <published>2006-12-04T22:08:37.8170545-07:00</published>
    <updated>2006-12-04T22:08:37.8170545-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you want access to the individual files within your complete pc backup, then the
built in Complete PC Backup in WIndows Vista isn't for you.  You can only restore
your complete partition.
</p>
        <p>
A caveat to the above is that I have heard you can mount the above backup file in
Microsoft Virtual PC as a harddrive, which in theory would allow access to the individual
files however this would require you have Virtual PC installed and I have not tried
this.
</p>
        <p>
Acronis True Image 10 is compatible with Windows Vista and allows you to explore the
backup files in explorer.
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=c402b33c-b310-4f6d-98b6-a694cf3587f8" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Before doing a full install of Windows Vista</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/BeforeDoingAFullInstallOfWindowsVista.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,9e080247-b50f-412e-9e94-8fb2655f1b32.aspx</id>
    <published>2006-12-04T22:00:08.0012917-07:00</published>
    <updated>2006-12-04T22:01:01.4860090-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I installed the Windows Vista Ultimate final over the weekend and here are some notes
on what I did before doing a fresh install.
</p>
        <p>
Run the Windows Vista Analyser to determine how well your pc can handle Vista. 
Don't expect it to catch everything, it will not.
</p>
        <p>
Do a full bootdrive backup. No seriously, do it! I recommend Acronis True Image.
</p>
        <p>
Decrypt all files encrypted by the os (or if you have the know how, export your certificates,
etc.)  Your encrypted files will not be readable in the new OS since the user's
SID will be different.  (If you are upgrading and not doing a fresh install,
you probably don't need to worry about this.)  If you backed up your encrypted
files with Windows XP/95's backup tool before you decrypted them you will still not
be able to read them as the backup actually backs them up as encrypted files.
</p>
        <p>
During the install, I chose to format the boot drive since I had done a full backup. 
I have never fully trusted Windows upgrades, so I always do a full install.
</p>
        <img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=9e080247-b50f-412e-9e94-8fb2655f1b32" />
        <br />
        <hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>Microsoft's diff/patch tool works on binary executables</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/MicrosoftsDiffpatchToolWorksOnBinaryExecutables.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,a142983a-6d02-4e45-ac8c-30708df3ddbd.aspx</id>
    <published>2006-11-16T15:33:28.4281983-07:00</published>
    <updated>2006-11-16T15:33:28.4281983-07:00</updated>
    <category term="Technical" label="Technical" scheme="http://johnnynine.com/blog/CategoryView,category,Technical.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I found this nice command line tool of Microsoft's
that will make a patch file by comparing two files which can be used with their command
line patching tool to create the 2nd file.  This works great for patching an
executable that is large.<br /><br />
The patcher works on Windows XP without the SDK installed.  But the SDK must
be installed to get the command line tools you need.<br /><br />
The command line tools you will need from the SDK are called mpatch and apatch and
are in C:\Program Files\Microsoft Platform\SDK\Samples\SysMgmt\Msi\Patching.<br /><br />
Here is the download:  <a href="http://www.microsoft.com/downloads/details.aspx?familyid=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&amp;displaylang=en">Platform
SDK</a><br /><br /><br />
I found this by reading <a href="http://blogs.msdn.com/jmstall/archive/2006/11/07/binary-diff.aspx">this
blog entry</a>.<br /><br /><br /><br /><img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=a142983a-6d02-4e45-ac8c-30708df3ddbd" /><br /><hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
  <entry>
    <title>DasBlog Nightly builds</title>
    <link rel="alternate" type="text/html" href="http://johnnynine.com/blog/DasBlogNightlyBuilds.aspx" />
    <id>http://johnnynine.com/blog/PermaLink,guid,c1e5ce5d-34a1-47d0-ab55-da2f131c3bc8.aspx</id>
    <published>2006-11-13T17:58:04.0144775-07:00</published>
    <updated>2006-11-13T17:58:04.0144775-07:00</updated>
    <category term="My Blog" label="My Blog" scheme="http://johnnynine.com/blog/CategoryView,category,My%2BBlog.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I tracked down where the nightly builds
are.  At one point I was downloading the source code and compiling it myself...
but there's no need:<br /><p></p>
http://dasblog.info/dbftp/<br /><img width="0" height="0" src="http://johnnynine.com/blog/aggbug.ashx?id=c1e5ce5d-34a1-47d0-ab55-da2f131c3bc8" /><br /><hr />
View the read thing at <a href="http://www.johnnynine.com/blog">The Johnnynine Weblog</a>. 
</div>
    </content>
  </entry>
</feed>