<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Schmidi's Blog</title>
        <link>http://schmidi.bloggingon.net/Default.aspx</link>
        <description>.NET, SQL-Server,Windows,...</description>
        <language>de-CH</language>
        <copyright>Schmid</copyright>
        <managingEditor>chmav@gmx.ch</managingEditor>
        <generator>Subtext Version 1.9.5.177</generator>
        <image>
            <title>Schmidi's Blog</title>
            <url>http://schmidi.bloggingon.net/images/RSS2Image.gif</url>
            <link>http://schmidi.bloggingon.net/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Debugger für IIS mit Icon starten</title>
            <category>.NET</category>
            <link>http://schmidi.bloggingon.net/archive/2008/03/30/debugger-für-iis-mit-icon-starten.aspx</link>
            <description>Damit man für das Anhängen des Debuggers von Visual Studio nicht immer über zuerst den ASPNETWP auswählen muss, kann man mit einem Makro automatisch an den gestarteten WP anhängen. Eine sehr gute Beschreibung dazu gibts hier:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.andrewconnell.com/blog/archive/2006/05/10/3110.aspx"&gt;http://www.andrewconnell.com/blog/archive/2006/05/10/3110.aspx&lt;/a&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/34.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Schmid</dc:creator>
            <guid>http://schmidi.bloggingon.net/archive/2008/03/30/debugger-für-iis-mit-icon-starten.aspx</guid>
            <pubDate>Sun, 30 Mar 2008 18:55:13 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/34.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2008/03/30/debugger-für-iis-mit-icon-starten.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/34.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/34.aspx</trackback:ping>
        </item>
        <item>
            <title>Debugger aus Code heraus starten</title>
            <category>.NET</category>
            <link>http://schmidi.bloggingon.net/archive/2008/03/19/debugger-aus-code-heraus-starten.aspx</link>
            <description>Mit folgender Funktion kann der Debugger aus dem Code heraus gestartet werden:&lt;br /&gt;
&lt;br /&gt;
System.Diagnostics.Debugger.Break()&lt;img src="http://schmidi.bloggingon.net/aggbug/33.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Schmid</dc:creator>
            <guid>http://schmidi.bloggingon.net/archive/2008/03/19/debugger-aus-code-heraus-starten.aspx</guid>
            <pubDate>Wed, 19 Mar 2008 19:07:59 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/33.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2008/03/19/debugger-aus-code-heraus-starten.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/33.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/33.aspx</trackback:ping>
        </item>
        <item>
            <title>RecoveryModel aller DB's anzeigen</title>
            <category>SQL</category>
            <link>http://schmidi.bloggingon.net/archive/2007/10/17/recoverymodel-aller-dbs-anzeigen.aspx</link>
            <description>So, lange ist es her seit meinem letzten Posting. Dazwischen war einiges los. Es trat etwas kleines(Larissa) in mein Leben. &lt;br /&gt;&lt;br /&gt;Mit ihr hat sich zwar vieles geändert, aber eben doch nicht alles.&lt;br /&gt;&lt;br /&gt;Um das RecoveryModel alles DB's auf einem SQL-Server zu prüfen, kann man folgendes Select nutzen:&lt;br /&gt;&lt;br /&gt;select name,DATABASEPROPERTYEX (name, 'Recovery')&lt;br /&gt;from sysdatabases&lt;br /&gt;where category in ('0', '1','16')&lt;br /&gt;order by name&lt;br /&gt;&lt;br /&gt;Besten Dank an Alex&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/1.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/10/17/recoverymodel-aller-dbs-anzeigen.aspx</guid>
            <pubDate>Wed, 17 Oct 2007 19:18:31 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/1.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/10/17/recoverymodel-aller-dbs-anzeigen.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/1.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/1.aspx</trackback:ping>
        </item>
        <item>
            <title>Inhalt einer msi-Setupdatei extrahieren</title>
            <category>.NET</category>
            <link>http://schmidi.bloggingon.net/archive/2007/04/04/inhalt-einer-msi-setupdatei-extrahieren.aspx</link>
            <description>Um den Inhalt einer MSI-Datei zu extrahieren, kann der folgende Befehl &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;msiexec /a "C:\datei.msi" /qb TARGETDIR=C:\extrahierte_dateien&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;p&gt;Besten Dank für den Tipp an Andreas Liebert&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;a href="http://webmail.tbwil.ch/horde/imp/compose.php?to=Andreas+Liebert+%3Cbounce-LASoftware2000%40glengamoi.com%3E&amp;amp;thismailbox=INBOX" onmouseout="window.status='';" onmouseover="window.status='Neue Nachricht (bounce-LASoftware2000@glengamoi.com)'; return true;"&gt;&lt;/a&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/2.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/04/04/inhalt-einer-msi-setupdatei-extrahieren.aspx</guid>
            <pubDate>Wed, 04 Apr 2007 06:30:17 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/2.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/04/04/inhalt-einer-msi-setupdatei-extrahieren.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/2.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/2.aspx</trackback:ping>
        </item>
        <item>
            <title>sn.exe bringt "Zugriff verweigert"-Fehler</title>
            <category>.NET</category>
            <link>http://schmidi.bloggingon.net/archive/2007/03/29/sn.exe-bringt-zugriff-verweigert-fehler.aspx</link>
            <description>Ich konnte weder mit VS 2005 noch sn.exe ein keypair für die Signierung erzeugen.&lt;br /&gt;Wenn ich &lt;br /&gt;sn -k meinkey.key&lt;br /&gt;ausgeführt habe, kam die Meldung:&lt;br /&gt;Ein Strong Name-Schlüsselpaar konnte nicht generiert werden -- Zugriff verweigert&lt;br /&gt;Wenn dem Verzeichnis &lt;br /&gt;c:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Microsoft\Crypto\RSA\MachineKeys&lt;br /&gt; die nötigen Rechte zugewiesen werden, funktioniert es.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/3.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/03/29/sn.exe-bringt-zugriff-verweigert-fehler.aspx</guid>
            <pubDate>Thu, 29 Mar 2007 06:30:53 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/3.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/03/29/sn.exe-bringt-zugriff-verweigert-fehler.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/3.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/3.aspx</trackback:ping>
        </item>
        <item>
            <title>Welcher w3wp gehört zu welchem AppPool!!</title>
            <category>IIS</category>
            <link>http://schmidi.bloggingon.net/archive/2007/03/22/welcher-w3wp-gehoert-zu-welchem-apppool.aspx</link>
            <description>Auf dem Win2003 kann man dazu dieses Script nutzen:&lt;br /&gt;
