<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>this.Pose() as Expert - SQL Server</title>
    <link>http://chrison.net/</link>
    <description />
    <language>en-us</language>
    <copyright>Christoph Wille</copyright>
    <lastBuildDate>Fri, 13 Mar 2009 10:47:18 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>christoph.wille@gmail.com</managingEditor>
    <webMaster>christoph.wille@gmail.com</webMaster>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=41abc667-8feb-4e41-869f-58423f3c5b74</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,41abc667-8feb-4e41-869f-58423f3c5b74.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,41abc667-8feb-4e41-869f-58423f3c5b74.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=41abc667-8feb-4e41-869f-58423f3c5b74</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Importing table data is an easy enough task in SQL Server 2005 - but this week we
stumbled across this error message:
</p>
        <p>
          <font face="Courier New">Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. 
An OLE DB error has occurred. Error code: 0x80004005.<br />
An OLE DB record is available.  Source: "Microsoft SQL Native Client"  Hresult:
0x80004005  Description: "Expected the TEXT token in data stream for bulk copy
of text or image data.".<br />
 (SQL Server Import and Export Wizard)</font>
        </p>
        <p>
Funny thing is, there were only nvarchar(max) columns on the table, and no binary
columns whatsoever. A bit of searching and more staring at the table definition finally
pointed out us in the right direction - the target table has a computed field in it,
like so:
</p>
        <p>
[MyComputedColumn] AS<br />
 (<br />
  [dbo].[MyFunction](OtherColumnAsParameter)<br />
 ),
</p>
        <p>
Although we had told SSIS to &lt;ignore&gt; it, this error came up. The only work
around for SSIS: remove the computed field before doing the import.
</p>
        <p>
References:
</p>
        <p>
          <a href="http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&amp;threadid=30015404">http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&amp;threadid=30015404</a>
          <br />
          <a href="http://sqlug.be/forums/thread/821.aspx">http://sqlug.be/forums/thread/821.aspx</a>
        </p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=41abc667-8feb-4e41-869f-58423f3c5b74" />
      </body>
      <title>SSIS Error of the Day - "Expected the TEXT token in data stream for bulk copy of text or image data."</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,41abc667-8feb-4e41-869f-58423f3c5b74.aspx</guid>
      <link>http://chrison.net/SSISErrorOfTheDayExpectedTheTEXTTokenInDataStreamForBulkCopyOfTextOrImageData.aspx</link>
      <pubDate>Fri, 13 Mar 2009 10:47:18 GMT</pubDate>
      <description>&lt;p&gt;
Importing table data is an easy enough task in SQL Server 2005 - but this week we
stumbled across this error message:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR.&amp;nbsp;
An OLE DB error has occurred. Error code: 0x80004005.&lt;br&gt;
An OLE DB record is available.&amp;nbsp; Source: "Microsoft SQL Native Client"&amp;nbsp; Hresult:
0x80004005&amp;nbsp; Description: "Expected the TEXT token in data stream for bulk copy
of text or image data.".&lt;br&gt;
&amp;nbsp;(SQL Server Import and Export Wizard)&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Funny thing is, there were only nvarchar(max) columns on the table, and no binary
columns whatsoever. A bit of searching and more staring at the table definition finally
pointed out us in the right direction - the target table has a computed field in it,
like so:
&lt;/p&gt;
&lt;p&gt;
[MyComputedColumn] AS&lt;br&gt;
&amp;nbsp;(&lt;br&gt;
&amp;nbsp;&amp;nbsp;[dbo].[MyFunction](OtherColumnAsParameter)&lt;br&gt;
&amp;nbsp;),
&lt;/p&gt;
&lt;p&gt;
Although we had told SSIS to &amp;lt;ignore&amp;gt; it, this error came up. The only work
around for SSIS: remove the computed field before doing the import.
&lt;/p&gt;
&lt;p&gt;
References:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&amp;amp;threadid=30015404"&gt;http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&amp;amp;threadid=30015404&lt;/a&gt;
&lt;br&gt;
&lt;a href="http://sqlug.be/forums/thread/821.aspx"&gt;http://sqlug.be/forums/thread/821.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=41abc667-8feb-4e41-869f-58423f3c5b74" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,41abc667-8feb-4e41-869f-58423f3c5b74.aspx</comments>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
Today I wanted to install SQL Server 2008 Developer Edition. Easy enough, at least
so I thought. Started setup for a new instance, chose a different directory from where
SQL 2005 lives (my c: drive is nearly full), selected a few components, clicked Next&gt;:
</p>
        <p>
          <img src="http://chrison.net/content/binary/uselesssql2008errormessage.png" border="0" />
        </p>
        <p>
I have no idea what SQL Server tries to tell me. <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3736253&amp;SiteID=1">This
is sick</a>.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc" />
      </body>
      <title>Useless Error Messages - SQL Server 2008 Setup</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc.aspx</guid>
      <link>http://chrison.net/UselessErrorMessagesSQLServer2008Setup.aspx</link>
      <pubDate>Sat, 23 Aug 2008 09:07:40 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Today I wanted to install SQL Server 2008 Developer Edition. Easy enough, at least
so I thought. Started setup for a new instance, chose a different directory from where
SQL 2005 lives (my c: drive is nearly full), selected a few components, clicked Next&amp;gt;:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://chrison.net/content/binary/uselesssql2008errormessage.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
I have no idea what SQL Server tries to tell me. &lt;a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3736253&amp;amp;SiteID=1"&gt;This
is sick&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,53ebfc19-4c74-4f9e-b2ff-35b93a8a8bdc.aspx</comments>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=1a070c82-e8dc-4496-b85c-d7c55f85b4c9</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,1a070c82-e8dc-4496-b85c-d7c55f85b4c9.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,1a070c82-e8dc-4496-b85c-d7c55f85b4c9.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=1a070c82-e8dc-4496-b85c-d7c55f85b4c9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Tonight, SQL Server decided to write a 14GB error log to disk - filling it up neatly,
which of course had a couple of "side effects". Drat! All log file directories (HTTPERR,
IIS, MailEnable, you name it) - everything except the SQL error log is on a separate
partition for exactly one purpose: that no application log can stop the server dead
in its tracks.
</p>
        <p>
