<?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 Re: How do I view Oracle database datafile properties? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075994#M670337</link>
    <description>Hmm, if you do not know to take that example presented and exten it to display the required propery, then yo might not be in the right position to make modifications to it.&lt;BR /&gt;&lt;BR /&gt;Just do a &lt;BR /&gt;SQL&amp;gt; DESCRIBE DBA_DATA_FILES;&lt;BR /&gt;You'll see a column called 'AUTOEXTENSIBLE'.&lt;BR /&gt;&lt;BR /&gt;Just add to the example and voila.&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Oct 2007 20:46:17 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2007-10-24T20:46:17Z</dc:date>
    <item>
      <title>How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075991#M670334</link>
      <description>I'm running Oracle 9i on HP-UX 11i v1.  I need to determine the properties of the current database datafiles.  How can I do that?&lt;BR /&gt;&lt;BR /&gt;GBR</description>
      <pubDate>Wed, 24 Oct 2007 13:15:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075991#M670334</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2007-10-24T13:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075992#M670335</link>
      <description>&lt;!--!*#--&gt;Please define 'properties'?&lt;BR /&gt;Size? Free space? Filespecs? --&amp;gt; Ask Oracle with SQLplus&lt;BR /&gt;Protection? Physical device? Dates? --&amp;gt; &lt;BR /&gt;  Ask HPUX after askign SQL for a list of files.&lt;BR /&gt;&lt;BR /&gt;Here is a trivial SQL script to get you going:&lt;BR /&gt;&lt;BR /&gt;column type format a4&lt;BR /&gt;column Tablespace format a15&lt;BR /&gt;column file format a45&lt;BR /&gt;column id format 99&lt;BR /&gt;column mb format 999999&lt;BR /&gt;set pages 9999&lt;BR /&gt;set heading off&lt;BR /&gt;set FEEDBACK off&lt;BR /&gt;select 'Redo', 'group ' || l.group# "Tablespace", l.group# "Id", l.bytes/(1024*1024) "MB",&lt;BR /&gt;    MEMBER "File" from v$logfile f, v$log l where l.group# = f.group#&lt;BR /&gt;union&lt;BR /&gt;select 'Data' "Type", tablespace_name "Tablespace", FILE_ID "Id", bytes/(1024*1024) "MB",&lt;BR /&gt;    file_name "File" from dba_data_files&lt;BR /&gt;union&lt;BR /&gt;select 'Temp' "Type", tablespace_name "Tablespace", FILE_ID "Id", bytes/(1024*1024) "MB",&lt;BR /&gt;    file_name "File" from dba_temp_files&lt;BR /&gt;union&lt;BR /&gt;select 'Ctrl' "Type", 'Control_file' "Tablespace", rownum "Id", 0 "MB",&lt;BR /&gt;    name "File" from v$controlfile&lt;BR /&gt;order by 1,2&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Hein van den Heuvel.&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Oct 2007 19:17:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075992#M670335</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-10-24T19:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075993#M670336</link>
      <description>I guess I could have been a bit more specific with my question.  I'm looking for the autoextend properties of the datafiles within my database, before I go and start modifying the properties on them.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;GBR</description>
      <pubDate>Wed, 24 Oct 2007 20:05:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075993#M670336</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2007-10-24T20:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075994#M670337</link>
      <description>Hmm, if you do not know to take that example presented and exten it to display the required propery, then yo might not be in the right position to make modifications to it.&lt;BR /&gt;&lt;BR /&gt;Just do a &lt;BR /&gt;SQL&amp;gt; DESCRIBE DBA_DATA_FILES;&lt;BR /&gt;You'll see a column called 'AUTOEXTENSIBLE'.&lt;BR /&gt;&lt;BR /&gt;Just add to the example and voila.&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Oct 2007 20:46:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075994#M670337</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-10-24T20:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075995#M670338</link>
      <description>Hi GBR,&lt;BR /&gt;&lt;BR /&gt;You can also see a windoze view of autoextending datafiles in Oracle Enterprise Manager -&amp;gt; Databases [select the instance] -&amp;gt; Storage -&amp;gt; Tablespaces -&amp;gt; Datafiles&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;BR /&gt;Eric Antunes</description>
      <pubDate>Thu, 25 Oct 2007 05:09:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075995#M670338</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2007-10-25T05:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075996#M670339</link>
      <description>hi GBR,&lt;BR /&gt;&lt;BR /&gt;You can query the dba_data_files data dictionary for more information.&lt;BR /&gt;&lt;BR /&gt;An example query is:&lt;BR /&gt;  SELECT file_name, ROUND (BYTES / 1024 / 1024, 2), blocks, autoextensible,&lt;BR /&gt;         NVL (increment_by, 0), maxbytes, maxblocks, status, maxblocks, file_id&lt;BR /&gt;    FROM SYS.dba_data_files&lt;BR /&gt;&lt;BR /&gt;The different columns that can be queried are:&lt;BR /&gt;FILE_NAME&lt;BR /&gt;FILE_ID&lt;BR /&gt;TABLESPACE_NAME&lt;BR /&gt;BYTES&lt;BR /&gt;BLOCKS&lt;BR /&gt;STATUS&lt;BR /&gt;RELATIVE_FNO&lt;BR /&gt;AUTOEXTENSIBLE&lt;BR /&gt;MAXBYTES&lt;BR /&gt;MAXBLOCKS&lt;BR /&gt;INCREMENT_BY&lt;BR /&gt;USER_BYTES&lt;BR /&gt;USER_BLOCKS&lt;BR /&gt;ONLINE_STATUS&lt;BR /&gt;&lt;BR /&gt;What other information do you require?&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Thu, 25 Oct 2007 23:19:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075996#M670339</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-10-25T23:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I view Oracle database datafile properties?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075997#M670340</link>
      <description>Thanks, I have what I need now to poke around.</description>
      <pubDate>Thu, 27 Nov 2008 15:19:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-view-oracle-database-datafile-properties/m-p/5075997#M670340</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2008-11-27T15:19:25Z</dc:date>
    </item>
  </channel>
</rss>

