<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to Create Database With Dictionary Managed Tablespace in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133477#M727802</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Im working with Orcale 9i, and i need to create a database with Dictionary Managed System Tablespace. DBCA creates database by default with locally managed system tablespace. how can i change it?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for any help.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;&lt;BR /&gt;Pinki</description>
    <pubDate>Tue, 22 Jan 2008 15:15:41 GMT</pubDate>
    <dc:creator>Pinki Meggi</dc:creator>
    <dc:date>2008-01-22T15:15:41Z</dc:date>
    <item>
      <title>How to Create Database With Dictionary Managed Tablespace</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133477#M727802</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Im working with Orcale 9i, and i need to create a database with Dictionary Managed System Tablespace. DBCA creates database by default with locally managed system tablespace. how can i change it?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for any help.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;&lt;BR /&gt;Pinki</description>
      <pubDate>Tue, 22 Jan 2008 15:15:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133477#M727802</guid>
      <dc:creator>Pinki Meggi</dc:creator>
      <dc:date>2008-01-22T15:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Database With Dictionary Managed Tablespace</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133478#M727803</link>
      <description>You can have the dbca just save a script for you off all the things it's going to do, instead of having it actually run the database creation.  Let it create the script, and then you can go edit that script, and then run it.&lt;BR /&gt;&lt;BR /&gt;Look for the like lines "create tablespace" and then add the options you would like including "local", and I'd recommend at that time, to go ahead and use uniform allocation methods, and those to the script at that time as well.&lt;BR /&gt;&lt;BR /&gt;There's some good examples to read on here:&lt;BR /&gt;&lt;A href="http://kp-oracledba.com/blog/2007/03/15/how-to-create-and-alter-oracle-tablespace/" target="_blank"&gt;http://kp-oracledba.com/blog/2007/03/15/how-to-create-and-alter-oracle-tablespace/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The above having examples for locally managed as well as uniform allocation with locally managed tablespaces.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Jan 2008 16:25:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133478#M727803</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2008-01-22T16:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create Database With Dictionary Managed Tablespace</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133479#M727804</link>
      <description>Pinki,&lt;BR /&gt;&lt;BR /&gt;You have to omit the 'EXTENT MANAGEMENT LOCAL' in the create database statement to create a dictionary managed system tablespace.&lt;BR /&gt;&lt;BR /&gt;For example in Oracle 10g (I don't have 9i at hand, but I'd say syntaxwise it should be the same except for sysaux ts), assuming you've properly configured the initDBA.ora file.&lt;BR /&gt;&lt;BR /&gt;$ export ORACLE_SID=DBA&lt;BR /&gt;$ sqlplus / as sysdba&lt;BR /&gt;&lt;BR /&gt;SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jan 23 01:51:18 2008&lt;BR /&gt;&lt;BR /&gt;Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.&lt;BR /&gt;&lt;BR /&gt;Connected to an idle instance.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; startup nomount&lt;BR /&gt;ORACLE instance started.&lt;BR /&gt;&lt;BR /&gt;Total System Global Area  264241152 bytes&lt;BR /&gt;Fixed Size                  1261248 bytes&lt;BR /&gt;Variable Size             226492736 bytes&lt;BR /&gt;Database Buffers           33554432 bytes&lt;BR /&gt;Redo Buffers                2932736 bytes&lt;BR /&gt;SQL&amp;gt; &lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; create database DBA&lt;BR /&gt;  2  datafile '/u02/oradata/DBA/system01.dbf' size 100M&lt;BR /&gt;  3  undo tablespace undotbs1 datafile '/u02/oradata/DBA/undotbs1_01.dbf' size 100M&lt;BR /&gt;  4  sysaux datafile '/u02/oradata/DBA/sysaux01.dbf' size 100M&lt;BR /&gt;  5  /&lt;BR /&gt;&lt;BR /&gt;Database created.&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;You'll eventually see in the alert log, your system tablespace created as:&lt;BR /&gt;&lt;BR /&gt;Wed Jan 23 02:11:14 2008&lt;BR /&gt;Completed: create tablespace SYSTEM datafile  '/u02/oradata/DBA/system01.dbf' size 100M&lt;BR /&gt;  default storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online&lt;BR /&gt;....&lt;BR /&gt;&lt;BR /&gt;Also, I assume you understand the caveats and disadvantages of using rather old-type, non-recommended, dictionary managed tablespaces.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;&lt;BR /&gt;-Ariel</description>
      <pubDate>Wed, 23 Jan 2008 06:18:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-database-with-dictionary-managed-tablespace/m-p/4133479#M727804</guid>
      <dc:creator>Ariel Cary</dc:creator>
      <dc:date>2008-01-23T06:18:55Z</dc:date>
    </item>
  </channel>
</rss>