After clearing up the mess I thought "let's move the logs for SQL Server". Thanks
to <a href="http://alexonasp.net/">Alex</a> I finally figured out where to do that
- in the Configuration Manager:
</p>
        <p>
          <img src="http://chrison.net/content/binary/errorlogmove1.png" border="0" />
        </p>
        <p>
Go to the Properties dialog, and modify the Startup Parameters (-eC):
</p>
        <p>
          <img src="http://chrison.net/content/binary/errorlogmove2.png" border="0" />
        </p>
        <p>
Details can be found in the article <a href="http://msdn2.microsoft.com/en-us/library/ms345408.aspx">Moving
System Databases</a>, section Moving the master and Resource Databases. Someone from
Microsoft care to enlighten me as to why this log directoy has been hidden so far
away from sight?
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=1a070c82-e8dc-4496-b85c-d7c55f85b4c9" />
      </body>
      <title>Moving the SQL Server ERRORLOG</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,1a070c82-e8dc-4496-b85c-d7c55f85b4c9.aspx</guid>
      <link>http://chrison.net/MovingTheSQLServerERRORLOG.aspx</link>
      <pubDate>Mon, 02 Apr 2007 11:57:03 GMT</pubDate>
      <description>&lt;p&gt;
Tonight, SQL Server decided to write a 14GB error log to disk - filling it up neatly,
which of course had a couple of "side effects". Drat! All log file directories&amp;nbsp;(HTTPERR,
IIS, MailEnable,&amp;nbsp;you name it) - everything except the SQL error log is on a separate
partition for exactly one purpose: that no application log can stop the server dead
in its tracks.
&lt;/p&gt;
&lt;p&gt;
After clearing up the mess I thought "let's move the logs for SQL Server". Thanks
to &lt;a href="http://alexonasp.net/"&gt;Alex&lt;/a&gt; I finally figured out where to do that
- in the Configuration Manager:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://chrison.net/content/binary/errorlogmove1.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Go to the Properties dialog, and modify the Startup Parameters (-eC):
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://chrison.net/content/binary/errorlogmove2.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Details can be found in the article &lt;a href="http://msdn2.microsoft.com/en-us/library/ms345408.aspx"&gt;Moving
System Databases&lt;/a&gt;, section Moving the master and Resource Databases. Someone from
Microsoft care to enlighten me as to why this log directoy has been hidden so far
away from sight?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=1a070c82-e8dc-4496-b85c-d7c55f85b4c9" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,1a070c82-e8dc-4496-b85c-d7c55f85b4c9.aspx</comments>
      <category>Administration</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=23178df4-4379-459e-af23-d4f7645caa47</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,23178df4-4379-459e-af23-d4f7645caa47.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,23178df4-4379-459e-af23-d4f7645caa47.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=23178df4-4379-459e-af23-d4f7645caa47</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
At long last at least a <a href="http://www.microsoft.com/downloads/details.aspx?familyid=75fef59f-1b5e-49bc-a21a-9ef4f34de6fc&amp;displaylang=en&amp;tm">CTP
is available</a>. Definitely worthwhile to check out.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=23178df4-4379-459e-af23-d4f7645caa47" />
      </body>
      <title>Microsoft Synchronization Services for ADO.NET CTP</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,23178df4-4379-459e-af23-d4f7645caa47.aspx</guid>
      <link>http://chrison.net/MicrosoftSynchronizationServicesForADONETCTP.aspx</link>
      <pubDate>Thu, 15 Feb 2007 09:46:14 GMT</pubDate>
      <description>&lt;p&gt;
At long last at least a &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=75fef59f-1b5e-49bc-a21a-9ef4f34de6fc&amp;amp;displaylang=en&amp;amp;tm"&gt;CTP
is available&lt;/a&gt;. Definitely worthwhile to check out.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=23178df4-4379-459e-af23-d4f7645caa47" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,23178df4-4379-459e-af23-d4f7645caa47.aspx</comments>
      <category>.NET</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=03726053-fdac-45ff-aeaf-e0d4a19b950b</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,03726053-fdac-45ff-aeaf-e0d4a19b950b.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,03726053-fdac-45ff-aeaf-e0d4a19b950b.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=03726053-fdac-45ff-aeaf-e0d4a19b950b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The final SQL Server-related post for today: <a href="http://www.microsoft.com/technet/prodtechnol/sql/2005/workingwithtempdb.mspx">Working
with tempdb in SQL Server 2005</a>.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=03726053-fdac-45ff-aeaf-e0d4a19b950b" />
      </body>
      <title>Whitepaper: Working with tempdb in SQL Server 2005</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,03726053-fdac-45ff-aeaf-e0d4a19b950b.aspx</guid>
      <link>http://chrison.net/WhitepaperWorkingWithTempdbInSQLServer2005.aspx</link>
      <pubDate>Mon, 13 Nov 2006 17:37:37 GMT</pubDate>
      <description>&lt;p&gt;
