<?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/"
	>

<channel>
	<title>LieberLieber Software TeamBlog &#187; Datenbanken</title>
	<atom:link href="http://blog.lieberlieber.com/tag/datenbanken/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lieberlieber.com</link>
	<description>was uns treibt und verfolgt!</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:36:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Migration von base64 XML auf BLOB</title>
		<link>http://blog.lieberlieber.com/2010/01/12/migration-von-base64-xml-auf-blob/</link>
		<comments>http://blog.lieberlieber.com/2010/01/12/migration-von-base64-xml-auf-blob/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 08:41:15 +0000</pubDate>
		<dc:creator>Richard Deininger</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[Problemlösungen]]></category>
		<category><![CDATA[base64]]></category>
		<category><![CDATA[Blob]]></category>
		<category><![CDATA[Convert]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[XQuery]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=1528</guid>
		<description><![CDATA[Wie man mit hilfe von XQuery base64 encoded daten aus einem XML Feld in ein Blob Feld bekommt.]]></description>
			<content:encoded><![CDATA[<p>Bei einem unserer Kunden, wurden bis jetzt Dateien auf der DB (Sql Server 2005) als XML abgespeichert:</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Document</span><span style="color: #0000ff;">&gt;</span></p>
<p><span style="color: #0000ff;"> </span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">FileName</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">FileName</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">FileType</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">FileType</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">CreatedAt</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">CreatedAt</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt; </span></p>
<p><span style="color: #0000ff;"> </span></p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">Document</span><span style="color: #0000ff;">&gt;</span></p>
<p>Das <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;</span> Feld wurde natürlich mit base64 encoded damit man schön XML reinschreiben und auslesen konnten.</p>
<p>Da der Vortschritt aber auch hier einzug gehalten hat, gibt es jetzt auch hier eine eigene Tabelle mit einem Blob für <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;</span>. Dabei stellte sich nur die Frage wie man jetzt am besten von base64 auf Blob migriert. Folgenden netten XQuery befehl habe ich hierfür gefunden:</p>
<p>Documents.<span style="color: #0000ff;">value</span><span style="color: #ff0000;">(&#8216;xs:base64Binary(/*:Documents[1]/*:Document[1]/*:Data[1])&#8217;</span>,<span style="color: #ff0000;"> &#8216;varbinary(MAX)&#8217;</span>)</p>
<p><strong>English:</strong></p>
<p>One of our customer used XML to save files inside there DB (Sql Server 2005):</p>
<p style="padding-left: 30px;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Document</span><span style="color: #0000ff;">&gt;</span></p>
<p><span style="color: #0000ff;"> </span></p>
<p style="padding-left: 60px"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">FileName</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">FileName</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">FileType</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">FileType</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">CreatedAt</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">CreatedAt</span><span style="color: #0000ff;">&gt;</span><span style="color: #0000ff;"><br />
</span><span style="color: #0000ff;"> &lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt; </span></p>
<p><span style="color: #0000ff;"> </span></p>
<p style="padding-left: 30px"><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">Document</span><span style="color: #0000ff;">&gt;</span></p>
<p>The <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;</span> field was of course base64 encoded to make it easy to read and write XML files form it.</p>
<p>After some progress they managed to save the data into a new table with an Blob field for <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Data</span><span style="color: #0000ff;">&gt;</span>, but the tricky part was: how to get the base64 data into the Blob field,&#8230; during some research I found the following XQuery command.</p>
<p>Documents.<span style="color: #0000ff;">value</span><span style="color: #ff0000;">(&#8216;xs:base64Binary(/*:Documents[1]/*:Document[1]/*:Data[1])&#8217;</span>,<span style="color: #ff0000;"> &#8216;varbinary(MAX)&#8217;</span>)</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB&amp;bodytext=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;t=Migration%20von%20base64%20XML%20auf%20BLOB" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB&amp;notes=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB&amp;annotation=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;bm_description=Migration%20von%20base64%20XML%20auf%20BLOB&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;bm_description=Migration%20von%20base64%20XML%20auf%20BLOB&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Migration%20von%20base64%20XML%20auf%20BLOB&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;desc=Migration%20von%20base64%20XML%20auf%20BLOB" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F%20Migration%20von%20base64%20XML%20auf%20BLOB" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;t=Migration%20von%20base64%20XML%20auf%20BLOB&amp;s=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Migration%20von%20base64%20XML%20auf%20BLOB%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;title=Migration%20von%20base64%20XML%20auf%20BLOB" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;t=Migration%20von%20base64%20XML%20auf%20BLOB&opener=bm&amp;ei=UTF-8&amp;d=Wie%20man%20mit%20hilfe%20von%20XQuery%20base64%20encoded%20daten%20aus%20einem%20XML%20Feld%20in%20ein%20Blob%20Feld%20bekommt." title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F12%2Fmigration-von-base64-xml-auf-blob%2F&amp;exttitle=Migration%20von%20base64%20XML%20auf%20BLOB" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2010/01/12/migration-von-base64-xml-auf-blob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Client auf 64bit Windows</title>
		<link>http://blog.lieberlieber.com/2009/09/16/oracle-client-auf-64bit-windows/</link>
		<comments>http://blog.lieberlieber.com/2009/09/16/oracle-client-auf-64bit-windows/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 06:45:07 +0000</pubDate>
		<dc:creator>John Fall</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[ADO.NET]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=1231</guid>
		<description><![CDATA[Hatte ein interessantes Erlebnis mit Oracle Client auf 64bit Windows Server. Eine unserer Applikationen läuft noch auf 32bit, dh. auf dem Server waren auch die 32bit Oralce Client Komponenten installiert (und richtig konfiguriert). Wir hatten aber nun das Problem, dass sobald wir unsere Applikation starten wollten, wir immer folgenden ORA-Fehler bekamen: ORA-12154: TNS:could not resolve [...]]]></description>
			<content:encoded><![CDATA[<p>Hatte ein interessantes Erlebnis mit Oracle Client auf 64bit Windows Server.<br />
Eine unserer Applikationen läuft noch auf 32bit, dh. auf dem Server waren auch die 32bit Oralce Client Komponenten installiert (und richtig konfiguriert).</p>
<p>Wir hatten aber nun das Problem, dass sobald wir unsere Applikation starten wollten, wir immer folgenden ORA-Fehler bekamen:<br />
<em><strong>ORA-12154: TNS:could not resolve the connect identifier specified</strong></em></p>
<p>Andere 32bit Software konnte aber erfolgreich mit der Oracle-DB kommunzieren&#8230;<br />
Am Ende des Arbeitstages hatten wir endlich den Grund des Problems gefunden:<br />
<a href="http://blogs.msdn.com/debarchan/archive/2009/02/04/good-old-connectivity-issue.aspx">http://blogs.msdn.com/debarchan/archive/2009/02/04/good-old-connectivity-issue.aspx</a></p>
<p>Zusammengefasst ist es ein Bug im x86 Oracle Client <span style="font-size: small;"><span style="font-family: Calibri;">10.2.0.1</span></span> - jedede Art von Klammern (!) im Pfad der zu startenden Applikation verursacht oben genannten Fehler!<br />
Und auf einem x64 Windows werden alle 32bit Applikation standardmässig auf &#8220;C:\program files (x86)\&#8230;&#8221; installiert&#8230;</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20&amp;bodytext=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;t=Oracle%20Client%20auf%2064bit%20Windows%20" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20&amp;notes=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20&amp;annotation=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;bm_description=Oracle%20Client%20auf%2064bit%20Windows%20&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;bm_description=Oracle%20Client%20auf%2064bit%20Windows%20&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Oracle%20Client%20auf%2064bit%20Windows%20&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;desc=Oracle%20Client%20auf%2064bit%20Windows%20" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F%20Oracle%20Client%20auf%2064bit%20Windows%20" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;t=Oracle%20Client%20auf%2064bit%20Windows%20&amp;s=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Oracle%20Client%20auf%2064bit%20Windows%20%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;title=Oracle%20Client%20auf%2064bit%20Windows%20" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;t=Oracle%20Client%20auf%2064bit%20Windows%20&opener=bm&amp;ei=UTF-8&amp;d=Hatte%20ein%20interessantes%20Erlebnis%20mit%20Oracle%20Client%20auf%2064bit%20Windows%20Server.%0D%0AEine%20unserer%20Applikationen%20l%C3%A4uft%20noch%20auf%2032bit%2C%20dh.%20auf%20dem%20Server%20waren%20auch%20die%2032bit%20Oralce%20Client%20Komponenten%20installiert%20%28und%20richtig%20konfiguriert%29.%0D%0A%0D%0AWir%20hatten%20ab" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F16%2Foracle-client-auf-64bit-windows%2F&amp;exttitle=Oracle%20Client%20auf%2064bit%20Windows%20" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2009/09/16/oracle-client-auf-64bit-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 &#8211; Übersicht über Datums- und Zeitdatentypen</title>
		<link>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/</link>
		<comments>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 20:35:12 +0000</pubDate>
		<dc:creator>Peter Lieber</dc:creator>
				<category><![CDATA[Microsoft Server]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Microsoft SQL Server 2008]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=315</guid>
		<description><![CDATA[Es scheint sich bis MS herumgesprochen zu haben, dass es einen Datumstyp für &#8220;weltweit&#8221; gibt &#8211; gemäß ISO-8601 Standard. Das wird mobil-data freuen, da sie derzeit dafür ziemlich tricksen müssen. Server in Norwegen und mobile Geräte z.B. in Australien in einer anderen Zeitzone&#8230; Type Inhalt Größe Besonderheiten Beispiel Date nur Datum 3 Byte Spanne: 01.01.0001 [...]]]></description>
			<content:encoded><![CDATA[<p>Es scheint sich bis MS herumgesprochen zu haben, dass es einen Datumstyp für &#8220;weltweit&#8221; gibt &#8211; gemäß ISO-8601 Standard.<br />
Das wird <a href="http://www.mobil-data.at">mobil-data</a> freuen, da sie derzeit dafür ziemlich tricksen müssen. Server in Norwegen und mobile Geräte z.B. in Australien in einer anderen Zeitzone&#8230;</p>
<table border="1">
<tbody>
<tr>
<td>Type</td>
<td>Inhalt</td>
<td>Größe</td>
<td>Besonderheiten</td>
<td>Beispiel</td>
</tr>
<tr>
<td>Date</td>
<td>nur Datum</td>
<td>3 Byte</td>
<td>Spanne: 01.01.0001 bis 31.12.9999</td>
<td>10.06.1973</td>
</tr>
<tr>
<td>Time(n)</td>
<td>nur Zeit</td>
<td>3-5 Byte</td>
<td>bis zu 100 ns genau</td>
<td>11:32:12.222123</td>
</tr>
<tr>
<td>Datetimeoffset(n)</td>
<td>Datum&amp;Uhrzeit inkl. Zeitzone (ISO-8601 Standard</td>
<td>8-10 Byte</td>
<td>Zeitzone, Genauigkeit bis 100 ns</td>
<td>10.06.1973 00:27:00.212412+01:00</td>
</tr>
<tr>
<td>DateTime2(n)</td>
<td>Komination aus Datum&amp;Uhrzeit</td>
<td>6-8 Byte</td>
<td>Spanne wie Datum &#8211; bis 100 ns Genau</td>
<td>10.06.1973 00:27:00.212412</td>
</tr>
</tbody>
</table>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;bodytext=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;notes=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;annotation=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;bm_description=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;bm_description=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;desc=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F%20SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;s=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&opener=bm&amp;ei=UTF-8&amp;d=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;exttitle=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle in der Box</title>
		<link>http://blog.lieberlieber.com/2008/11/10/oracle-in-der-box/</link>
		<comments>http://blog.lieberlieber.com/2008/11/10/oracle-in-der-box/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 18:12:45 +0000</pubDate>
		<dc:creator>Peter Lieber</dc:creator>
				<category><![CDATA[Allgemeine Theorien]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=311</guid>
		<description><![CDATA[Mit neuer Hardware will Oracle, eigentlich Softwarehersteller und erklärter Microsoft Feind, die zentrale Verwaltung von Daten in einem Data Warehouse mit extrem hohen Leistungen und großen Speicherkapazitäten revolutionieren. Mal sehen, was da wieder rauskommen wird. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Mit neuer Hardware will Oracle, eigentlich Softwarehersteller und erklärter Microsoft Feind, die zentrale Verwaltung von Daten in einem Data Warehouse mit extrem hohen Leistungen und großen Speicherkapazitäten revolutionieren.<br />
Mal sehen, was da wieder rauskommen wird.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box&amp;bodytext=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;t=Oracle%20in%20der%20Box" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box&amp;notes=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box&amp;annotation=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;bm_description=Oracle%20in%20der%20Box&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;bm_description=Oracle%20in%20der%20Box&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Oracle%20in%20der%20Box&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;desc=Oracle%20in%20der%20Box" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F%20Oracle%20in%20der%20Box" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;t=Oracle%20in%20der%20Box&amp;s=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Oracle%20in%20der%20Box%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;title=Oracle%20in%20der%20Box" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;t=Oracle%20in%20der%20Box&opener=bm&amp;ei=UTF-8&amp;d=Mit%20neuer%20Hardware%20will%20Oracle%2C%20eigentlich%20Softwarehersteller%20und%20erkl%C3%A4rter%20Microsoft%20Feind%2C%20die%20zentrale%20Verwaltung%20von%20Daten%20in%20einem%20Data%20Warehouse%20mit%20extrem%20hohen%20Leistungen%20und%20gro%C3%9Fen%20Speicherkapazit%C3%A4ten%20revolutionieren.%0D%0AMal%20sehen%2C%20was%20da%20w" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Foracle-in-der-box%2F&amp;exttitle=Oracle%20in%20der%20Box" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/11/10/oracle-in-der-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>databasepro</title>
		<link>http://blog.lieberlieber.com/2008/11/10/databasepro/</link>
		<comments>http://blog.lieberlieber.com/2008/11/10/databasepro/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 18:09:22 +0000</pubDate>
		<dc:creator>Peter Lieber</dc:creator>
				<category><![CDATA[Allgemeine Theorien]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[magazin]]></category>
		<category><![CDATA[Printmedien/Magazine]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=308</guid>
		<description><![CDATA[Es gibt wieder ein neues Printmedium: databasepro &#8211; bekannt ist von diesem Verlag auch das dotnetpro. www.databasepro.de Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Es gibt wieder ein neues Printmedium: databasepro &#8211; bekannt ist von diesem Verlag auch das dotnetpro. <a href="http://www.databasepro.de">www.databasepro.de</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro&amp;bodytext=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;t=databasepro" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro&amp;notes=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro&amp;annotation=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;bm_description=databasepro&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;bm_description=databasepro&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=databasepro&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;desc=databasepro" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F%20databasepro" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;t=databasepro&amp;s=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=databasepro%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;title=databasepro" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;t=databasepro&opener=bm&amp;ei=UTF-8&amp;d=Es%20gibt%20wieder%20ein%20neues%20Printmedium%3A%20databasepro%20-%20bekannt%20ist%20von%20diesem%20Verlag%20auch%20das%20dotnetpro.%20www.databasepro.de" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fdatabasepro%2F&amp;exttitle=databasepro" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/11/10/databasepro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

