<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Alex Duggleby's Palace of Words</title>
	<atom:link href="http://alexduggleby.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexduggleby.com</link>
	<description>Just me, you and a cup of tee...</description>
	<pubDate>Sun, 20 Jul 2008 00:21:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Off-Topic: T-SQL: Replace all occurrences in all columns in all tables? by Anja</title>
		<link>http://alexduggleby.com/2008/05/09/off-topic-t-sql-replace-all-occurrences-in-all-columns-in-all-tables/#comment-959</link>
		<dc:creator>Anja</dc:creator>
		<pubDate>Sun, 06 Jul 2008 21:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=107#comment-959</guid>
		<description>Hi Alex,
Just wanted to thank you for posting your SQL code. Our database was injected with malicious scripts and your code helped me clean up hundreds of thousands of records. 

You saved my day! :)
Anja</description>
		<content:encoded><![CDATA[<p>Hi Alex,<br />
Just wanted to thank you for posting your SQL code. Our database was injected with malicious scripts and your code helped me clean up hundreds of thousands of records. </p>
<p>You saved my day! :)<br />
Anja</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Off-Topic: T-SQL: Replace all occurrences in all columns in all tables? by Alex Duggleby</title>
		<link>http://alexduggleby.com/2008/05/09/off-topic-t-sql-replace-all-occurrences-in-all-columns-in-all-tables/#comment-950</link>
		<dc:creator>Alex Duggleby</dc:creator>
		<pubDate>Wed, 25 Jun 2008 12:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=107#comment-950</guid>
		<description>Hi Raj,

is it possible that the field you are using is a NTEXT or TEXT field? The script will not work on those...

(same goes for any NVARCHAR(MAX) or fields &#62; 4000 length)

Bye,
Alex</description>
		<content:encoded><![CDATA[<p>Hi Raj,</p>
<p>is it possible that the field you are using is a NTEXT or TEXT field? The script will not work on those&#8230;</p>
<p>(same goes for any NVARCHAR(MAX) or fields &gt; 4000 length)</p>
<p>Bye,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Off-Topic: T-SQL: Replace all occurrences in all columns in all tables? by Raj</title>
		<link>http://alexduggleby.com/2008/05/09/off-topic-t-sql-replace-all-occurrences-in-all-columns-in-all-tables/#comment-949</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Wed, 25 Jun 2008 08:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=107#comment-949</guid>
		<description>Did not work for me. I was trying to replace a script tag that came in from somewhere and though I got no errors after running the script, the string I required to replace was not replaced.</description>
		<content:encoded><![CDATA[<p>Did not work for me. I was trying to replace a script tag that came in from somewhere and though I got no errors after running the script, the string I required to replace was not replaced.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Off-Topic: T-SQL: Replace all occurrences in all columns in all tables? by Alex Duggleby</title>
		<link>http://alexduggleby.com/2008/05/09/off-topic-t-sql-replace-all-occurrences-in-all-columns-in-all-tables/#comment-938</link>
		<dc:creator>Alex Duggleby</dc:creator>
		<pubDate>Tue, 20 May 2008 12:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=107#comment-938</guid>
		<description>Hi Mike,

thanks, you are absolutely right. Must have crept into the script while making it 'bloggable' :)

The 4000 is a bit of a limit, but if I remember right I can't concat nvarchar(max) values, so I had to do it that way.

Thanks,
Alex</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>thanks, you are absolutely right. Must have crept into the script while making it &#8216;bloggable&#8217; :)</p>
<p>The 4000 is a bit of a limit, but if I remember right I can&#8217;t concat nvarchar(max) values, so I had to do it that way.</p>
<p>Thanks,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Off-Topic: T-SQL: Replace all occurrences in all columns in all tables? by Mike</title>
		<link>http://alexduggleby.com/2008/05/09/off-topic-t-sql-replace-all-occurrences-in-all-columns-in-all-tables/#comment-937</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 20 May 2008 01:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=107#comment-937</guid>
		<description>Thanks for posting the script!

I had to change line 69 to remove the quotes around the column as the first parameter to the Replace function:

SET @temp  = @temp  + ' = REPLACE(' +  @colName + ','''

Otherwise the column name would show up in the field after running the proc.

I also found out out that the output of the script for one of my tables was being truncated... probably a limitation of the NVARCHAR(4000) size.  Because I only needed to update specific columns, I was able to manually edit the script.</description>
		<content:encoded><![CDATA[<p>Thanks for posting the script!</p>
<p>I had to change line 69 to remove the quotes around the column as the first parameter to the Replace function:</p>
<p>SET @temp  = @temp  + &#8216; = REPLACE(&#8217; +  @colName + &#8216;,&#8221;&#8217;</p>
<p>Otherwise the column name would show up in the field after running the proc.</p>
<p>I also found out out that the output of the script for one of my tables was being truncated&#8230; probably a limitation of the NVARCHAR(4000) size.  Because I only needed to update specific columns, I was able to manually edit the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jetbrains dotTrace: Profiling VS2008 Web Apps by akhilesh</title>
		<link>http://alexduggleby.com/2008/03/11/jetbrains-dottrace-profiling-vs2008-web-apps/#comment-931</link>
		<dc:creator>akhilesh</dc:creator>
		<pubDate>Tue, 29 Apr 2008 09:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=101#comment-931</guid>
		<description>is there any way to learn how to profile .net 2.0 web applicaition</description>
		<content:encoded><![CDATA[<p>is there any way to learn how to profile .net 2.0 web applicaition</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sync Framework Tutorial - Part #5 - Some client provider schema details by Aphex</title>
		<link>http://alexduggleby.com/2007/12/16/sync-framework-tutorial-part-5-some-client-provider-schema-details/#comment-927</link>
		<dc:creator>Aphex</dc:creator>
		<pubDate>Fri, 18 Apr 2008 19:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.com/2007/12/16/sync-framework-tutorial-part-5-some-client-provider-schema-details/#comment-927</guid>
		<description>Nice tutorial, well explained. 
Thanks</description>
		<content:encoded><![CDATA[<p>Nice tutorial, well explained.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Turning a class library project into a MSTest project (or using MBUnit, MSTest and other frameworks in one project) by Enzo Contini</title>
		<link>http://alexduggleby.com/2008/02/19/turning-a-class-library-project-into-a-mstest-project-or-using-mbunit-mstest-and-other-frameworks-in-one-project/#comment-926</link>
		<dc:creator>Enzo Contini</dc:creator>
		<pubDate>Fri, 18 Apr 2008 15:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.com/2008/02/19/turning-a-class-library-project-into-a-mstest-project-or-using-mbunit-mstest-and-other-frameworks-in-one-project/#comment-926</guid>
		<description>Thank you! I was just wondering why I could not make to run a unit test in one my class library project!!

Enzo</description>
		<content:encoded><![CDATA[<p>Thank you! I was just wondering why I could not make to run a unit test in one my class library project!!</p>
<p>Enzo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on dot.net Magazin 5.08 Sync Framework Article and File Sync with VB.net by Rene Wack</title>
		<link>http://alexduggleby.com/2008/04/01/dotnet-magazin-508-sync-framework-article-and-file-sync-with-vbnet/#comment-920</link>
		<dc:creator>Rene Wack</dc:creator>
		<pubDate>Fri, 04 Apr 2008 13:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.wordpress.com/?p=104#comment-920</guid>
		<description>Sehr geehrter Herr Duggleby,

ich bin Abonnent des dot.Net Amgazins und habe mit Interesse den Artikel dot.net Magazin 5.08 Sync Framework Article and File Sync with VB.net gelesen.

Da ich jetzt auch über VS 2008 verfüge, wollte ich das Synchronisieren gleich mal ausprobieren.

Hierzu habe ich eine kurze Frage.

Ich will das Framework für die Synchronisation unsere SQL Server 2005 Webdatenbank mit unserer SQL Server 2005 Inhouse Datenbank verwenden. 

Bis jetzt hat mir der Assistent immer eine .sdf Datei beim Client angelegt.

Geht die Synchronisation auch direkt zwischen zwei vollwertigen SQL Servern?
Ist das Framework dafür ausgelegt?
Brauch ich dann die .sdf überhaupt?

Wie kann ich das bewerkstelligen?

Gibt es ggf. bessere Alternativen als das Framework?
Ich will die Daten dabei auch bidirektional abgleichen.

Vielen Dank im voraus für ihre Antwort.


Mit freundlichen Grüßen

Rene Wack</description>
		<content:encoded><![CDATA[<p>Sehr geehrter Herr Duggleby,</p>
<p>ich bin Abonnent des dot.Net Amgazins und habe mit Interesse den Artikel dot.net Magazin 5.08 Sync Framework Article and File Sync with VB.net gelesen.</p>
<p>Da ich jetzt auch über VS 2008 verfüge, wollte ich das Synchronisieren gleich mal ausprobieren.</p>
<p>Hierzu habe ich eine kurze Frage.</p>
<p>Ich will das Framework für die Synchronisation unsere SQL Server 2005 Webdatenbank mit unserer SQL Server 2005 Inhouse Datenbank verwenden. </p>
<p>Bis jetzt hat mir der Assistent immer eine .sdf Datei beim Client angelegt.</p>
<p>Geht die Synchronisation auch direkt zwischen zwei vollwertigen SQL Servern?<br />
Ist das Framework dafür ausgelegt?<br />
Brauch ich dann die .sdf überhaupt?</p>
<p>Wie kann ich das bewerkstelligen?</p>
<p>Gibt es ggf. bessere Alternativen als das Framework?<br />
Ich will die Daten dabei auch bidirektional abgleichen.</p>
<p>Vielen Dank im voraus für ihre Antwort.</p>
<p>Mit freundlichen Grüßen</p>
<p>Rene Wack</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sync Framework: Where does the metadata come from for SqlCeClientSyncProvider (Sync Services for ADO.net 2.0)? by W&#246;chentliche Rundablage: ASP.NET MVC, Silverlight 2, APIs, C#&#8230; &#124; Code-Inside Blog</title>
		<link>http://alexduggleby.com/2008/03/03/sync-framework-where-does-the-metadata-come-from-for-sqlceclientsyncprovider-sync-services-for-adonet-20/#comment-916</link>
		<dc:creator>W&#246;chentliche Rundablage: ASP.NET MVC, Silverlight 2, APIs, C#&#8230; &#124; Code-Inside Blog</dc:creator>
		<pubDate>Mon, 10 Mar 2008 19:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://alexduggleby.com/?p=96#comment-916</guid>
		<description>[...] Sync Framework: Where does the metadata come from for SqlCeClientSyncProvider (Sync Services for ADO... [...]</description>
		<content:encoded><![CDATA[<p>[...] Sync Framework: Where does the metadata come from for SqlCeClientSyncProvider (Sync Services for ADO&#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