The final SQL Server-related post for today: &lt;a href="http://www.microsoft.com/technet/prodtechnol/sql/2005/workingwithtempdb.mspx"&gt;Working
with tempdb in SQL Server 2005&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=03726053-fdac-45ff-aeaf-e0d4a19b950b" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,03726053-fdac-45ff-aeaf-e0d4a19b950b.aspx</comments>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Another noteable tidbit from the "Achieving High Availability with SQL Server 2005"
preconference session: the whitepaper <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sql2k5partition.asp">Partitioned
Tables and Indexes in SQL Server 2005</a>.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e" />
      </body>
      <title>Partitioned Tables and Indexes in SQL Server 2005</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e.aspx</guid>
      <link>http://chrison.net/PartitionedTablesAndIndexesInSQLServer2005.aspx</link>
      <pubDate>Mon, 13 Nov 2006 15:44:36 GMT</pubDate>
      <description>&lt;p&gt;
Another noteable tidbit from the "Achieving High Availability with SQL Server 2005"
preconference session: the whitepaper &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sql2k5partition.asp"&gt;Partitioned
Tables and Indexes in SQL Server 2005&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,d9bf0b39-fcb7-45a0-9a77-9e6a79d81d0e.aspx</comments>
      <category>SQL Server</category>
      <category>Training and Conferences</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=3d045881-0523-42ee-b79a-84539725fea2</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,3d045881-0523-42ee-b79a-84539725fea2.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,3d045881-0523-42ee-b79a-84539725fea2.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=3d045881-0523-42ee-b79a-84539725fea2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Currently listening to the half-day preconference session "Achieving High Availability
with SQL Server 2005" by <a href="http://www.sqlskills.com/blogs/kimberly/">Kimberly
Tripp</a>. Interesting tidbit for decreasing downtime for operational tasks (like
create database or restore): <a href="http://msdn2.microsoft.com/en-us/library/ms175935.aspx">Instant
File Initialization</a>. The figures really point to huge time savings! Quite a selling
point for Enterprise Edition of SQL Server.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=3d045881-0523-42ee-b79a-84539725fea2" />
      </body>
      <title>Instant File Initialization For SQL Server EE / Developer</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,3d045881-0523-42ee-b79a-84539725fea2.aspx</guid>
      <link>http://chrison.net/InstantFileInitializationForSQLServerEEDeveloper.aspx</link>
      <pubDate>Mon, 13 Nov 2006 15:22:15 GMT</pubDate>
      <description>&lt;p&gt;
Currently listening to the half-day preconference session "Achieving High Availability
with SQL Server 2005" by &lt;a href="http://www.sqlskills.com/blogs/kimberly/"&gt;Kimberly
Tripp&lt;/a&gt;. Interesting tidbit for decreasing downtime for operational tasks (like
create database or restore): &lt;a href="http://msdn2.microsoft.com/en-us/library/ms175935.aspx"&gt;Instant
File Initialization&lt;/a&gt;. The figures really point to huge time savings! Quite a selling
point for Enterprise Edition of SQL Server.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=3d045881-0523-42ee-b79a-84539725fea2" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,3d045881-0523-42ee-b79a-84539725fea2.aspx</comments>
      <category>SQL Server</category>
      <category>Training and Conferences</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=d3bdf61b-c021-453b-8248-efbb0bd659dc</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,d3bdf61b-c021-453b-8248-efbb0bd659dc.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,d3bdf61b-c021-453b-8248-efbb0bd659dc.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=d3bdf61b-c021-453b-8248-efbb0bd659dc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Namely <a href="http://msdn.microsoft.com/vstudio/teamsystem/dbpro/">Visual Studio
Team Edition for Database Professionals</a>. This needs either SQL Server Enterprise
or <a href="http://www.microsoft.com/sql/howtobuy/development.mspx">Developer Edition</a>.
Of course I had Standard and Express on my machine only...
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=d3bdf61b-c021-453b-8248-efbb0bd659dc" />
      </body>
      <title>SQL Server Developer Edition - Finally A Good Use-Case</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,d3bdf61b-c021-453b-8248-efbb0bd659dc.aspx</guid>
      <link>http://chrison.net/SQLServerDeveloperEditionFinallyAGoodUseCase.aspx</link>
      <pubDate>Mon, 13 Nov 2006 12:51:59 GMT</pubDate>
      <description>&lt;p&gt;
Namely &lt;a href="http://msdn.microsoft.com/vstudio/teamsystem/dbpro/"&gt;Visual Studio
Team Edition for Database Professionals&lt;/a&gt;. This needs either SQL Server Enterprise
or &lt;a href="http://www.microsoft.com/sql/howtobuy/development.mspx"&gt;Developer Edition&lt;/a&gt;.
Of course I had Standard and Express on my machine only...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=d3bdf61b-c021-453b-8248-efbb0bd659dc" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,d3bdf61b-c021-453b-8248-efbb0bd659dc.aspx</comments>
      <category>SQL Server</category>
      <category>Team System</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=767750a1-d605-4b74-992a-e0282878ec06</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,767750a1-d605-4b74-992a-e0282878ec06.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,767750a1-d605-4b74-992a-e0282878ec06.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=767750a1-d605-4b74-992a-e0282878ec06</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The <a href="http://msdn.microsoft.com/msdnmag/issues/06/11/default.aspx">November
2006</a> issue has lots of good security articles, which are available online too.
Check out <a href="http://msdn.microsoft.com/msdnmag/issues/06/11/SecureHabits/default.aspx">Security
Habits</a>, <a href="http://msdn.microsoft.com/msdnmag/issues/06/11/ThreatModeling/default.aspx">Threat
Modeling (STRIDE approach)</a>, <a href="http://msdn.microsoft.com/msdnmag/issues/06/11/ExtendingSDL/default.aspx">Extending
SDL</a> or <a href="http://msdn.microsoft.com/msdnmag/issues/06/11/SQLSecurity/default.aspx">SQL
Security</a> to name a few.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=767750a1-d605-4b74-992a-e0282878ec06" />
      </body>
      <title>The Yearly MSDN Magazine Security Issue Has Landed</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,767750a1-d605-4b74-992a-e0282878ec06.aspx</guid>
      <link>http://chrison.net/TheYearlyMSDNMagazineSecurityIssueHasLanded.aspx</link>
      <pubDate>Wed, 01 Nov 2006 12:56:55 GMT</pubDate>
      <description>&lt;p&gt;
