<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Hummelflug</title>
	<atom:link href="http://hummelflug.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hummelflug.wordpress.com</link>
	<description>Im Hummelflug durch die Themen meiner Welt(en).</description>
	<lastBuildDate>Thu, 30 Jul 2009 12:55:11 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='hummelflug.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/38d522e4ccdbff0799d38c903caf2761?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Hummelflug</title>
		<link>http://hummelflug.wordpress.com</link>
	</image>
			<item>
		<title>Automatisches Erzeugen eines Datenbankdiagrams aus einer MSSQL-Datenbank mit Hilfe von YED</title>
		<link>http://hummelflug.wordpress.com/2009/07/30/datenbankdiagram-mit-yed/</link>
		<comments>http://hummelflug.wordpress.com/2009/07/30/datenbankdiagram-mit-yed/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 12:17:36 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=91</guid>
		<description><![CDATA[Mit dem Microsoft SQL Server Management Studio (Express) kann man seiner Datenbank unter dem Punkt „Database Diagrams“ eine grafische Darstellung der Datenbank hinzufügen.
Soweit so gut – nur sieht das dann meistens so aus:
 
Also nicht gerade übersichtlich. Und das Ganze per Hand in eine schöne Form zu bringen ist sehr mühselig.
Aber es gibt ein schönes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=91&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Mit dem Microsoft SQL Server Management Studio (Express) kann man seiner Datenbank unter dem Punkt „Database Diagrams“ eine grafische Darstellung der Datenbank hinzufügen.</p>
<p>Soweit so gut – nur sieht das dann meistens so aus:</p>
<p><img src="http://hummelflug.files.wordpress.com/2009/07/ermsql.jpg?w=300&#038;h=235" alt="ERMSQL" title="ERMSQL" width="300" height="235" class="alignnone size-medium wp-image-92" /> </p>
<p>Also nicht gerade übersichtlich. Und das Ganze per Hand in eine schöne Form zu bringen ist sehr mühselig.</p>
<p><img src="http://www.yworks.com/img/logo.gif" alt="" align="left" />Aber es gibt ein schönes <a href="http://www.yworks.com/de/products_yed_about.html">Freewareprogramm: YED</a>. Damit kann man sehr schön Diagramme machen. Und vor allem: es kann die Elemente automatisch anordnen, so dass sie (einigermaßen) übersichtlich dargestellt werden. Aber leider kann es keine Datenbankstruktur auslesen…</p>
<p>Aber wozu ist man Programmierer….</p>
<p>Nachfolgendes C#.net Konsolen-Programm liest aus einer Datenbank die Tabellen aus, holt sich die Beziehungen (Relationships) der Tabellen untereinander und speichert es in Form einer *.gml Datei ab.<br />
<code></p>
<div class="csharp" style="overflow:auto;font-family:monospace;color:#006;border:1px solid #d0d0d0;background-color:#f0f0f0;height:250px;width:500px;">
<ol>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#FF0000;">class</span> Program</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Datenstruktur für die Beziehungen (TabelleA nach TabelleB)</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#FF0000;">struct</span> Relationship</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#FF0000;">String</span> tableA<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#FF0000;">String</span> tableB<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">static</span> <span style="color:#0600FF;">void</span> Main<span style="color:#000000;">&#40;</span><span style="color:#FF0000;">string</span><span style="color:#000000;">&#91;</span><span style="color:#000000;">&#93;</span> args<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">try</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SqlConnection dbConnection <span style="color:#008000;">=</span> <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> SqlConnection</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#000000;">&#40;</span><span style="color:#666666;">@&quot;data source=xxxxx;Integrated Security=SSPI;initial catalog=xxxx;persist security info=false;packet size=4096&quot;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dbConnection.<span style="color:#0000FF;">Open</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List<span style="color:#008000;">&lt;</span><span style="color:#FF0000;">String</span><span style="color:#008000;">&gt;</span> tables <span style="color:#008000;">=</span> GetTableNames<span style="color:#000000;">&#40;</span>dbConnection<span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List<span style="color:#008000;">&lt;</span>Relationship<span style="color:#008000;">&gt;</span> rels <span style="color:#008000;">=</span> GetRelationsships<span style="color:#000000;">&#40;</span>dbConnection<span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SaveGml<span style="color:#000000;">&#40;</span>TablesToGml<span style="color:#000000;">&#40;</span>tables<span style="color:#000000;">&#41;</span>, RelationshipsToGml<span style="color:#000000;">&#40;</span>rels<span style="color:#000000;">&#41;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span style="color:#0000FF;">WriteLine</span><span style="color:#000000;">&#40;</span><span style="color:#666666;">&quot;Die Datei wurde erfolgreich erzeugt&quot;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">catch</span> <span style="color:#000000;">&#40;</span>Exception e<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span style="color:#0000FF;">Write</span><span style="color:#000000;">&#40;</span>e.<span style="color:#0000FF;">Message</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span style="color:#0000FF;">ReadLine</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Speichert die endgültige GML-Datei ab.</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;tables&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;rels&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">private</span> <span style="color:#0600FF;">static</span> <span style="color:#0600FF;">void</span> SaveGml<span style="color:#000000;">&#40;</span><span style="color:#FF0000;">string</span> tables, <span style="color:#FF0000;">string</span> rels<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; File.<span style="color:#0000FF;">WriteAllText</span><span style="color:#000000;">&#40;</span><span style="color:#666666;">&quot;test.gml&quot;</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">@&quot;Creator &nbsp; &quot;</span><span style="color:#666666;">&quot;yFiles&quot;</span><span style="color:#666666;">&quot;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">Version &quot;</span><span style="color:#666666;">&quot;2.6&quot;</span><span style="color:#666666;">&quot;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">graph</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">[</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">&nbsp; &nbsp; hierarchic&nbsp; 1</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">&nbsp; &nbsp; label &nbsp; &quot;</span><span style="color:#666666;">&quot;&quot;</span><span style="color:#666666;">&quot;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">&nbsp; &nbsp; directed&nbsp; &nbsp; 1&quot;</span> <span style="color:#008000;">+</span> tables <span style="color:#008000;">+</span> rels<span style="color:#008000;">+</span><span style="color:#666666;">&quot;]&quot;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Wandelt die Liste der Tabelle ins (stark vereinfachte) GML-Format um.</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;tables&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;returns&gt;&lt;/returns&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#0600FF;">static</span> <span style="color:#FF0000;">String</span> TablesToGml<span style="color:#000000;">&#40;</span>List<span style="color:#008000;">&lt;</span><span style="color:#FF0000;">String</span><span style="color:#008000;">&gt;</span> tables<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#FF0000;">String</span> gml <span style="color:#008000;">=</span> <span style="color:#666666;">&quot;&quot;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">foreach</span> <span style="color:#000000;">&#40;</span><span style="color:#FF0000;">string</span> tab <span style="color:#0600FF;">in</span> tables<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;gml <span style="color:#008000;">=</span> <span style="color:#FF0000;">String</span>.<span style="color:#0000FF;">Concat</span><span style="color:#000000;">&#40;</span>gml,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;node&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;[&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;id <span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span><span style="color:#008000;">+</span>tab<span style="color:#008000;">+</span><span style="color:#666666;">&quot;<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;label&nbsp; <span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span><span style="color:#008000;">+</span>tab<span style="color:#008000;">+</span><span style="color:#666666;">&quot;<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;]&quot;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">return</span> gml<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Wandelt die Liste der Beziehungen ins (stark vereinfachte) GML-Format um</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;rels&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;returns&gt;&lt;/returns&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#0600FF;">static</span> <span style="color:#FF0000;">String</span> RelationshipsToGml<span style="color:#000000;">&#40;</span>List<span style="color:#008000;">&lt;</span>Relationship<span style="color:#008000;">&gt;</span> rels<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#FF0000;">String</span> gml <span style="color:#008000;">=</span> <span style="color:#666666;">&quot;&quot;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">foreach</span> <span style="color:#000000;">&#40;</span>Relationship rel <span style="color:#0600FF;">in</span> rels<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gml <span style="color:#008000;">=</span> <span style="color:#FF0000;">String</span>.<span style="color:#0000FF;">Concat</span><span style="color:#000000;">&#40;</span>gml,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;edge&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;[&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot; &nbsp; source <span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span><span style="color:#008000;">+</span>rel.<span style="color:#0000FF;">tableA</span><span style="color:#008000;">+</span><span style="color:#666666;">&quot;<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot; &nbsp; target <span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span><span style="color:#008000;">+</span>rel.<span style="color:#0000FF;">tableB</span><span style="color:#008000;">+</span><span style="color:#666666;">&quot;<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span>,Environment.<span style="color:#0000FF;">NewLine</span>,</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">&quot;]&quot;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">return</span> gml<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Liest die Namen der Tabellen aus der Datenbank</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;dbConnection&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;returns&gt;&lt;/returns&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#0600FF;">static</span> List<span style="color:#008000;">&lt;</span><span style="color:#FF0000;">String</span><span style="color:#008000;">&gt;</span> GetTableNames<span style="color:#000000;">&#40;</span>SqlConnection dbConnection<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List<span style="color:#008000;">&lt;</span><span style="color:#FF0000;">string</span><span style="color:#008000;">&gt;</span> tables <span style="color:#008000;">=</span> <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> List<span style="color:#008000;">&lt;</span><span style="color:#FF0000;">string</span><span style="color:#008000;">&gt;</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SqlCommand sqlCommand <span style="color:#008000;">=</span> dbConnection.<span style="color:#0000FF;">CreateCommand</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sqlCommand.<span style="color:#0000FF;">CommandText</span> <span style="color:#008000;">=</span> </div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">@&quot;Select Name from dbo.sysobjects WHERE xType = 'U' order by Name&quot;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SqlDataReader sqlReader <span style="color:#008000;">=</span> sqlCommand.<span style="color:#0000FF;">ExecuteReader</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">while</span> <span style="color:#000000;">&#40;</span>sqlReader.<span style="color:#0000FF;">Read</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tables.<span style="color:#0000FF;">Add</span><span style="color:#000000;">&#40;</span>sqlReader<span style="color:#000000;">&#91;</span><span style="color:#666666;">&quot;Name&quot;</span><span style="color:#000000;">&#93;</span>.<span style="color:#0000FF;">ToString</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sqlReader.<span style="color:#0000FF;">Close</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">return</span> tables<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// Liest die Relationsships aus der Datenbank aus</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;/summary&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;param name=&quot;dbConnection&quot;&gt;&lt;/param&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">/// &lt;returns&gt;&lt;/returns&gt;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">public</span> <span style="color:#0600FF;">static</span> List<span style="color:#008000;">&lt;</span>Relationship<span style="color:#008000;">&gt;</span> GetRelationsships<span style="color:#000000;">&#40;</span>SqlConnection dbConnection<span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; List<span style="color:#008000;">&lt;</span>Relationship<span style="color:#008000;">&gt;</span> rel <span style="color:#008000;">=</span> <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> List<span style="color:#008000;">&lt;</span>Relationship<span style="color:#008000;">&gt;</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SqlCommand sqlCommand <span style="color:#008000;">=</span> dbConnection.<span style="color:#0000FF;">CreateCommand</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sqlCommand.<span style="color:#0000FF;">CommandText</span> <span style="color:#008000;">=</span> </div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#666666;">@&quot;SELECT</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">K_Table = FK.TABLE_NAME,</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">FK_Column = CU.COLUMN_NAME,</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">PK_Table = PK.TABLE_NAME,</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">PK_Column = PT.COLUMN_NAME,</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">Constraint_Name = C.CONSTRAINT_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS C</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">INNER JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS FK ON C.CONSTRAINT_NAME = FK.CONSTRAINT_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">INNER JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS PK ON C.UNIQUE_CONSTRAINT_NAME = PK.CONSTRAINT_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE CU ON C.CONSTRAINT_NAME = CU.CONSTRAINT_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">INNER JOIN (</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">SELECT i1.TABLE_NAME, i2.COLUMN_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS i1</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">INNER JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE i2 ON i1.CONSTRAINT_NAME = i2.CONSTRAINT_NAME</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">WHERE i1.CONSTRAINT_TYPE = 'PRIMARY KEY'</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;"><span style="color:#666666;">) PT ON PT.TABLE_NAME = PK.TABLE_NAME&quot;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SqlDataReader sqlReader <span style="color:#008000;">=</span> sqlCommand.<span style="color:#0000FF;">ExecuteReader</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">while</span> <span style="color:#000000;">&#40;</span>sqlReader.<span style="color:#0000FF;">Read</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Relationship singleRel <span style="color:#008000;">=</span> <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> Relationship<span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; singleRel.<span style="color:#0000FF;">tableA</span> <span style="color:#008000;">=</span> sqlReader<span style="color:#000000;">&#91;</span><span style="color:#666666;">&quot;K_Table&quot;</span><span style="color:#000000;">&#93;</span>.<span style="color:#0000FF;">ToString</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; singleRel.<span style="color:#0000FF;">tableB</span> <span style="color:#008000;">=</span> sqlReader<span style="color:#000000;">&#91;</span><span style="color:#666666;">&quot;PK_Table&quot;</span><span style="color:#000000;">&#93;</span>.<span style="color:#0000FF;">ToString</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080;font-style:italic;">//Gibt's mehrere gleiche Beziehungen wird nur EINE dargestellt.</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">if</span> <span style="color:#000000;">&#40;</span><span style="color:#008000;">!</span>rel.<span style="color:#0000FF;">Contains</span><span style="color:#000000;">&#40;</span>singleRel<span style="color:#000000;">&#41;</span><span style="color:#000000;">&#41;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#123;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rel.<span style="color:#0000FF;">Add</span><span style="color:#000000;">&#40;</span>singleRel<span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sqlReader.<span style="color:#0000FF;">Close</span><span style="color:#000000;">&#40;</span><span style="color:#000000;">&#41;</span><span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0600FF;">return</span> rel<span style="color:#008000;">;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp;</div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
<li>
<div style="font:normal normal 1em/1.2em monospace;background:none;vertical-align:top;color:#000020;margin:0;padding:0;">&nbsp; &nbsp; <span style="color:#000000;">&#125;</span></div>
</li>
</ol>
</div>
<p></code></p>
<p>Die damit erzeugte Datei &#8222;test.gml&#8220; kann man nun mit YED öffnen – und sieht dann so aus:</p>
<p><img src="http://hummelflug.files.wordpress.com/2009/07/ermyed_first.jpg?w=150&#038;h=55" alt="ERMYED_First" title="ERMYED_First" width="150" height="55" class="alignnone size-thumbnail wp-image-93" /></p>
<p>Alle „Kästchen“ sind hier hintereinander angeordnet, da ich mit obigem Programm nur ein vereinfachtes GML-Format angelegt habe. Das macht aber nichts, denn YED kann nun daraus ein  übersichtliches Diagramm machen!</p>
<p>Man wählt dazu lediglich aus:</p>
<p>Layout – Orthogonal – Kompakt<br />
 <img src="http://hummelflug.files.wordpress.com/2009/07/yedmenue.jpg?w=300&#038;h=203" alt="YedMenue" title="YedMenue" width="300" height="203" class="alignnone size-medium wp-image-94" /></p>
<p>Und siehe da: nun habe ich ein schönes Datenmodell, das ich nur noch ein bischen aufhübschen muß! Die Breite der Kästchen ändert man am besten gleich zuerst: alles markieren und per Maus breiter ziehen. Hintergrundfarbe festlegen, etwas rumspielen und fertig:</p>
<p><a href="http://hummelflug.files.wordpress.com/2009/07/ermyed.jpg"><img src="http://hummelflug.files.wordpress.com/2009/07/ermyed.jpg?w=300&#038;h=241" alt="ERMYED" title="ERMYED" width="300" height="241" class="alignnone size-medium wp-image-95" /></a></p>
<p>Einzige Voraussetzung ist, dass die Beziehungen zwischen den Tabellen auch in der Datenbank als Relationships angelegt sind.</p>
<p><strong>Danke an</strong><br />
<a href="http://alleskokolores.blogspot.com/index.html">Bernhard </a>für den Tipp mit YED<br />
<a href="http://blog.sqlauthority.com/2006/11/01/sql-server-query-to-display-foreign-key-relationships-and-name-of-the-constraint-for-each-table-in-database/">Pinal Dave</a> für die Select-Anweisung</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=91&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2009/07/30/datenbankdiagram-mit-yed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2009/07/ermsql.jpg?w=300" medium="image">
			<media:title type="html">ERMSQL</media:title>
		</media:content>

		<media:content url="http://www.yworks.com/img/logo.gif" medium="image" />

		<media:content url="http://hummelflug.files.wordpress.com/2009/07/ermyed_first.jpg?w=150" medium="image">
			<media:title type="html">ERMYED_First</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2009/07/yedmenue.jpg?w=300" medium="image">
			<media:title type="html">YedMenue</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2009/07/ermyed.jpg?w=300" medium="image">
			<media:title type="html">ERMYED</media:title>
		</media:content>
	</item>
		<item>
		<title>Deutschland : China</title>
		<link>http://hummelflug.wordpress.com/2008/06/11/deutschland-china/</link>
		<comments>http://hummelflug.wordpress.com/2008/06/11/deutschland-china/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 06:53:59 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Umwelt]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Deutschland]]></category>
		<category><![CDATA[Verkehr]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=87</guid>
		<description><![CDATA[Was unterscheidet Deutschland von China?
Ganz einfach:
In Deutschland fahren immer weniger Menschen mit dem Auto und dafür mehr mit dem Fahrrad.
In China fahren immer mehr mit dem Auto und immer weniger mit dem Fahrrad&#8230;

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=87&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Was unterscheidet Deutschland von China?</p>
<p>Ganz einfach:<br />
In Deutschland fahren immer weniger Menschen mit dem Auto und dafür mehr mit dem Fahrrad.<br />
In China fahren immer mehr mit dem Auto und immer weniger mit dem Fahrrad&#8230;<br />
<img src="http://www.spiegel.de/img/0,1020,938129,00.jpg" alt="" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/87/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/87/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=87&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/06/11/deutschland-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://www.spiegel.de/img/0,1020,938129,00.jpg" medium="image" />
	</item>
		<item>
		<title>Tibet-Freunde leben gefährlich&#8230;</title>
		<link>http://hummelflug.wordpress.com/2008/04/15/tibet-freunde-leben-gefahrlich/</link>
		<comments>http://hummelflug.wordpress.com/2008/04/15/tibet-freunde-leben-gefahrlich/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:53:09 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=86</guid>
		<description><![CDATA[China ist allgegenwärtig &#8211; und dank des Internets mitten in unseren Wohnzimmern. Wie in einem schweizer BLOG zu lesen, startet China Hacker-Angriffe auf Webseiten und Rechner von Tibet-Sympathisanten.
Mehr dazu im RainbowNet Blog Schweiz
Dazu kann ich nur eines sagen:

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=86&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>China ist allgegenwärtig &#8211; und dank des Internets mitten in unseren Wohnzimmern. Wie in einem schweizer BLOG zu lesen, startet China Hacker-Angriffe auf Webseiten und Rechner von Tibet-Sympathisanten.<br />
<a href="http://blog.rainbownet.ch/uncategorized/hackerattacke-von-china-gegen-tibet-sympathisanten">Mehr dazu im RainbowNet Blog Schweiz</a></p>
<p>Dazu kann ich nur eines sagen:</p>
<div align="center"><img src="http://blog.rainbownet.ch/bilder/free-tibet.gif"></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=86&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/04/15/tibet-freunde-leben-gefahrlich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://blog.rainbownet.ch/bilder/free-tibet.gif" medium="image" />
	</item>
		<item>
		<title>Visual Studio 2008 &#8211; Installationsprobleme</title>
		<link>http://hummelflug.wordpress.com/2008/04/11/visual-studio-2008-installationsprobleme/</link>
		<comments>http://hummelflug.wordpress.com/2008/04/11/visual-studio-2008-installationsprobleme/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 12:48:06 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=85</guid>
		<description><![CDATA[Endlich ist es soweit! Die Visual Studio 2008 DVD ist angekommen.
Voller Vorfreude lege ich mit der Installation los, schließlich erwarten mich viele neue Features, die ich schon längst haben möchte. Doch die Freude währt kurz &#8211; der Installer bleibt beim Schritt &#8222;Microsoft Visual Studio 2008&#8243; mit dem Prozeß &#8222;hxMeger_vsipcc_x86_de&#8230;.&#8220; hängen. Auch nach 30 Minuten tut [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=85&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Endlich ist es soweit! Die Visual Studio 2008 DVD ist angekommen.<br />
Voller Vorfreude lege ich mit der Installation los, schließlich erwarten mich viele neue Features, die ich schon längst haben möchte. Doch die Freude währt kurz &#8211; der Installer bleibt beim Schritt &#8222;Microsoft Visual Studio 2008&#8243; mit dem Prozeß &#8222;hxMeger_vsipcc_x86_de&#8230;.&#8220; hängen. Auch nach 30 Minuten tut sich nichts, im Taskmanager zeigt nur noch der Leerlaufprozess Aktivität&#8230; Was tun?</p>
<p>Im Internet findet man ähnliche Fehlerberichte &#8211; aber keine Lösung.</p>
<div align="center"><img src="http://hummelflug.files.wordpress.com/2008/04/vs2008.jpg?w=348&#038;h=78" alt="Visual Studio 2008" width="348" height="78" /></div>
<p>Also durchforste ich den Taskmanager und kille den einen oder anderen Prozess &#8211; ohne Wirkung. Der Installationsprozess &#8222;devenv.exe&#8220;, der eigentlich VS installieren sollte schläft. Kurzer Hand wird der Prozess gekillt &#8211; und siehe da: die Installation läuft weiter!</p>
<p>Doch nur, um dann beim Schritt &#8222;Crystal Reports Basic für Visual Studio 2008&#8243; wieder hängen zu bleiben.</p>
<p>Wieder wird devenv.exe abgeschossen &#8211; er hat schon über 100 MB Speicher belegt.<br />
Und wieder läuft die Installation weiter. </p>
<p>Doch devenv.exe gibt nicht auf &#8211; der Prozess erscheint sofort wieder neu. Und hängt beim &#8222;Crystal Reports Basic Language Pack&#8220;. Wieder abgeschossen. </p>
<p>Wieder läuft die Installation weiter &#8211; fast bis zum Schluß. Bei &#8222;MS SQL-Veröffentlichungsassisten&#8220; tut sich wieder nichts. Nachdem der Fortschrittsbalken geraume Zeit bei 100% ist wird devenv.exe wieder mal abgeschossen.</p>
<p>Die Installation wurde &#8211; trotz der Abschüsse &#8211; als erfolgreich gemeldet.<br />
Ob durch die wilde Schießerei später Probleme auftreten werden, wird sich zeigen. Zumindest läuft VS 2008 und auch meine Projekte lassen sich öffnen und laufen. Was will man mehr? (Außer vielleicht eine problemlose Installation&#8230;)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/85/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/85/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=85&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/04/11/visual-studio-2008-installationsprobleme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2008/04/vs2008.jpg" medium="image">
			<media:title type="html">Visual Studio 2008</media:title>
		</media:content>
	</item>
		<item>
		<title>Nachbarschaftspost.com &#8211; Spam im Quadrat</title>
		<link>http://hummelflug.wordpress.com/2008/04/06/nachbarschaftspostcom-spam-im-quadrat/</link>
		<comments>http://hummelflug.wordpress.com/2008/04/06/nachbarschaftspostcom-spam-im-quadrat/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 12:32:36 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Abzocker]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=82</guid>
		<description><![CDATA[Bisher war&#8217;s ja fast noch einfach. Da wurde eMail gespammt und Telefonwerbung betrieben.
Seit heute ist das bei mir wohl anders: jetzt geht&#8217;s Hand in Hand, SPAM im Quadrat sozusagen. 
Erhielt ich doch einen Anruf, in dem mir eine Computerstimme mitteilte, ich hätte ein &#8222;WICHTIGE&#8220; Nachricht von meinem Nachbarn erhalten und soll auf nachbarschaftspost.com einen Code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=82&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Bisher war&#8217;s ja fast noch einfach. Da wurde eMail gespammt und Telefonwerbung betrieben.<br />
Seit heute ist das bei mir wohl anders: jetzt geht&#8217;s Hand in Hand, SPAM im Quadrat sozusagen. </p>
<p>Erhielt ich doch einen Anruf, in dem mir eine Computerstimme mitteilte, ich hätte ein &#8222;WICHTIGE&#8220; Nachricht von meinem Nachbarn erhalten und soll auf nachbarschaftspost.com einen Code eingeben um sie anzuhören. Weder wurde der Name des Nachbarn genannt, der angeblich eine Botschaft für mich hat, noch wurde auf Kosten hingewiesen.</p>
<p>Ich wüsste zwar nicht, welcher Nachbar mir eine Nachricht auf diese Weise hinterlassen sollte, war aber trotzdem neugierig. Liest man dann das Kleingedruckte auf nachbarschaftspost.com, welches übrigens in Augenkrebs erregenden Farben dargestellt wird,  merkt man, daß man hier gleich einen Vertrag abschließt.</p>
<p>Und zwar gleich für 2 Jahre und mit 9 Euro pro Monat.</p>
<p>Eine teure Nachbarschaftspost &#8211; und außerdem ist es doch viel einfacher, mal zum Nachbarn rüber zu gehen und zu klingeln. Und einen Briefkasten gibts ja schließlich auch noch&#8230;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=82&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/04/06/nachbarschaftspostcom-spam-im-quadrat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>
	</item>
		<item>
		<title>Stell Dir vor es sind Olympische Spiele &#8211; und keiner geht hin.</title>
		<link>http://hummelflug.wordpress.com/2008/03/23/stell-dir-vor-es-sind-olympische-spiele-und-keiner-geht-hin/</link>
		<comments>http://hummelflug.wordpress.com/2008/03/23/stell-dir-vor-es-sind-olympische-spiele-und-keiner-geht-hin/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 17:15:37 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[Tibet]]></category>
		<category><![CDATA[Dalai Lama]]></category>
		<category><![CDATA[Menschenrechte]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=81</guid>
		<description><![CDATA[Kann man friedliche Olympische Spiele in einem Land veranstalten, das zur selben Zeit die Menschenrechte mit Füßen tritt?
Es liegt (auch) in der Hand der Sportler&#8230;

Aufruf zum Boykott
Aufruf: Schreiben Sie Bundeskanzlerin Merkel
Boycott the Opening of the Olympic Games! &#8211; eMail-Aktion
Appell der tibetischen Athleten an die Sportler der Welt
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=81&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img align="left" src="http://www.n-tv.de/img/934770_src_path.p5pA.jpg" alt="Free Tibet" />Kann man friedliche Olympische Spiele in einem Land veranstalten, das zur selben Zeit die Menschenrechte mit Füßen tritt?</p>
<p>Es liegt (auch) in der Hand der Sportler&#8230;</p>
<p></p>
<p><a href="http://tibetnews.ultima-ola.com/2008/03/23/olympia-eroeffnungsfeier-boykottieren/">Aufruf zum Boykott</a></p>
<p><a href="http://www.savetibet.org/de/news/news.php?id=357">Aufruf: Schreiben Sie Bundeskanzlerin Merkel</a></p>
<p><a href="http://www.gfbv.org/chinakampagne/emailprot.php?id=147">Boycott the Opening of the Olympic Games! &#8211; eMail-Aktion</a></p>
<p><a href="http://tibetnews.ultima-ola.com/2008/03/23/appell-der-tibetischen-athleten-an-die-sportler-der-welt/">Appell der tibetischen Athleten an die Sportler der Welt</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=81&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/03/23/stell-dir-vor-es-sind-olympische-spiele-und-keiner-geht-hin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://www.n-tv.de/img/934770_src_path.p5pA.jpg" medium="image">
			<media:title type="html">Free Tibet</media:title>
		</media:content>
	</item>
		<item>
		<title>Keine abstehenden Post-it mehr!</title>
		<link>http://hummelflug.wordpress.com/2008/02/21/keine-abstehenden-post-it-mehr/</link>
		<comments>http://hummelflug.wordpress.com/2008/02/21/keine-abstehenden-post-it-mehr/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:40:33 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=79</guid>
		<description><![CDATA[Wer nutzt sie nicht, die kleinen gelben Zettelchen?
Und hat es Euch auch schon geärgert, daß sie unten, am nicht klebenden Ende, immer abstehen? Nun &#8211; im Internet gibts wie so oft die Lösung! Dave Gray zeigt auf einem Video, wie man&#8217;s richtig macht damit&#8217;s auch mit den Post-It Zettelchen klappt&#8230;.
Hier gehts zum Video
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=79&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img align="right" src='http://hummelflug.files.wordpress.com/2008/02/post-it-zettel.png' alt='Post-It Zettel' />Wer nutzt sie nicht, die kleinen gelben Zettelchen?<br />
Und hat es Euch auch schon geärgert, daß sie unten, am nicht klebenden Ende, immer abstehen? Nun &#8211; im Internet gibts wie so oft die Lösung! Dave Gray zeigt auf einem Video, wie man&#8217;s richtig macht damit&#8217;s auch mit den Post-It Zettelchen klappt&#8230;.<br />
<a href="http://communicationnation.blogspot.com/2008/02/amazing-sticky-note-trick.html">Hier gehts zum Video</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/79/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/79/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=79&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/02/21/keine-abstehenden-post-it-mehr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2008/02/post-it-zettel.png" medium="image">
			<media:title type="html">Post-It Zettel</media:title>
		</media:content>
	</item>
		<item>
		<title>Stasi-Methoden unter Freunden&#8230;</title>
		<link>http://hummelflug.wordpress.com/2008/02/20/stasi-methoden-unter-freunden/</link>
		<comments>http://hummelflug.wordpress.com/2008/02/20/stasi-methoden-unter-freunden/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 09:17:09 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Bookmarklet]]></category>
		<category><![CDATA[Stasi]]></category>
		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/?p=78</guid>
		<description><![CDATA[Geht&#8217;s Euch nicht auch oft so: da findet man was Tolles im Internet und will seine Kollegen und Freunde an dieser sensationellen Entdeckung teilhaben lassen. Flugs schickt man eine Mail mit dem Link auf diese Seite  &#8230;. und hört nie wieder was darüber. Kein Danke, kein &#8222;tolle Info!&#8220;, kein gar nix.
Hat der Empfänger die [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=78&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Geht&#8217;s Euch nicht auch oft so: da findet man was Tolles im Internet und will seine Kollegen und Freunde an dieser sensationellen Entdeckung teilhaben lassen. Flugs schickt man eine Mail mit dem Link auf diese Seite  &#8230;. und hört nie wieder was darüber. Kein Danke, kein &#8222;tolle Info!&#8220;, kein gar nix.</p>
<p>Hat der Empfänger die Mail nicht bekommen? Hat er/sie den Link nicht angeklickt?<br />
Man weiß es nicht, man weiß es nicht. Und man kann nichts tun außer nachzufragen.</p>
<p>Oder doch?<br />
<a href="http://linkblip.com/">LinkBlip</a> schafft hier Abhilfe! Ähnlich wie tinyurl.com macht dieses online-Tool aus einem langen Link einen Kurzen. Und zusätzlich kann man sich eine Benachrichtungsmail schicken lassen, die darüber informiert, wann der Link von wem angeklickt worden ist!</p>
<p>Und das Schönste: das Ganze läßt sich als Bookmarklet in den Browser integrieren &#8211; ganz ohne Installation! (Anleitung siehe bei LinkBlip unter &#8222;Install the Browser Button&#8220;)</p>
<p>Eigentlich ein wunderschönes &#8222;Stasi-Tool&#8220;, findet ihr nicht?<br />
<a href="http://linkblip.com/"><img src="http://linkblip.com/img/linkblip/logo.png" alt="Linkblip" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/78/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/78/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=78&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/02/20/stasi-methoden-unter-freunden/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://linkblip.com/img/linkblip/logo.png" medium="image">
			<media:title type="html">Linkblip</media:title>
		</media:content>
	</item>
		<item>
		<title>Ab heute höre ich PodCast&#8217;s!</title>
		<link>http://hummelflug.wordpress.com/2008/01/13/ab-heute-hore-ich-podcasts/</link>
		<comments>http://hummelflug.wordpress.com/2008/01/13/ab-heute-hore-ich-podcasts/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 14:42:53 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[Allgemeines]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/2008/01/13/ab-heute-hore-ich-podcasts/</guid>
		<description><![CDATA[&#8222;Wer nicht mit der Zeit geht, der geht mit der Zeit&#8220; heisst ein alter Spruch. Bisher habe ich um das Thema MP3-Player und PodCast&#8217;s einen Bogen gemacht. &#8222;Wer braucht denn schon sowas&#8230;.&#8220; und &#8222;Dafür habe ich keine Zeit&#8220; sind die Gedanken, mit denen ich meine altmodische Denkweise zu verteigen suchte. Trotzdem, es hat mich nicht [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=76&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8222;Wer nicht mit der Zeit geht, der geht mit der Zeit&#8220; heisst ein alter Spruch. Bisher habe ich um das Thema MP3-Player und PodCast&#8217;s einen Bogen gemacht. &#8222;Wer braucht denn schon sowas&#8230;.&#8220; und &#8222;Dafür habe ich keine Zeit&#8220; sind die Gedanken, mit denen ich meine altmodische Denkweise zu verteigen suchte. Trotzdem, es hat mich nicht losgelassen.</p>
<p><img align="left" src='http://hummelflug.files.wordpress.com/2008/01/organix.gif' alt='i.beat Organix' />Tja, jetzt habe ich einen MP3-Player. Den i.Beat organix von Trekstore mit 1 GB.<br />
Und was soll ich sagen: erstaunlich! Es ist ganz was anderes als Radio hören. Viel selektiver, gezielter! </p>
<p>Vielleicht schaffe ich es sogar mein Hörbuch, das seit langem als CD ungehört rumliegt, mal anzuhören. &#8222;Das Buch der Menschlichkeit&#8220; vom Dalai Lama. In MP3 umgewandelt liegt es schon auf dem handlichen Player. Und Rundfunkt-Podcasts habe ich auch schon entdeckt.</p>
<p>Man sitzt ja den ganzen Tag vom dem PC, liest, liest und liest. Ist das Hören vielleicht ein alternativer Informationsaufnahmeweg? Augenschonend?<br />
Interessant!!!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=76&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2008/01/13/ab-heute-hore-ich-podcasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>

		<media:content url="http://hummelflug.files.wordpress.com/2008/01/organix.gif" medium="image">
			<media:title type="html">i.beat Organix</media:title>
		</media:content>
	</item>
		<item>
		<title>Advent, Advent &#8211; ein Büchlein brennt</title>
		<link>http://hummelflug.wordpress.com/2007/12/05/advent-advent-ein-buchlein-brennt/</link>
		<comments>http://hummelflug.wordpress.com/2007/12/05/advent-advent-ein-buchlein-brennt/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 07:41:34 +0000</pubDate>
		<dc:creator>hummelflug</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://hummelflug.wordpress.com/2007/12/05/advent-advent-ein-buchlein-brennt/</guid>
		<description><![CDATA[Die Adventszeit bringt auch Entwickler auf gute Ideen: Auf der Homepage von entwickler-press.de gibt es einen Adventskalender. Nichts besonderes zu dieser Jahreszeit. Aber das Schöne an diesem Adventskalender: hinter jedem Türchen gibt es ein eBook zum download. Heute (und nur heute) z.B. ein Java-Buch.
Mal schauen, was es morgen gibt&#8230;.
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=75&subd=hummelflug&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Die Adventszeit bringt auch Entwickler auf gute Ideen: Auf der Homepage von <a href="http://entwickler-press.de">entwickler-press.de</a> gibt es einen Adventskalender. Nichts besonderes zu dieser Jahreszeit. Aber das Schöne an diesem Adventskalender: hinter jedem Türchen gibt es ein eBook zum download. Heute (und nur heute) z.B. ein Java-Buch.<br />
Mal schauen, was es morgen gibt&#8230;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hummelflug.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hummelflug.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hummelflug.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hummelflug.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hummelflug.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hummelflug.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hummelflug.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hummelflug.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hummelflug.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hummelflug.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hummelflug.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hummelflug.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hummelflug.wordpress.com&blog=754643&post=75&subd=hummelflug&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hummelflug.wordpress.com/2007/12/05/advent-advent-ein-buchlein-brennt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e63038474353a20f61698a0bd8970f7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hummelflug</media:title>
		</media:content>
	</item>
	</channel>
</rss>