<?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>Square DBA - Oracle DBA Talk &#187; tablespace</title>
	<atom:link href="http://www.squaredba.com/tag/tablespace/feed" rel="self" type="application/rss+xml" />
	<link>http://www.squaredba.com</link>
	<description>Oracle DBA Forum, Articles, FAQs, Scripts, OCP Test Papers, Free Blog, DBA Training</description>
	<lastBuildDate>Mon, 18 Jul 2011 17:24:02 +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>Move and partitioned index to a new tablespace</title>
		<link>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html</link>
		<comments>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html#comments</comments>
		<pubDate>Mon, 18 Jul 2011 17:24:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[Partitioned Tables]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=262</guid>
		<description><![CDATA[To dynamically move a partitioned index to a new tablespace run the following SQL select &#8216;Alter index &#8216;&#124;&#124;INDEX_OWNER&#124;&#124;&#8217;.'&#124;&#124;INDEX_NAME&#124;&#124;&#8217; rebuild partition &#8216;&#124;&#124;PARTITION_NAME&#124;&#124;&#8217; tablespace CDR_DETAIL_INDEX1;&#8217; from dba_ind_partitions where TABLESPACE_NAME = &#8216;DW_CDR_DETAIL&#8217;;]]></description>
		<wfw:commentRss>http://www.squaredba.com/move-and-partitioned-index-to-a-new-tablespace-262.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change a table&#8217;s default tablespace</title>
		<link>http://www.squaredba.com/change-a-tables-default-tablespace-257.html</link>
		<comments>http://www.squaredba.com/change-a-tables-default-tablespace-257.html#comments</comments>
		<pubDate>Mon, 18 Jul 2011 17:03:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[Partitioned Tables]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=257</guid>
		<description><![CDATA[Do you need to change a table&#8217;s default tablespace? It&#8217;s pretty simple: ALTER TABLE {OWNER}.{TABLE NAME} MODIFY DEFAULT ATTRIBUTES TABLESPACE {NEW TABLESPACE NAME}; This does not move the table it only changes the attribute for the default tablespace. This is helpful if you are adding partitions, but not specifying the tablespace.]]></description>
		<wfw:commentRss>http://www.squaredba.com/change-a-tables-default-tablespace-257.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script to shrink a tablespace</title>
		<link>http://www.squaredba.com/script-to-shrink-a-tablespace-189.html</link>
		<comments>http://www.squaredba.com/script-to-shrink-a-tablespace-189.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 16:50:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[datafiles]]></category>
		<category><![CDATA[High Water Mark]]></category>
		<category><![CDATA[HWM]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=189</guid>
		<description><![CDATA[To shrink a tablespace in Oracle you actually need to shrink the datafiles that make up the tablespace. You can only shrink a datafile down to the high water mark (HWM). There are several methods to reduce the HWM, but I am not going to address those in this post. If you want to return [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/script-to-shrink-a-tablespace-189.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving tables to a new tablespace</title>
		<link>http://www.squaredba.com/moving-tables-to-a-new-tablespace-20.html</link>
		<comments>http://www.squaredba.com/moving-tables-to-a-new-tablespace-20.html#comments</comments>
		<pubDate>Tue, 09 Sep 2008 17:03:05 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[performace]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=20</guid>
		<description><![CDATA[Need to move a table to a new tablespace?  That is just what I needed to do today.  I have a couple if hot datafiles that I need to relieve the load on.  Basically I have one staging tablespace for loading and manipulating data beforethe data is moved to the production tables.  I have several [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/moving-tables-to-a-new-tablespace-20.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving an Oracle tablespace</title>
		<link>http://www.squaredba.com/moving-an-oracle-tablespace-10.html</link>
		<comments>http://www.squaredba.com/moving-an-oracle-tablespace-10.html#comments</comments>
		<pubDate>Mon, 09 Jun 2008 20:31:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Oracle How-To]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://www.squaredba.com/?p=10</guid>
		<description><![CDATA[Today I needed to move a tablespace between mount points. My primary mount points were starting to fill up and I needed to make some breathing room. I recently added secondary storage to the server. I say secondary because the storage just added is on less spindles and slightly slower disks. The idea is to [...]]]></description>
		<wfw:commentRss>http://www.squaredba.com/moving-an-oracle-tablespace-10.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 352/409 objects using disk: basic

Served from: www.squaredba.com @ 2012-02-10 12:38:19 -->