The &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/default.aspx"&gt;November
2006&lt;/a&gt; issue has lots of good security articles, which are available online too.
Check out &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/SecureHabits/default.aspx"&gt;Security
Habits&lt;/a&gt;, &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/ThreatModeling/default.aspx"&gt;Threat
Modeling (STRIDE approach)&lt;/a&gt;, &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/ExtendingSDL/default.aspx"&gt;Extending
SDL&lt;/a&gt; or &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/SQLSecurity/default.aspx"&gt;SQL
Security&lt;/a&gt; to name a few.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=767750a1-d605-4b74-992a-e0282878ec06" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,767750a1-d605-4b74-992a-e0282878ec06.aspx</comments>
      <category>.NET</category>
      <category>Security</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=1cd515c2-eab9-4ad8-af5a-67aebe831047</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,1cd515c2-eab9-4ad8-af5a-67aebe831047.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,1cd515c2-eab9-4ad8-af5a-67aebe831047.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=1cd515c2-eab9-4ad8-af5a-67aebe831047</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
          <a href="http://www.sie-sind-da.de/">
            <img src="http://chrison.net/content/binary/RTL-Logo.jpg" border="0" />
          </a>
        </p>
        <p>
Will be there Wednesday &amp; Thursday as ATE (Ask the Experts), so drop by in the
experts zone and say hello!
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=1cd515c2-eab9-4ad8-af5a-67aebe831047" />
      </body>
      <title>Ready to Rock the Launch</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,1cd515c2-eab9-4ad8-af5a-67aebe831047.aspx</guid>
      <link>http://chrison.net/ReadyToRockTheLaunch.aspx</link>
      <pubDate>Mon, 06 Feb 2006 13:56:39 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.sie-sind-da.de/"&gt;&lt;img src="http://chrison.net/content/binary/RTL-Logo.jpg" border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Will be there Wednesday &amp;amp; Thursday as ATE (Ask the Experts), so drop by in the
experts zone and say hello!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=1cd515c2-eab9-4ad8-af5a-67aebe831047" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,1cd515c2-eab9-4ad8-af5a-67aebe831047.aspx</comments>
      <category>.NET</category>
      <category>2 Ohhhh</category>
      <category>SQL Server</category>
      <category>this</category>
      <category>Training and Conferences</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=f661a627-558a-454a-8321-509b4e6e4a44</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,f661a627-558a-454a-8321-509b4e6e4a44.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,f661a627-558a-454a-8321-509b4e6e4a44.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=f661a627-558a-454a-8321-509b4e6e4a44</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
David Litchfield published the paper <a href="http://www.ngssoftware.com/papers/sqlinference.pdf">Data-mining
with SQL Injection and Inference</a> (more NISR <a href="http://www.ngssoftware.com/papers.htm">papers</a>).
From the abstract: <em>When drilling for data via SQL injection there are three classes
of attack – inband, out-of-band and the relatively unknown inference attack. Inband
attacks extract data over the same channel between the client and the web server,
for example, results are embedded in a web page via a union select. Out-of-band attacks
employ a different communications channel to drill for data by using database mail
or HTTP functions for example. Inference attacks stand alone in the fact that no actual
data is transferred – rather, a difference in the way an application behaves can allow
an attacker to infer the value of the data.</em></p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=f661a627-558a-454a-8321-509b4e6e4a44" />
      </body>
      <title>Data-mining with SQL Injection and Inference</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,f661a627-558a-454a-8321-509b4e6e4a44.aspx</guid>
      <link>http://chrison.net/DataminingWithSQLInjectionAndInference.aspx</link>
      <pubDate>Wed, 05 Oct 2005 21:36:51 GMT</pubDate>
      <description>&lt;p&gt;
David Litchfield published the paper &lt;a href="http://www.ngssoftware.com/papers/sqlinference.pdf"&gt;Data-mining
with SQL Injection and Inference&lt;/a&gt; (more NISR &lt;a href="http://www.ngssoftware.com/papers.htm"&gt;papers&lt;/a&gt;).
From the abstract: &lt;em&gt;When drilling for data via SQL injection there are three classes
of attack – inband, out-of-band and the relatively unknown inference attack. Inband
attacks extract data over the same channel between the client and the web server,
for example, results are embedded in a web page via a union select. Out-of-band attacks
employ a different communications channel to drill for data by using database mail
or HTTP functions for example. Inference attacks stand alone in the fact that no actual
data is transferred – rather, a difference in the way an application behaves can allow
an attacker to infer the value of the data.&lt;/em&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=f661a627-558a-454a-8321-509b4e6e4a44" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,f661a627-558a-454a-8321-509b4e6e4a44.aspx</comments>
      <category>Security</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=ee0eefc1-400a-482e-a7ed-05906a000a38</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,ee0eefc1-400a-482e-a7ed-05906a000a38.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,ee0eefc1-400a-482e-a7ed-05906a000a38.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ee0eefc1-400a-482e-a7ed-05906a000a38</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Yesterday, I attended Kevin Cox' talk about database mirroring in SQL Server 2005.
