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

<channel>
	<title>Oracle DBA from Beginning &#187; Local Managed Tablespace</title>
	<atom:link href="http://dbaanswers.wordpress.com/tag/local-managed-tablespace/feed/" rel="self" type="application/rss+xml" />
	<link>http://dbaanswers.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jun 2008 20:49:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dbaanswers.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/a6c492f6452c79ab59f696e0d8c17813?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Oracle DBA from Beginning &#187; Local Managed Tablespace</title>
		<link>http://dbaanswers.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dbaanswers.wordpress.com/osd.xml" title="Oracle DBA from Beginning" />
		<item>
		<title>Storage Parameters in a Local Managed Tablespace</title>
		<link>http://dbaanswers.wordpress.com/2008/06/11/storage-parameters-in-an-oracle-9i-local-managed-tablespace/</link>
		<comments>http://dbaanswers.wordpress.com/2008/06/11/storage-parameters-in-an-oracle-9i-local-managed-tablespace/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 19:10:08 +0000</pubDate>
		<dc:creator>June Lee</dc:creator>
				<category><![CDATA[Concepts]]></category>
		<category><![CDATA[Local Managed Tablespace]]></category>

		<guid isPermaLink="false">http://dbaanswers.wordpress.com/?p=8</guid>
		<description><![CDATA[Storage_Clause:

INITIAL
Specify in bytes the size of the object&#8217;s first extent. Oracle allocates space for this extent when you create the schema object. Use K or M to specify this size in kilobytes or megabytes.
The default value is the size of 5 data blocks. In tablespaces with manual segment-space management, the minimum value is the size [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dbaanswers.wordpress.com&blog=3922838&post=8&subd=dbaanswers&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Storage_Clause:</strong></p>
<p><img class="alignleft" style="float:left;" src="http://www.cs.bris.ac.uk/maintain/oracle9docs/server.920/a96540/clauses13.gif" alt="Storage_Clause" width="451" height="490" /></p>
<p><strong>INITIAL</strong></p>
<p>Specify in bytes the size of the object&#8217;s first extent. Oracle allocates space for this extent when you create the schema object. Use K or M to specify this size in kilobytes or megabytes.</p>
<p>The default value is the size of 5 data blocks. In tablespaces with manual segment-space management, the minimum value is the size of 2 data blocks plus one data block for each free list group you specify. In tablespaces with automatic segment-space management, the minimum value is 5 data blocks. The maximum value depends on your operating system.</p>
<p>In dictionary-managed tablespaces, if MINIMUM EXTENT was specified for the tablespace when it was created, then Oracle rounds the value of INITIAL up to the specified MINIMUM EXTENT size if necessary. If MINIMUM EXTENT was not specified, then Oracle rounds the INITIAL extent size for segments created in that tablespace up to the minimum value (see preceding paragraph), or to multiples of 5 blocks if the requested size is greater than 5 blocks.</p>
<p>In locally managed tablespaces, Oracle uses the value of INITIAL in conjunction with the size of extents specified for the tablespace to determine the object&#8217;s first extent. For example, in a uniform locally managed tablespace with 5M extents, if you specify an INITIAL value of 1M, then Oracle creates five 1M extents.</p>
<p>Restriction on INITIAL: You cannot specify INITIAL in an ALTER statement.</p>
<p><strong>MINEXTENTS</strong></p>
<p>Specify the total number of extents to allocate when the object is created. This parameter lets you allocate a large amount of space when you create an object, even if the space available is not contiguous. The default and minimum value is 1, meaning that Oracle allocates only the initial extent, except for rollback segments, for which the default and minimum value is 2. The maximum value depends on your operating system.</p>
<p>If the MINEXTENTS value is greater than 1, then Oracle calculates the size of subsequent extents based on the values of the INITIAL, NEXT, and PCTINCREASE storage parameters.</p>
<p>When changing the value of MINEXTENTS (that is, in an ALTER statement), you can reduce the value from its current value, but you cannot increase it. Resetting MINEXTENTS to a smaller value might be useful, for example, before a TRUNCATE &#8230; DROP STORAGE statement, if you want to ensure that the segment will maintain a minimum number of extents after the TRUNCATE operation.<br />
Restriction on MINEXTENTS</p>
<p><strong><em>You cannot change the value of MINEXTENTS for an object that resides in a locally managed tablespace.</em></strong></p>
<p><strong>MAXEXTENTS</strong></p>
<p>Specify the total number of extents, including the first, that Oracle can allocate for the object. The minimum value is 1 (except for rollback segments, which always have a minimum value of 2). The default value depends on your data block size.<br />
Restriction on MAXEXTENTS<br />
<strong><br />
<em>You cannot change the value of MAXEXTENTS for an object that resides in a locally managed tablespace.</em></strong></p>
<p>UNLIMITED</p>
<p>Specify UNLIMITED if you want extents to be allocated automatically as needed. Oracle Corporation recommends this setting as a way to minimize fragmentation.</p>
<p>However, do not use this clause for rollback segments. Rogue transactions containing inserts, updates, or deletes that continue for a long time will continue to create new extents until a disk is full.</p>
<p>Reference:</p>
<p>1. <a href="http://www.cs.bris.ac.uk/maintain/oracle9docs/server.920/a96540/clauses9a.htm">http://www.cs.bris.ac.uk/maintain/oracle9docs/server.920/a96540/clauses9a.htm</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dbaanswers.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dbaanswers.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dbaanswers.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dbaanswers.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dbaanswers.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dbaanswers.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dbaanswers.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dbaanswers.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dbaanswers.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dbaanswers.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dbaanswers.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dbaanswers.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dbaanswers.wordpress.com&blog=3922838&post=8&subd=dbaanswers&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dbaanswers.wordpress.com/2008/06/11/storage-parameters-in-an-oracle-9i-local-managed-tablespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cca564445149cfcee064c1729082330d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbaliving</media:title>
		</media:content>

		<media:content url="http://www.cs.bris.ac.uk/maintain/oracle9docs/server.920/a96540/clauses13.gif" medium="image">
			<media:title type="html">Storage_Clause</media:title>
		</media:content>
	</item>
	</channel>
</rss>