<?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: big full backup problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039425#M906871</link>
    <description>This is a fragmentation issue and has always been a problem with fixed table sizes.  All oracle file systems are 99% full.  So defragmentation is only allowed through exporting and importing.&lt;BR /&gt;&lt;BR /&gt;If the oracle file system was 85% full then you could use online JFS's defrag. utility.&lt;BR /&gt;&lt;BR /&gt;You're other alternative is to dbstop and copy the data in and out from the O/S instead of using Oracle.&lt;BR /&gt;&lt;BR /&gt;cp -p -r /dir/* /temp/*&lt;BR /&gt;rm /dir/*&lt;BR /&gt;cp -p -r /temp/* /dir/*&lt;BR /&gt;&lt;BR /&gt;Data is not fragmented when loaded for the first time or copied back in after deletion.</description>
    <pubDate>Sat, 02 Aug 2003 15:34:20 GMT</pubDate>
    <dc:creator>Michael Steele_2</dc:creator>
    <dc:date>2003-08-02T15:34:20Z</dc:date>
    <item>
      <title>big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039420#M906866</link>
      <description>Hello,&lt;BR /&gt;I have a backup problem with Oracle: to make a full database backup I put the database in backup mode and backup de tablespaces with cpio and gzip. In time this backup was getting bigger and bigger so that a time ago I cleared some very big tables. Now is the data 1/10th from the data before but the backup size keeps the same (I also make an exp. witch is 1/10 of the original size). I think I understand why: I cleared the table but the tablespaces are as patitions on a OS, clearing a file only clears the pointer to this file, the file contains remains on the harddisk.&lt;BR /&gt;Does anybody knows how to really clear a tablespace so that my full backup is smaller again or is the only way to delete the tablesspaces, make them again and do an import?&lt;BR /&gt;I use Oracle 7.3.3&lt;BR /&gt;Thanks,&lt;BR /&gt;Robert Verhagen.&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Aug 2003 12:16:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039420#M906866</guid>
      <dc:creator>Hr. RJH Verhagen</dc:creator>
      <dc:date>2003-08-01T12:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039421#M906867</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;There is a chance you can shrink some of the datafiles.  We can only shrink files back to their high water mark -- if there is an extent way out at the end of a file -- we'll not be able to shrink it.&lt;BR /&gt;&lt;BR /&gt;If not, the only thing that will undo this is to recreate the database (exp, imp).&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 01 Aug 2003 12:51:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039421#M906867</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-08-01T12:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039422#M906868</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;Script to guide you on which datafiles can be shrinked is attached!&lt;BR /&gt;&lt;BR /&gt;CAUTION: Adjust the values accordingly otherwise you may run into space problems.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 01 Aug 2003 12:53:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039422#M906868</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-08-01T12:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039423#M906869</link>
      <description>&lt;BR /&gt;I don't know how many tables and tablespaces you're talking about here, but if it's not too many, you could try this:&lt;BR /&gt;&lt;BR /&gt;1) Create a new tablespace large enough to hold what's in the one you want to shrink&lt;BR /&gt;2) Find all tables in the tablespace you want to shrink and move them to the new tablespace using&lt;BR /&gt;SQL&amp;gt;  alter table &lt;OBJECTNAME&gt;&lt;BR /&gt;      move tablespace &lt;NEW_TABLESPACE_NAME&gt;;&lt;BR /&gt;If you're going to leave them there, recreate your indexes in the new tablespace too.&lt;BR /&gt;3) When they're all moved, drop the original tablespace&lt;BR /&gt;4) Now, if you want, you can re-create the original tablespace with a smaller size&lt;BR /&gt;5) Reverse the procedure in step 2 to move the tables back to the original tablespace (if desired) and re-build the indexes.&lt;BR /&gt;&lt;BR /&gt;This should work in the higher 8i versions and above.&lt;BR /&gt;&lt;BR /&gt;-greg&lt;/NEW_TABLESPACE_NAME&gt;&lt;/OBJECTNAME&gt;</description>
      <pubDate>Fri, 01 Aug 2003 18:18:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039423#M906869</guid>
      <dc:creator>Greg OBarr</dc:creator>
      <dc:date>2003-08-01T18:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039424#M906870</link>
      <description>Robert,&lt;BR /&gt;You may want to do a dbexport of the data. This will only backup the actual table entries, not the entire tablespace. You can dump it to a flat file in another filesystem, compress it and use regular backups on it.&lt;BR /&gt;You will need to do the dbexport for each table in the database. This gives you a 2 tiered backup scheme, with the most current on disk, and +1 on tape.&lt;BR /&gt;Hope this helps..&lt;BR /&gt;</description>
      <pubDate>Sat, 02 Aug 2003 15:09:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039424#M906870</guid>
      <dc:creator>Ed Sampson</dc:creator>
      <dc:date>2003-08-02T15:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: big full backup problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039425#M906871</link>
      <description>This is a fragmentation issue and has always been a problem with fixed table sizes.  All oracle file systems are 99% full.  So defragmentation is only allowed through exporting and importing.&lt;BR /&gt;&lt;BR /&gt;If the oracle file system was 85% full then you could use online JFS's defrag. utility.&lt;BR /&gt;&lt;BR /&gt;You're other alternative is to dbstop and copy the data in and out from the O/S instead of using Oracle.&lt;BR /&gt;&lt;BR /&gt;cp -p -r /dir/* /temp/*&lt;BR /&gt;rm /dir/*&lt;BR /&gt;cp -p -r /temp/* /dir/*&lt;BR /&gt;&lt;BR /&gt;Data is not fragmented when loaded for the first time or copied back in after deletion.</description>
      <pubDate>Sat, 02 Aug 2003 15:34:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/big-full-backup-problem/m-p/3039425#M906871</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-08-02T15:34:20Z</dc:date>
    </item>
  </channel>
</rss>