The event was organized by the SQL Server User Group Austria in Vienna, with Peter
Koen (old UG lead) inviting Kevin, and Jaser Elmorsy (new UG lead) organizing
it. Session description for the records: <em>Database mirroring is a new SQL 2005
feature for high availability. What happens if you combine mirroring with other features,
like snapshot and clustering? This presentation will teach you the basics of database
mirroring, then will discuss some advanced topics for common solutions.</em></p>
        <p>
Kevin also pointed us to the <a href="http://blogs.msdn.com/sqlcat/">SQLCAT blog</a> -
CAT being shorthand for Microsoft SQL Server Development Customer Advisory Team. The
description as well as Kevin promised that they will be posting demanding scenarios
and solutions to those in that very blog.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=ee0eefc1-400a-482e-a7ed-05906a000a38" />
      </body>
      <title>SQLUGA: SQL Server 2005 - Database Mirroring</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,ee0eefc1-400a-482e-a7ed-05906a000a38.aspx</guid>
      <link>http://chrison.net/SQLUGASQLServer2005DatabaseMirroring.aspx</link>
      <pubDate>Tue, 06 Sep 2005 05:33:57 GMT</pubDate>
      <description>&lt;p&gt;
Yesterday, I attended Kevin Cox' talk about database mirroring in SQL Server 2005.
The event was organized by the SQL Server User Group Austria in Vienna, with Peter
Koen (old UG lead)&amp;nbsp;inviting Kevin, and Jaser Elmorsy (new UG lead) organizing
it. Session description for the records: &lt;em&gt;Database mirroring is a new SQL 2005
feature for high availability. What happens if you combine mirroring with other features,
like snapshot and clustering? This presentation will teach you the basics of database
mirroring, then will discuss some advanced topics for common solutions.&lt;/em&gt; 
&lt;/p&gt;
&lt;p&gt;
Kevin also pointed us to the &lt;a href="http://blogs.msdn.com/sqlcat/"&gt;SQLCAT blog&lt;/a&gt; -
CAT being shorthand for Microsoft SQL Server Development Customer Advisory Team. The
description as well as Kevin promised that they will be posting demanding scenarios
and solutions to those in that very blog.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=ee0eefc1-400a-482e-a7ed-05906a000a38" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,ee0eefc1-400a-482e-a7ed-05906a000a38.aspx</comments>
      <category>Community</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=7d0370a0-c901-4785-b083-d94c2039ecd1</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,7d0370a0-c901-4785-b083-d94c2039ecd1.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,7d0370a0-c901-4785-b083-d94c2039ecd1.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=7d0370a0-c901-4785-b083-d94c2039ecd1</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
On 12th of August, the Austrian .NET community is hosting a one-day conference on
security, targeted at developers (no surprise here). The topics for <a href="http://www.dotnetcommunityconference.com/tracksandsessions.aspx?ID=7">NCC
2005 A</a> include:
</p>
        <ul>
          <li>
Threat Modeling 
</li>
          <li>
What's new in .NET 2.0 Security 
</li>
          <li>
What's new in SQL Server 2005 Security 
</li>
          <li>
What's new in Windows Vista Security</li>
        </ul>
        <p>
Quite a nice line-up I'd say. This event is supported by Microsoft Austria, so attending
this event is free, except for your time, but I am sure security does warrant a day
of your time! <a href="http://www.dotnetcommunityconference.com/abstract.aspx?ID=7">Sign
up here</a></p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=7d0370a0-c901-4785-b083-d94c2039ecd1" />
      </body>
      <title>Community-driven Security Conference in Vienna, Austria</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,7d0370a0-c901-4785-b083-d94c2039ecd1.aspx</guid>
      <link>http://chrison.net/CommunitydrivenSecurityConferenceInViennaAustria.aspx</link>
      <pubDate>Tue, 02 Aug 2005 13:27:45 GMT</pubDate>
      <description>&lt;p&gt;
On 12th of August, the Austrian .NET community is hosting a one-day conference on
security, targeted at developers (no surprise here). The topics for &lt;a href="http://www.dotnetcommunityconference.com/tracksandsessions.aspx?ID=7"&gt;NCC
2005 A&lt;/a&gt; include:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Threat Modeling 
&lt;li&gt;
What's new in .NET 2.0 Security 
&lt;li&gt;
What's new in SQL Server 2005 Security 
&lt;li&gt;
What's new in Windows Vista Security&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Quite a nice line-up I'd say. This event is supported by Microsoft Austria, so attending
this event is free, except for your time, but I am sure security does warrant a day
of your time! &lt;a href="http://www.dotnetcommunityconference.com/abstract.aspx?ID=7"&gt;Sign
up here&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=7d0370a0-c901-4785-b083-d94c2039ecd1" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,7d0370a0-c901-4785-b083-d94c2039ecd1.aspx</comments>
      <category>.NET</category>
      <category>2 Ohhhh</category>
      <category>Community</category>
      <category>Security</category>
      <category>SQL Server</category>
      <category>this</category>
      <category>Training and Conferences</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=01449407-98cf-46f7-b39f-a74b3cc072ab</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,01449407-98cf-46f7-b39f-a74b3cc072ab.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,01449407-98cf-46f7-b39f-a74b3cc072ab.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=01449407-98cf-46f7-b39f-a74b3cc072ab</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Two more important downloads in addition to all the other B2 craze:
</p>
        <ul>
          <li>
            <a href="http://www.microsoft.com/downloads/details.aspx?familyid=97383299-e74b-4af8-90c7-fa0ca20a10c4&amp;displaylang=en">SQL
Server 2005 Express April CTP</a>
          </li>
          <li>
            <a href="http://www.microsoft.com/downloads/details.aspx?familyid=3212a9a2-b658-4710-b04e-8a28355f836d&amp;displaylang=en">SQL
Server 2005 Express Manager April CTP</a>
          </li>
        </ul>
        <p>
