<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>Lukyn.cz blog page</title>
		<link>http://www.lukyn.cz/blog/index.php</link>
		<description><![CDATA[Lukyn.cz]]></description>
		<image>
			<url>http://www.lukyn.cz/blog/interface/feed.png</url>
			<link>http://www.lukyn.cz/blog/index.php</link>
			<title>Lukyn.cz blog page</title>
			<description><![CDATA[Lukyn.cz blog page]]></description>
		</image>
		<copyright>Copyright 2012, Lukyn</copyright>
		<managingEditor>email@lukyn.cz (Lukyn)</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.4.0</generator>
		<item>
			<title>MSQL - Disable all nonclustered indexes  (vypnutí všech neklastrovaných indexů)</title>
			<link>http://www.lukyn.cz/blog/index.php?entry=entry100204-082947</link>
			<description><![CDATA[BEGIN TRAN<br />-- vypne všechny nonclustered indexy (SQL server 2005)<br />DECLARE @indexName VARCHAR(128)<br />DECLARE @tableName VARCHAR(128)<br /><br />DECLARE [indexes] CURSOR FOR<br />	<br />	SELECT		[sysindexes].[name] AS [Index],	[sysobjects].[name] AS [Table]--,*<br />	FROM		[sysindexes]<br />	INNER JOIN	[sysobjects]	ON		[sysindexes].[id] = [sysobjects].[id]<br />	<br />	WHERE		[sysindexes].[name] IS NOT NULL<br />	AND		[sysobjects].[type] = &#039;U&#039;<br />	AND indid&lt;&gt;1 -- není to PK (pk má vždy 1)<br />	AND ([sysindexes].status &amp; 64) = 0 -- vyloučit statistiky (pokud chci statistiky tak &lt;&gt;0)<br /><br />OPEN [indexes]<br /><br />FETCH NEXT FROM [indexes] INTO @indexName, @tableName<br /><br />WHILE @@FETCH_STATUS = 0<br />BEGIN<br /><br />	exec ( &#039;ALTER INDEX [&#039; + @indexName + &#039;] ON [&#039; + @tableName + &#039;] DISABLE&#039;)<br />	PRINT &#039;ALTER INDEX [&#039; + @indexName + &#039;] ON [&#039; + @tableName + &#039;] DISABLE&#039;<br /><br />	FETCH NEXT FROM [indexes] INTO @indexName, @tableName<br />END<br /><br />CLOSE		[indexes]<br />DEALLOCATE	[indexes]<br /><br />--COMMIT TRAN<br />ROLLBACK TRAN]]></description>
			<guid isPermaLink="true">http://www.lukyn.cz/blog/?entry=entry100204-082947</guid>
			<author>email@lukyn.cz</author>
			<pubDate>Thu, 04 Feb 2010 07:29:47 GMT</pubDate>
		</item>
		<item>
			<title>Veřejné fotky na picasa webu</title>
			<link>http://www.lukyn.cz/blog/index.php?entry=entry090506-162754</link>
			<description><![CDATA[<a href="http://picasaweb.google.com/www.lukyn.cz" target="_blank">Veřejné fotky na picasa webu</a> ]]></description>
			<guid isPermaLink="true">http://www.lukyn.cz/blog/?entry=entry090506-162754</guid>
			<author>email@lukyn.cz</author>
			<pubDate>Wed, 06 May 2009 14:27:54 GMT</pubDate>
		</item>
		<item>
			<title>Fotky z vyjížďky do Říček</title>
			<link>http://www.lukyn.cz/blog/index.php?entry=entry060924-222603</link>
			<description><![CDATA[<a href="http://lukyn.cz/ricky20060924/ricky.html" target="_blank"><br /><img src="http://lukyn.cz/ricky20060924/IMG_4590_small.JPG" border=0 alt=''><br /></a> <br /><br /><br /><br /><br />]]></description>
			<guid isPermaLink="true">http://www.lukyn.cz/blog/?entry=entry060924-222603</guid>
			<author>email@lukyn.cz</author>
			<pubDate>Sun, 24 Sep 2006 20:26:03 GMT</pubDate>
		</item>
		<item>
			<title><a href="http://lukyn.cz/pass.html" target="_blank">Fotky Ochoz 2005</a> </title>
			<link>http://www.lukyn.cz/blog/index.php?entry=entry051101-085932</link>
			<description><![CDATA[<a href="http://lukyn.cz/pass.html" target="_blank"><img src="http://lukyn.cz/ochoz2005/p1010001_small.jpg" border=0 alt=''></a> ]]></description>
			<guid isPermaLink="true">http://www.lukyn.cz/blog/?entry=entry051101-085932</guid>
			<author>email@lukyn.cz</author>
			<pubDate>Tue, 01 Nov 2005 07:59:32 GMT</pubDate>
		</item>
		<item>
			<title>Fotky z Jitřenky</title>
			<link>http://www.lukyn.cz/blog/index.php?entry=entry050305-170100</link>
			<description><![CDATA[<a href="http://www.lukyn.cz/jitrenka_2005a/" target="_blank">Jitřenka A</a> <br /><a href="http://www.lukyn.cz/jitrenka_2005b/" target="_blank">Jitřenka B</a> ]]></description>
			<guid isPermaLink="true">http://www.lukyn.cz/blog/?entry=entry050305-170100</guid>
			<author>email@lukyn.cz</author>
			<pubDate>Sat, 05 Mar 2005 16:01:00 GMT</pubDate>
		</item>
	</channel>
</rss>

