<?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>www.tamisch.com &#187; Allgemein</title>
	<atom:link href="http://www.tamisch.com/category/allgemein/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tamisch.com</link>
	<description>Ein Technik Blog</description>
	<lastBuildDate>Sun, 08 Jan 2012 23:15:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>20 Bild vergrößerungs- und verkleinerungs Gedanken</title>
		<link>http://www.tamisch.com/allgemein/gedanke/</link>
		<comments>http://www.tamisch.com/allgemein/gedanke/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 23:14:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=229</guid>
		<description><![CDATA[http://nathanaeljones.com/163/20-image-resizing-pitfalls/]]></description>
			<content:encoded><![CDATA[<p><a href="http://nathanaeljones.com/163/20-image-resizing-pitfalls/">http://nathanaeljones.com/163/20-image-resizing-pitfalls/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/gedanke//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Datenbank verkleinern &#8211; Shrink</title>
		<link>http://www.tamisch.com/allgemein/sql-server-datenbank-verkleinern-shrink/</link>
		<comments>http://www.tamisch.com/allgemein/sql-server-datenbank-verkleinern-shrink/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 09:40:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=225</guid>
		<description><![CDATA[DBCC ShrinkFile (Database_LIVE, 0) DBCC ShrinkFile (Database_LIVE_log, 0)]]></description>
			<content:encoded><![CDATA[<p>DBCC ShrinkFile (Database_LIVE, 0)<br />
DBCC ShrinkFile (Database_LIVE_log, 0)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/sql-server-datenbank-verkleinern-shrink//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server &#8211; Feldname und Feldtyp aller Tabellen</title>
		<link>http://www.tamisch.com/allgemein/sql-server-feldname-und-feldtyp-aller-tabellen/</link>
		<comments>http://www.tamisch.com/allgemein/sql-server-feldname-und-feldtyp-aller-tabellen/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 06:41:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=221</guid>
		<description><![CDATA[select TABLE_NAME, COLUMN_NAME, data_type from INFORMATION_SCHEMA.COLUMNS order by TABLE_NAME, ORDINAL_POSITION]]></description>
			<content:encoded><![CDATA[<pre class="prettyprint linenumstrigger linenums lang-sql">select TABLE_NAME, COLUMN_NAME, data_type
from INFORMATION_SCHEMA.COLUMNS
order by TABLE_NAME, ORDINAL_POSITION</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/sql-server-feldname-und-feldtyp-aller-tabellen//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datenbank User löschen &#8211; SQL Server 2008</title>
		<link>http://www.tamisch.com/allgemein/datenbank-user-loschen-sql-server-2008/</link>
		<comments>http://www.tamisch.com/allgemein/datenbank-user-loschen-sql-server-2008/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 08:20:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=213</guid>
		<description><![CDATA[Wenn man versucht einen Datenbank Benutzer bei SQL Server 2008 zu löschen, kann es vorkommen dass folgende Fehlermeldung kommt: &#8220;The database principal owns a schema in the database, and cannot be dropped.&#8221; SELECT s.name FROM sys.schemas s WHERE s.principal_id = USER_ID('xxx-user-xxx') ALTER AUTHORIZATION ON SCHEMA::xxx-schemaname-xxx TO dbo]]></description>
			<content:encoded><![CDATA[<p>Wenn man versucht einen Datenbank Benutzer bei <strong>SQL Server 2008</strong> zu löschen, kann es vorkommen dass folgende Fehlermeldung kommt:<br />
<strong>&#8220;The database principal owns a schema in the database, and cannot be dropped.&#8221;</strong></p>
<pre class="prettyprint linenumstrigger linenums lang-sql">SELECT s.name
FROM sys.schemas s
WHERE s.principal_id = USER_ID('xxx-user-xxx')</pre>
<pre class="prettyprint linenumstrigger linenums lang-sql">ALTER AUTHORIZATION ON SCHEMA::xxx-schemaname-xxx TO dbo</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/datenbank-user-loschen-sql-server-2008//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mehrere SSL Zertifikate auf der selben IP</title>
		<link>http://www.tamisch.com/allgemein/mehrere-ssl-zertifikate-auf-der-selben-ip/</link>
		<comments>http://www.tamisch.com/allgemein/mehrere-ssl-zertifikate-auf-der-selben-ip/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 10:44:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=177</guid>
		<description><![CDATA[Eine Erweiterung von TLS (Transport Layer Security) soll es ermöglichen mehrere SSL Zertifikate auf ein und der selben IP Adresse laufen zu lassen. Bisher war das nicht möglich weil der Browser den Host Header (Domain) erst nach Aufbau der SSL Verbindung zum Server übermittelte. Vereinfacht Ausgedrückt soll eine neue Erweiterung vom TSL (RFC 3546) einen [...]]]></description>
			<content:encoded><![CDATA[<p>Eine Erweiterung von TLS (Transport Layer Security) soll es ermöglichen mehrere SSL Zertifikate auf ein und der selben IP Adresse laufen zu lassen. Bisher war das nicht möglich weil der Browser den Host Header (Domain) erst nach Aufbau der SSL Verbindung zum Server übermittelte.</p>
<p>Vereinfacht Ausgedrückt soll eine neue Erweiterung vom TSL (RFC 3546) einen Standard definieren, dass der Host Header bereits vorher mitgeschickt wird, und somit der Server das richtige SSL Zertifikat zurückgeben kann.</p>
<p>Für den Apache gibt es nun seit der Version 2.2.12 ein Modul was dies ermöglichen soll. IIS 7 unterstützt dies noch nicht.</p>
<p>Probleme kann es auch mit den Browsern geben, denn auch diese müssen die Neuerung unterstützen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/mehrere-ssl-zertifikate-auf-der-selben-ip//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS3 Preloader</title>
		<link>http://www.tamisch.com/allgemein/flash-cs3-preloader/</link>
		<comments>http://www.tamisch.com/allgemein/flash-cs3-preloader/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 08:02:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=166</guid>
		<description><![CDATA[Es gibt haufenweise Tips für Preloader für CS3 oder CS4 welche bei mir nicht funktioniert haben , bis ich schließlich die Komponente (ca. 80 KB groß) in ein MovieClip verschoben haben (weg von Root). Danach hat alles wunderbar funktioniert. Wieso das so ist, kann ich leider nicht sagen, könnte sich aber um einen Bug handeln.]]></description>
			<content:encoded><![CDATA[<p>Es gibt haufenweise Tips für Preloader für CS3 oder CS4 welche bei mir nicht funktioniert haben , bis ich schließlich die Komponente (ca. 80 KB groß) in ein MovieClip verschoben haben (weg von Root). Danach hat alles wunderbar funktioniert. Wieso das so ist, kann ich leider nicht sagen, könnte sich aber um einen Bug handeln.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/flash-cs3-preloader//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TSQL Länge von Datenbankfeldern des Typs text</title>
		<link>http://www.tamisch.com/allgemein/tsql-lange-von-datenbankfeldern-des-typs-text/</link>
		<comments>http://www.tamisch.com/allgemein/tsql-lange-von-datenbankfeldern-des-typs-text/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:27:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=163</guid>
		<description><![CDATA[SQL Server 2005 &#8211; TSQL Um die Länge eines Textfeldes rauszufinden gibt es folgende SQL Anweisung: SELECT     LEN([gewünschtes Feld]) AS Expr1 FROM         [gewünschte Tabelle] Das funktioniert jedoch bei Datenbankfeldern des Typs text nicht. Hier gibt es folgende Anweisung: SELECT     DATALENGTH([gewünschtes Feld]) AS Expr1 FROM         [gewünschte Tabelle]]]></description>
			<content:encoded><![CDATA[<p><strong>SQL Server 2005 &#8211; TSQL</strong></p>
<p>Um die <strong>Länge eines Textfeldes</strong> rauszufinden gibt es folgende SQL Anweisung:</p>
<p>SELECT     LEN([gewünschtes Feld]) AS Expr1<br />
FROM         [gewünschte Tabelle]</p>
<p>Das funktioniert jedoch bei Datenbankfeldern des Typs <strong>text </strong>nicht.</p>
<p>Hier gibt es folgende Anweisung:</p>
<p>SELECT     DATALENGTH([gewünschtes Feld]) AS Expr1<br />
FROM         [gewünschte Tabelle]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/tsql-lange-von-datenbankfeldern-des-typs-text//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Windows 7</title>
		<link>http://www.tamisch.com/allgemein/microsoft-windows-7/</link>
		<comments>http://www.tamisch.com/allgemein/microsoft-windows-7/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:11:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=161</guid>
		<description><![CDATA[Microsoft Windows 7 RC (Release Candidate &#8211; Build 7100) ist erschienen. Unter RC versteht  man eine Vorabversion einer Software wo sich im Prinzip an der Funktionalität nichts mehr ändert (feature complete). Windows 7 RC kann hier runtergeladen werden. Das ISO ist 2,36 GB groß.]]></description>
			<content:encoded><![CDATA[<p><strong>Microsoft Windows 7 RC</strong> (Release Candidate &#8211; Build 7100) ist erschienen. Unter RC versteht  man eine Vorabversion einer <strong>Software</strong> wo sich im Prinzip an der Funktionalität nichts mehr ändert (feature complete).</p>
<p><strong>Windows 7 RC</strong> kann <strong><a href="http://www.microsoft.com/windows/windows-7/download.aspx">hier</a></strong> runtergeladen werden. Das ISO ist 2,36 GB groß.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/microsoft-windows-7//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panoramasoftware von Microsoft &#8211; Microsoft Image Composite Editor</title>
		<link>http://www.tamisch.com/allgemein/panoramasoftware-von-microsoft-microsoft-image-composite-editor/</link>
		<comments>http://www.tamisch.com/allgemein/panoramasoftware-von-microsoft-microsoft-image-composite-editor/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 14:16:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[360 Grad Panorama]]></category>
		<category><![CDATA[Image Composite Editor]]></category>
		<category><![CDATA[Kostenlos]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=137</guid>
		<description><![CDATA[Mit dem Image Composite Editor (ICE) von Microsoft kann man auf sehr einfache Weise aus mehreren Bildern ein 360 Grad Panorama erstellen. Das Programm ist sehr einfach zu bedienen und kostenlos erhältlich unter: http://research.microsoft.com]]></description>
			<content:encoded><![CDATA[<p>Mit dem <strong>Image Composite Editor (ICE) von Microsoft </strong>kann man auf sehr einfache Weise aus mehreren Bildern ein <strong>360 Grad Panorama</strong> erstellen. Das Programm ist sehr einfach zu bedienen und <strong>kostenlos </strong>erhältlich unter: <a href="http://research.microsoft.com" target="_blank">http://research.microsoft.com</a></p>
<div id="attachment_138" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-138" title="360-panorama-mit-dem-image-composite-editor-von-microsoft" src="http://www.tamisch.com/wp-content/uploads/2009/02/360-panorama-mit-dem-image-composite-editor-von-microsoft.jpg" alt="360-panorama-mit-dem-image-composite-editor-von-microsoft" width="450" height="326" /><p class="wp-caption-text">360 Panorama mit dem Image Composite Editor von Microsoft</p></div>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/panoramasoftware-von-microsoft-microsoft-image-composite-editor//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiederherstellen von SQL Server 2000 Backups unter SQL Server 2005</title>
		<link>http://www.tamisch.com/allgemein/wiederherstellen-von-sql-server-2000-backups-unter-sql-server-2005/</link>
		<comments>http://www.tamisch.com/allgemein/wiederherstellen-von-sql-server-2000-backups-unter-sql-server-2005/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 19:04:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.tamisch.com/?p=132</guid>
		<description><![CDATA[Um ein Backup, welches mit SQL Server 2000 erstellt wurde, unter SQL Server 2005 wieder herzustellen, muss man einen neue Datenbank erstellen (möglichst mit dem selben Namen) und dann das Backup einspielen (Achtung, überschreiben aktivieren unter Optionen). Dabei wird automatisch der Kompatibilitätsmodus mit 8.0 = SQL Server 2000 aktiviert. Diesen kann man nachher unter den [...]]]></description>
			<content:encoded><![CDATA[<p>Um ein <strong>Backup</strong>, welches mit <strong>SQL Server 2000</strong> erstellt wurde, unter <strong>SQL Server 2005</strong> wieder herzustellen, muss man einen neue <strong>Datenbank </strong>erstellen (möglichst mit dem selben Namen) und dann das <strong>Backup </strong>einspielen (Achtung, überschreiben aktivieren unter Optionen). Dabei wird automatisch der <strong>Kompatibilitätsmodus </strong>mit <strong>8.0 = SQL Server 2000</strong> aktiviert. Diesen kann man nachher unter den <strong>Eigenschaften der Datenbank</strong> wieder auf <strong>9.0 = SQL Server 2005</strong> zurücksetzen.</p>
<p>Versucht man ein Backup zurück zu spielen, ohne dass man vorher eine leere Datenbank erstellt hat, kann folgender Fehler auftreten:</p>
<p>Restore failed for Server &#8216;[Servername]\SQLEXPRESS&#8217;.  (Microsoft.SqlServer.Express.Smo)<br />
System.Data.SqlClient.SqlError: The operating system returned the error &#8217;5(Access is denied.)&#8217; while attempting &#8216;RestoreContainer::ValidateTargetForCreation&#8217; on &#8216;c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\[Datenbankname].MDF&#8217;. (Microsoft.SqlServer.Express.Smo)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamisch.com/allgemein/wiederherstellen-von-sql-server-2000-backups-unter-sql-server-2005//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

