<?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 regarding database size in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514591#M651671</link>
    <description>Hi&lt;BR /&gt;Can any one help me how can I find out the database size, I have HP-UX server ( HP 9000 A-CLASS A180 )&lt;BR /&gt;&lt;BR /&gt;From console how can I find out the database size of my oracle database.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Thu, 15 Oct 2009 04:40:25 GMT</pubDate>
    <dc:creator>Dheeraj Tanwar</dc:creator>
    <dc:date>2009-10-15T04:40:25Z</dc:date>
    <item>
      <title>regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514591#M651671</link>
      <description>Hi&lt;BR /&gt;Can any one help me how can I find out the database size, I have HP-UX server ( HP 9000 A-CLASS A180 )&lt;BR /&gt;&lt;BR /&gt;From console how can I find out the database size of my oracle database.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 15 Oct 2009 04:40:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514591#M651671</guid>
      <dc:creator>Dheeraj Tanwar</dc:creator>
      <dc:date>2009-10-15T04:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514592#M651672</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Please contact your DBA who is having the SA permission to do this task...&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Thu, 15 Oct 2009 04:45:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514592#M651672</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-10-15T04:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514593#M651673</link>
      <description>Suraj I have to take care of both the parts Server Admin as well as Database Admin.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Oct 2009 04:56:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514593#M651673</guid>
      <dc:creator>Dheeraj Tanwar</dc:creator>
      <dc:date>2009-10-15T04:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514594#M651674</link>
      <description>&lt;!--!*#--&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;You should "cd" to the top of your database tree and do a "du -ksh --total *"&lt;BR /&gt;&lt;BR /&gt;This would give you a hint about the total size of the files from your current directory&lt;BR /&gt;&lt;BR /&gt;Sample:&lt;BR /&gt;&lt;BR /&gt; su - hpux_oracle_instance_user&lt;BR /&gt; cd $ORACLE_BASE&lt;BR /&gt; du -ksh --total *&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards from Romania,&lt;BR /&gt;Horia Chirculescu</description>
      <pubDate>Thu, 15 Oct 2009 07:25:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514594#M651674</guid>
      <dc:creator>Horia Chirculescu</dc:creator>
      <dc:date>2009-10-15T07:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514595#M651675</link>
      <description>&lt;!--!*#--&gt;... and yould look for oradata/&lt;BR /&gt;&lt;BR /&gt;Or better give the command like this:&lt;BR /&gt;du -ksh --total $ORACLE_BASE/oradata/*&lt;BR /&gt;&lt;BR /&gt;Best regards from Romania,&lt;BR /&gt;Horia Chirculescu</description>
      <pubDate>Thu, 15 Oct 2009 07:31:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514595#M651675</guid>
      <dc:creator>Horia Chirculescu</dc:creator>
      <dc:date>2009-10-15T07:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514596#M651676</link>
      <description>&amp;gt;&amp;gt;du -ksh --total &lt;BR /&gt;&lt;BR /&gt;The '-h' and the '--total' options do not exist in du on HP-UX.&lt;BR /&gt;&lt;BR /&gt;If you have sqlplus access do:&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; Select sum(bytes) from dba_data_files ;&lt;BR /&gt;&lt;BR /&gt;SUM(BYTES)&lt;BR /&gt;----------&lt;BR /&gt;4.1958E+11&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;With the notation above, move the decimal place to the right 11 times to come up with bytes:&lt;BR /&gt;&lt;BR /&gt;419,580,000,000 bytes which converts roughly to 419 GB.&lt;BR /&gt;&lt;BR /&gt;Your mileage may vary depending on your DB size.</description>
      <pubDate>Thu, 15 Oct 2009 12:21:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514596#M651676</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-10-15T12:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514597#M651677</link>
      <description>Thanks Patrick Wallek for giving me solution</description>
      <pubDate>Fri, 16 Oct 2009 03:21:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514597#M651677</guid>
      <dc:creator>Dheeraj Tanwar</dc:creator>
      <dc:date>2009-10-16T03:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514598#M651678</link>
      <description>What you mean by DB size&lt;BR /&gt;DB file&lt;BR /&gt;or the size DB need in memory&lt;BR /&gt;&lt;BR /&gt;For DB files you will have to go to DB directory and see size of DB files.&lt;BR /&gt;&lt;BR /&gt;For size of DB need to start &lt;BR /&gt;check init.ora file for various parameter&lt;BR /&gt;eg SGA size, shared pool size.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Oct 2009 03:36:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514598#M651678</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2009-10-16T03:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514599#M651679</link>
      <description>Since you are also the dba you could log into the database and query:&lt;BR /&gt;1. select sum(bytes)/1024/1024 from dba_data_files&lt;BR /&gt;&lt;BR /&gt;2. select sum(bytes)/1024/1024 from dba_temp_files;&lt;BR /&gt;&lt;BR /&gt;The total of the result of these two queries will give you the Mb for all the data files that support the tablespaces and the temp files</description>
      <pubDate>Fri, 16 Oct 2009 12:10:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514599#M651679</guid>
      <dc:creator>Richard A Lemons</dc:creator>
      <dc:date>2009-10-16T12:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: regarding database size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514600#M651680</link>
      <description>&lt;!--!*#--&gt;"The '-h' and the '--total' options do not exist in du on HP-UX."&lt;BR /&gt;&lt;BR /&gt;Patrick Wallek is right about this. But for the clarity of the post should mention that anyone can install the gnu coreutils from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.gnu.org/software/coreutils/" target="_blank"&gt;http://www.gnu.org/software/coreutils/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This version of du have those options I am talking about and a lot more usefull additional ones.&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;Horia.&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Nov 2009 09:28:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-database-size/m-p/4514600#M651680</guid>
      <dc:creator>Horia Chirculescu</dc:creator>
      <dc:date>2009-11-04T09:28:03Z</dc:date>
    </item>
  </channel>
</rss>

