<?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; Tablespace</title>
	<atom:link href="http://dbaanswers.wordpress.com/tag/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; 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>Oracle 9i: How to Create Dictionary Managed Tablespace</title>
		<link>http://dbaanswers.wordpress.com/2008/06/09/oracle-9i-how-to-create-dictionary-managed-tablespace/</link>
		<comments>http://dbaanswers.wordpress.com/2008/06/09/oracle-9i-how-to-create-dictionary-managed-tablespace/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 19:55:12 +0000</pubDate>
		<dc:creator>June Lee</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[Database Creation]]></category>
		<category><![CDATA[Space Management]]></category>
		<category><![CDATA[Tablespace]]></category>

		<guid isPermaLink="false">http://dbaanswers.wordpress.com/?p=4</guid>
		<description><![CDATA[When we tried to change tablespace storage paramters in a DBCA created database, we may get the following error information because the storage settings for locally managed tablespaces cannot be altered.
ORA-25143: default storage clause is not compatible with allocation policy.
Or, if you want to create a tablespace dictionary managed, you might get this error information:
ORA-12913: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dbaanswers.wordpress.com&blog=3922838&post=4&subd=dbaanswers&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When we tried to change tablespace storage paramters in a DBCA created database, we may get the following error information because the storage settings for locally managed tablespaces cannot be altered.</p>
<blockquote><p>ORA-25143: default storage clause is not compatible with allocation policy.</p></blockquote>
<p>Or, if you want to create a tablespace dictionary managed, you might get this error information:</p>
<blockquote><p>ORA-12913: Cannot create dictionary managed tablespace</p></blockquote>
<p>In Unix, type &#8220;oerr ora 12913&#8243;, you&#8217;ll get:</p>
<blockquote><p>*Cause: Attemp to create dictionary managed tablespace in database which has system tablespace as locally manged</p>
<p>*Action: Create a locally managed tablespace.</p></blockquote>
<p>Using the following SQL scripts, you will find the status of SYSTEM tablespace.</p>
<blockquote><p>select tablespace_name, extent_management<br />
from dba_tablespaces<br />
where tablespace_name = &#8216;SYSTEM&#8217;;</p></blockquote>
<blockquote><p>TABLESPACE_NAME      EXTENT_MAN<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-    &#8212;&#8212;&#8212;&#8211;<br />
SYSTEM                         LOCAL</p></blockquote>
<p>Every Oracle database contains a tablespace named SYSTEM, which Oracle creates automatically when the database is created. The SYSTEM tablespace is always online when the database is open. DBCA creates by default a database with locally managed system tablespace.</p>
<p>To take advantage of the benefits of locally managed tablespaces, you can create a locally managed SYSTEM tablespace, or you can migrate an existing dictionary managed SYSTEM tablespace to a locally managed format.</p>
<p>In a database with a locally managed SYSTEM tablespace, dictionary managed tablespaces cannot be created. It is possible to plug in a dictionary managed tablespace using the transportable feature, but it cannot be made writable.</p>
<p>Once a tablespace is locally managed, it cannot be reverted back to being dictionary managed.</p>
<p>You can create a database with a dictionary managed system tablespace. A simple SQL script can be created and then executed via SQL*Plus which will create your database with all the options you might want. A simple example:</p>
<blockquote><p>create database yourdb controlfile reuse<br />
maxdatafiles 1064<br />
character set “AL32UTF8″<br />
national character set “UTF8″<br />
datafile<br />
‘d:\yourfilesystem\yourdb_system_01.dbf’ size 250M<br />
extent management dictionary<br />
undo tablespace yourdb_undo<br />
datafile ‘d:\anotherfilesystem\yourdb_undo_01.dbf’ size 400M<br />
logfile<br />
group 1 (…………  etc… etc.</p></blockquote>
<p>This is a very simplistic example with limited options included. You can check the “create database” command options in any Oracle reference with the appropriate version of database you are using. The GUI tools such as DBCA don’t always provide the easiest nor complete options available for managing your Oracle databases.</p>
<p>Reference: <a href="http://itknowledgeexchange.techtarget.com/itanswers/oracle-9i-how-to-create-dictionary-managed-tablespace/">Oracle 9i How to Create Dictionary Managed Tablespace</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dbaanswers.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dbaanswers.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dbaanswers.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dbaanswers.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dbaanswers.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dbaanswers.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dbaanswers.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dbaanswers.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dbaanswers.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dbaanswers.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dbaanswers.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dbaanswers.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dbaanswers.wordpress.com&blog=3922838&post=4&subd=dbaanswers&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dbaanswers.wordpress.com/2008/06/09/oracle-9i-how-to-create-dictionary-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>
	</item>
	</channel>
</rss>