cscript C:\WINDOWS\system32\iisapp.vbs
&lt;p&gt; &lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/4.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Blog Author</dc:creator>
            <guid>http://schmidi.bloggingon.net/archive/2007/03/22/welcher-w3wp-gehoert-zu-welchem-apppool.aspx</guid>
            <pubDate>Thu, 22 Mar 2007 15:04:49 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/4.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/03/22/welcher-w3wp-gehoert-zu-welchem-apppool.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/4.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/4.aspx</trackback:ping>
        </item>
        <item>
            <title>"Konflikt der Sortierung für equal-to..." bei join von Tabellen</title>
            <category>SQL</category>
            <link>http://schmidi.bloggingon.net/archive/2007/03/19/konflikt-der-sortierung-fuer-equal-to.-bei-join-von-tabellen.aspx</link>
            <description>Wenn bei einem Join von zwei Tabellen in zwei unterschiedlichen Datenbanken die Meldung "Konflikt der Sortierung für equal-to operation kann nicht aufgelöst&lt;br /&gt;
werden" erscheint, kann man das Problem mit folgender Erweiterung lösen:&lt;br /&gt;
&lt;br /&gt;
.... ON DB1.dbo.Tabelle1.Spalte1 COLLATE&lt;br /&gt;
SQL_Latin1_General_CP1_CI_AS = DB2.dbo.Tabelle1.Spalte2&lt;br /&gt;
&lt;br /&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/5.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Blog Author</dc:creator>
            <guid>http://schmidi.bloggingon.net/archive/2007/03/19/konflikt-der-sortierung-fuer-equal-to.-bei-join-von-tabellen.aspx</guid>
            <pubDate>Mon, 19 Mar 2007 08:53:07 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/5.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/03/19/konflikt-der-sortierung-fuer-equal-to.-bei-join-von-tabellen.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/5.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/5.aspx</trackback:ping>
        </item>
        <item>
            <title>Dienst deinstallieren</title>
            <category>Windows</category>
            <link>http://schmidi.bloggingon.net/archive/2007/03/14/dienst-deinstallieren.aspx</link>
            <description>Wenn man auf einem Win2000er-Server einen Dienst deinstallieren(oder auch verwalten) möchte, kann man den &lt;a href="http://www.nttools-online.de/deutsch/srvmgr.htm"&gt;Service Manager NT&lt;/a&gt; nutzen.&lt;br /&gt;&lt;br /&gt;Auf Win2003 hat es bei mir nicht funktioniert. Dann kann das Tool sc.exe genutzt werden.&lt;a href="ftp://ftp.microsoft.com/reskit/win2000/sc.zip"&gt;ftp://ftp.microsoft.com/reskit/win2000/sc.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;zum Entfernen: sc delete SERVICENAME&lt;br /&gt;&lt;br /&gt;Die Befehlsreferenz gibts auch bei &lt;a href="http://www.microsoft.com/technet/prodtechnol/windowsserver2003/de/library/ServerHelp/0a658e97-51d5-4109-b461-a474c799964e.mspx?mfr=true"&gt;Microsoft&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/6.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/03/14/dienst-deinstallieren.aspx</guid>
            <pubDate>Wed, 14 Mar 2007 19:25:20 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/6.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/03/14/dienst-deinstallieren.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/6.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/6.aspx</trackback:ping>
        </item>
        <item>
            <title>Firefox  kann rechnen</title>
            <category>Allgemein</category>
            <link>http://schmidi.bloggingon.net/archive/2007/03/09/firefox--kann-rechnen.aspx</link>
            <description>Da Google ja rechnen kann, habe ich mal meine Rechnung in die Suche bei Firefox eingegeben und wollte so zu Google gelangen für die Rechnung. Nichts da. Die Vorschlagfunktion bringt schon das Resultat.&lt;br /&gt;&lt;br /&gt;Nur gut, dass es nicht mehrere Vorschläge gibt :-)&lt;br /&gt;&lt;br /&gt;&lt;img src="http://schmidi.bloggingon.net/Images/schmidi_bloggingon_net/googlerechner.jpg" alt="googlerechner.jpg" border="0" height="80" width="343" /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/7.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/03/09/firefox--kann-rechnen.aspx</guid>
            <pubDate>Fri, 09 Mar 2007 12:40:27 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/7.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/03/09/firefox--kann-rechnen.aspx#feedback</comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/7.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/7.aspx</trackback:ping>
        </item>
        <item>
            <title>Insert-Script aus Daten erzeugen</title>
            <category>SQL</category>
            <link>http://schmidi.bloggingon.net/archive/2007/01/30/insert-script-aus-daten-erzeugen.aspx</link>
            <description>Wenn man aus gewissen Daten in einer SQL Server-DB die nötigen Insert-Scripte(mit diesen Daten) erzeugen möchte, kann man die Stored Procedure von &lt;a href="http://vyaskn.tripod.com/code.htm#inserts"&gt;Vyas&lt;/a&gt; einsetzen. Auf dieser Seite sind die Scripte für SQL Server 2000 und SQL Server 2005 und Beispiele zu finden.&lt;br /&gt;Mit folgendem Beispeil kann man z.B. aus der Tabelle TdAddresses alle Adressen mit Scripten erzeugen lassen, welche im Namen 'Müller' enthalten.&lt;br /&gt;EXEC sp_generate_inserts 'tdAddresses', @From = "from tdAddresses where matchcode like '%Müller%'"&lt;br /&gt;&lt;br /&gt;Das Resultat ist dann wie folgt(ohne die ... )&lt;br /&gt;INSERT INTO [tdAddresses] ([AddressID],[AddressNumber],[Matchcode],[Name1],...])VALUES(76,'AD00044','Marco Müller, Nordstrand','Müller, Marco',...)&lt;br /&gt;&lt;br /&gt;Ist genau das, was ich schon lange gesucht habe :-)&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;img src="http://schmidi.bloggingon.net/aggbug/8.aspx" width="1" height="1" /&gt;</description>
            <guid>http://schmidi.bloggingon.net/archive/2007/01/30/insert-script-aus-daten-erzeugen.aspx</guid>
            <pubDate>Tue, 30 Jan 2007 06:53:44 GMT</pubDate>
            <wfw:comment>http://schmidi.bloggingon.net/comments/8.aspx</wfw:comment>
            <comments>http://schmidi.bloggingon.net/archive/2007/01/30/insert-script-aus-daten-erzeugen.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://schmidi.bloggingon.net/comments/commentRss/8.aspx</wfw:commentRss>
            <trackback:ping>http://schmidi.bloggingon.net/services/trackbacks/8.aspx</trackback:ping>
        </item>
    </channel>
</rss>