The # of VPC images starts skyrocketing (now that's a stupid word combination) on
my dev machine...
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=01449407-98cf-46f7-b39f-a74b3cc072ab" />
      </body>
      <title>SQL Server 2005 April CTP </title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,01449407-98cf-46f7-b39f-a74b3cc072ab.aspx</guid>
      <link>http://chrison.net/SQLServer2005AprilCTP.aspx</link>
      <pubDate>Mon, 18 Apr 2005 19:07:02 GMT</pubDate>
      <description>&lt;p&gt;
Two more important downloads in addition to all the other B2 craze:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=97383299-e74b-4af8-90c7-fa0ca20a10c4&amp;amp;displaylang=en"&gt;SQL
Server 2005 Express April CTP&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=3212a9a2-b658-4710-b04e-8a28355f836d&amp;amp;displaylang=en"&gt;SQL
Server 2005 Express Manager April CTP&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The # of VPC images starts skyrocketing (now that's a stupid word combination) on
my dev machine...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=01449407-98cf-46f7-b39f-a74b3cc072ab" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,01449407-98cf-46f7-b39f-a74b3cc072ab.aspx</comments>
      <category>2 Ohhhh</category>
      <category>Cool Download</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=015c72af-0909-4e34-a7b0-774ed0fd9a83</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,015c72af-0909-4e34-a7b0-774ed0fd9a83.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,015c72af-0909-4e34-a7b0-774ed0fd9a83.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=015c72af-0909-4e34-a7b0-774ed0fd9a83</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just seen on <a href="http://ntbugtraq.ntadvice.com/">NTBugtraq</a>, quote from the
Web site: <em>SQLRecon performs both active and passive scans of your network in order
to identify all of the SQL Server/MSDE installations in your enterprise. Due to the
proliferation of personal firewalls, inconsistent network library configurations,
and multiple-instance support, SQL Server installations are becoming increasingly
difficult to discover, assess, and maintain.</em></p>
        <p>
          <em>SQLRecon is designed to remedy this problem by combining all known means of SQL
Server/MSDE discovery into a single tool which can be used to ferret-out servers you
never knew existed on your network so you can properly secure them.</em>
        </p>
        <p>
Didn't yet have time to try <a href="http://www.specialopssecurity.com/labs/sqlrecon/">SQLRecon</a> myself,
but sure will. 
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=015c72af-0909-4e34-a7b0-774ed0fd9a83" />
      </body>
      <title>SQLRecon 1.0</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,015c72af-0909-4e34-a7b0-774ed0fd9a83.aspx</guid>
      <link>http://chrison.net/SQLRecon10.aspx</link>
      <pubDate>Tue, 12 Apr 2005 15:08:54 GMT</pubDate>
      <description>&lt;p&gt;
Just seen on &lt;a href="http://ntbugtraq.ntadvice.com/"&gt;NTBugtraq&lt;/a&gt;, quote from the
Web site: &lt;em&gt;SQLRecon performs both active and passive scans of your network in order
to identify all of the SQL Server/MSDE installations in your enterprise. Due to the
proliferation of personal firewalls, inconsistent network library configurations,
and multiple-instance support, SQL Server installations are becoming increasingly
difficult to discover, assess, and maintain.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;SQLRecon is designed to remedy this problem by combining all known means of SQL
Server/MSDE discovery into a single tool which can be used to ferret-out servers you
never knew existed on your network so you can properly secure them.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
Didn't yet have time to try &lt;a href="http://www.specialopssecurity.com/labs/sqlrecon/"&gt;SQLRecon&lt;/a&gt;&amp;nbsp;myself,
but sure will. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=015c72af-0909-4e34-a7b0-774ed0fd9a83" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,015c72af-0909-4e34-a7b0-774ed0fd9a83.aspx</comments>
      <category>Cool Download</category>
      <category>Security</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=5b0c3123-8953-441c-8cd6-6af8a1144dbe</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,5b0c3123-8953-441c-8cd6-6af8a1144dbe.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,5b0c3123-8953-441c-8cd6-6af8a1144dbe.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=5b0c3123-8953-441c-8cd6-6af8a1144dbe</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The schedule for <a href="http://msdn.microsoft.com/SQL/2005Webcasts/">SQL Server
2005 Web casts</a> is quite packed in December:
</p>
        <ul>
          <li>
Webcast 12/6: Overview of the new Developer features in SQL Server 2005—Level
200</li>
          <li>
Webcast 12/6: Introducing the New SQL Server Management Studio—Level 100</li>
          <li>
Webcast 12/6: SQL Server 2005 as a .NET Runtime Host—Level 100</li>
          <li>
Webcast 12/7: T-SQL Enhancements in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/7: Introducing XML in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/7: Introducing ADO.NET 2.0 for SQL Server 2005—Level 200</li>
          <li>
Webcast 12/8:The New Security Model in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/8: Introducing Web Services in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/8: Introducing Service Broker in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/9: Introducing Reporting Services for SQL Server 2005—Level 200</li>
          <li>
Webcast 12/9: Introducing SQL Server Integration Services for SQL Server 2005—Level
200</li>
          <li>
Webcast 12/9: Introducing SQL Server 2005 Analysis Services for Developers—Level
200</li>
          <li>
Webcast 12/10: Introducing Full-Text Search in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/10: Introducing Replication in SQL Server 2005—Level 200</li>
          <li>
Webcast 12/10: Introducing Notification Services in SQL Server 2005—Level 200</li>
        </ul>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=5b0c3123-8953-441c-8cd6-6af8a1144dbe" />
      </body>
      <title>December SQL Server 2005 Webcasts</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,5b0c3123-8953-441c-8cd6-6af8a1144dbe.aspx</guid>
      <link>http://chrison.net/DecemberSQLServer2005Webcasts.aspx</link>
      <pubDate>Thu, 04 Nov 2004 16:25:13 GMT</pubDate>
      <description>&lt;p&gt;
The schedule for &lt;a href="http://msdn.microsoft.com/SQL/2005Webcasts/"&gt;SQL Server
2005 Web casts&lt;/a&gt; is quite packed in December:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Webcast 12/6: Overview of the new Developer features in SQL Server 2005&amp;#8212;Level
200&lt;/li&gt;
&lt;li&gt;
Webcast 12/6: Introducing the New SQL Server Management Studio&amp;#8212;Level 100&lt;/li&gt;
&lt;li&gt;
Webcast 12/6: SQL Server 2005 as a .NET Runtime Host&amp;#8212;Level 100&lt;/li&gt;
&lt;li&gt;
Webcast 12/7: T-SQL Enhancements in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/7: Introducing XML in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/7: Introducing ADO.NET 2.0 for SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/8:The New Security Model in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/8: Introducing Web Services in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/8: Introducing Service Broker in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/9: Introducing Reporting Services for SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/9: Introducing SQL Server Integration Services for SQL Server 2005&amp;#8212;Level
200&lt;/li&gt;
&lt;li&gt;
Webcast 12/9: Introducing SQL Server 2005 Analysis Services for Developers&amp;#8212;Level
200&lt;/li&gt;
&lt;li&gt;
Webcast 12/10: Introducing Full-Text Search in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/10: Introducing Replication in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;li&gt;
Webcast 12/10: Introducing Notification Services in SQL Server 2005&amp;#8212;Level 200&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=5b0c3123-8953-441c-8cd6-6af8a1144dbe" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,5b0c3123-8953-441c-8cd6-6af8a1144dbe.aspx</comments>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=53affc80-451a-4ead-8535-620eca734ce7</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,53affc80-451a-4ead-8535-620eca734ce7.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,53affc80-451a-4ead-8535-620eca734ce7.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=53affc80-451a-4ead-8535-620eca734ce7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
With all the hoopla about VS.NET 2005 and SQL Server 2005, people sometimes forget
that we still have to solve problems using today's technologies. The <a href="http://www.microsoft.com/downloads/details.aspx?familyid=824400af-315a-4c97-8eb2-a6047c42b222&amp;displaylang=en">SQL
Server 2000 Full-Text Search Deployment White Paper</a> is a document that helps you
better understand a technology that is already out there, focusing on the following
areas:
</p>
        <ul>
          <li>
            <!--StartFragment -->
            <font class="detailsContent">The hardware and operating system
requirements for efficient full-text 
<br />
search performance.</font>
          </li>
          <li>
            <font class="detailsContent">Full-text search architecture.</font>
          </li>
          <li>
            <font class="detailsContent">Full-text search administration.</font>
          </li>
          <li>
            <font class="detailsContent">How to monitor full-text search performance.</font>
          </li>
        </ul>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=53affc80-451a-4ead-8535-620eca734ce7" />
      </body>
      <title>SQL Server 2000 Full-Text Search Deployment White Paper</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,53affc80-451a-4ead-8535-620eca734ce7.aspx</guid>
      <link>http://chrison.net/SQLServer2000FullTextSearchDeploymentWhitePaper.aspx</link>
      <pubDate>Sun, 03 Oct 2004 16:22:28 GMT</pubDate>
      <description>&lt;p&gt;
With all the hoopla about VS.NET 2005 and SQL Server 2005, people sometimes forget
that we still have to solve problems using today's technologies. The &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=824400af-315a-4c97-8eb2-a6047c42b222&amp;amp;displaylang=en"&gt;SQL
Server 2000 Full-Text Search Deployment White Paper&lt;/a&gt; is a document that helps you
better understand a technology that is already out there, focusing on the following
areas:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;!--StartFragment --&gt;&lt;font class=detailsContent&gt;The hardware and operating system
requirements for efficient full-text 
&lt;br&gt;
search performance.&lt;/font&gt; 
&lt;li&gt;
&lt;font class=detailsContent&gt;Full-text search architecture.&lt;/font&gt; 
&lt;li&gt;
&lt;font class=detailsContent&gt;Full-text search administration.&lt;/font&gt; 
&lt;li&gt;
&lt;font class=detailsContent&gt;How to monitor full-text search performance.&lt;/font&gt; 
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=53affc80-451a-4ead-8535-620eca734ce7" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,53affc80-451a-4ead-8535-620eca734ce7.aspx</comments>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=ed9bff9a-39e9-4ee4-9e24-6792ff390997</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,ed9bff9a-39e9-4ee4-9e24-6792ff390997.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,ed9bff9a-39e9-4ee4-9e24-6792ff390997.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ed9bff9a-39e9-4ee4-9e24-6792ff390997</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
On Thursday, <a href="http://weblogs.asp.net/Peter_Koen">Peter</a> did his SQL Server
2005 HOL for members of the SQL Server User Group Austria:
</p>
        <p>
          <img height="493" src="http://chrison.net/content/binary/yukontalk04_1.jpg" width="400" border="0" />
        </p>
        <p>
His workshop encompassed a tour of the new Studio management tool and for example TSQL
enhancements (CTE's shown on the following photo):
</p>
        <p>
          <img height="402" src="http://chrison.net/content/binary/yukontalk04_2.jpg" width="550" border="0" />
        </p>
        <p>
Aside from just watching, I did the workshop part for SQLCLR features - writing functions,
stored procedures, UDTs (user-defined datatypes), aggregates and triggers in .NET
code. One cool sample is a function for email verification - try to do this in TSQL!
</p>
        <p>
          <img height="279" src="http://chrison.net/content/binary/yukontalk04_3.jpg" width="550" border="0" />
        </p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=ed9bff9a-39e9-4ee4-9e24-6792ff390997" />
      </body>
      <title>SSUGA Summer Academy: Microsoft SQL Server 2005 Hands-On Lab </title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,ed9bff9a-39e9-4ee4-9e24-6792ff390997.aspx</guid>
      <link>http://chrison.net/SSUGASummerAcademyMicrosoftSQLServer2005HandsOnLab.aspx</link>
      <pubDate>Fri, 10 Sep 2004 15:23:34 GMT</pubDate>
      <description>&lt;p&gt;
On Thursday, &lt;a href="http://weblogs.asp.net/Peter_Koen"&gt;Peter&lt;/a&gt; did his SQL Server
2005 HOL for members of the SQL Server User Group Austria:
&lt;/p&gt;
&lt;p&gt;
&lt;img height=493 src="http://chrison.net/content/binary/yukontalk04_1.jpg" width=400 border=0&gt;
&lt;/p&gt;
&lt;p&gt;
His workshop encompassed a tour of the new Studio management tool and&amp;nbsp;for example&amp;nbsp;TSQL
enhancements (CTE's shown on the following photo):
&lt;/p&gt;
&lt;p&gt;
&lt;img height=402 src="http://chrison.net/content/binary/yukontalk04_2.jpg" width=550 border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Aside from just watching, I did the workshop part for SQLCLR features - writing functions,
stored procedures, UDTs (user-defined datatypes), aggregates and triggers in .NET
code. One cool sample is a function for email verification - try to do this in TSQL!
&lt;/p&gt;
&lt;p&gt;
&lt;img height=279 src="http://chrison.net/content/binary/yukontalk04_3.jpg" width=550 border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=ed9bff9a-39e9-4ee4-9e24-6792ff390997" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,ed9bff9a-39e9-4ee4-9e24-6792ff390997.aspx</comments>
      <category>SQL Server</category>
      <category>Training and Conferences</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=62c1b23e-43bf-4f35-aede-7e3570fa099e</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,62c1b23e-43bf-4f35-aede-7e3570fa099e.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,62c1b23e-43bf-4f35-aede-7e3570fa099e.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=62c1b23e-43bf-4f35-aede-7e3570fa099e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This <a href="http://msdn.microsoft.com/library/en-us/dnsql90/html/sql_ovyukondev.asp">overview
article</a> at the SQL Server Developer Center provides a nice &amp; quick rundown
of new features for database development in Microsoft SQL Server 2005.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=62c1b23e-43bf-4f35-aede-7e3570fa099e" />
      </body>
      <title>An Overview of SQL Server 2005 for the Database Developer</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,62c1b23e-43bf-4f35-aede-7e3570fa099e.aspx</guid>
      <link>http://chrison.net/AnOverviewOfSQLServer2005ForTheDatabaseDeveloper.aspx</link>
      <pubDate>Tue, 03 Aug 2004 09:42:35 GMT</pubDate>
      <description>&lt;p&gt;
This &lt;a href="http://msdn.microsoft.com/library/en-us/dnsql90/html/sql_ovyukondev.asp"&gt;overview
article&lt;/a&gt; at the SQL Server Developer Center provides a nice &amp;amp; quick rundown
of new features for database development in Microsoft SQL Server 2005.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=62c1b23e-43bf-4f35-aede-7e3570fa099e" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,62c1b23e-43bf-4f35-aede-7e3570fa099e.aspx</comments>
      <category>Newsbites</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://chrison.net/Trackback.aspx?guid=e7b0be80-023b-49d9-b6a5-1f549670f9a5</trackback:ping>
      <pingback:server>http://chrison.net/pingback.aspx</pingback:server>
      <pingback:target>http://chrison.net/PermaLink,guid,e7b0be80-023b-49d9-b6a5-1f549670f9a5.aspx</pingback:target>
      <dc:creator>Christoph Wille</dc:creator>
      <wfw:comment>http://chrison.net/CommentView,guid,e7b0be80-023b-49d9-b6a5-1f549670f9a5.aspx</wfw:comment>
      <wfw:commentRss>http://chrison.net/SyndicationService.asmx/GetEntryCommentsRss?guid=e7b0be80-023b-49d9-b6a5-1f549670f9a5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Microsoft has a new <a href="http://www.microsoft.com/sql/2005/default.asp">site dedicated
to SQL Server 2005</a> (including the Express edition). Note though that only the
Express Beta 2 can be downloaded freely.
</p>
        <img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=e7b0be80-023b-49d9-b6a5-1f549670f9a5" />
      </body>
      <title>Introducing SQL Server 2005</title>
      <guid isPermaLink="false">http://chrison.net/PermaLink,guid,e7b0be80-023b-49d9-b6a5-1f549670f9a5.aspx</guid>
      <link>http://chrison.net/IntroducingSQLServer2005.aspx</link>
      <pubDate>Tue, 27 Jul 2004 11:22:02 GMT</pubDate>
      <description>&lt;p&gt;
Microsoft has a new &lt;a href="http://www.microsoft.com/sql/2005/default.asp"&gt;site dedicated
to SQL Server 2005&lt;/a&gt; (including the Express edition). Note though that only the
Express Beta 2 can be downloaded freely.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://chrison.net/aggbug.ashx?id=e7b0be80-023b-49d9-b6a5-1f549670f9a5" /&gt;</description>
      <comments>http://chrison.net/CommentView,guid,e7b0be80-023b-49d9-b6a5-1f549670f9a5.aspx</comments>
      <category>SQL Server</category>
    </item>
  </channel>
</rss>