- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Increased mount point size
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2002 09:59 PM
12-13-2002 09:59 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2002 10:18 PM
12-13-2002 10:18 PM
Re: Increased mount point size
find out the directories which are using more space.
and check out the files.
I would check for the .trc files.
I am not sure whether you have enabled the sql_trace in your oracle.
check your $ORACLE_HOME/dbs/init
user_dump_dest=
Check for the .trc files in the destination directory and clean them up.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2002 10:30 PM
12-13-2002 10:30 PM
Re: Increased mount point size
Example say you take a file name and want all files newer that that then just type
find ./ -newer
in the /opt/app/oracle directory.
One more suggestion you can use is -size option with find option to find the files of a particular size.
Cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2002 10:32 PM
12-13-2002 10:32 PM
Re: Increased mount point size
Example say you take a file name and want all files newer that that then just type
find ./ -newer
in the /opt/app/oracle directory.
One more suggestion you can use is -size option with find option to find the files of a particular size.
Cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2002 01:01 AM
12-14-2002 01:01 AM
Re: Increased mount point size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2002 01:48 AM
12-14-2002 01:48 AM
Re: Increased mount point size
find /opt/app/oracle -newer
That will give you all files updated after this defined time.
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2002 01:56 AM
12-14-2002 01:56 AM
SolutionHow can files be identied that were created yesterday so they can be purged?
The "-mtime" option could be used, but it considers a day to be a multiple
of 24 hours. Therefore, it won't locate files created before midnight but less
than 24 hours ago. To accomplish this follow the following procedure.
RESOLUTION
1. Create a file to compare against. In this example we are looking for files
last modified on 12/21 or earlier.
touch -t 12220000 /tmp/compare
2. Create a script in /tmp called older.sh for the find command to execute.
Make sure it has execute permissions. It will be used to identify files older
than the compare file created in step 1. Older.sh can be modified to move or
purge the files as desired.
#!/usr/bin/ksh
COMPARE=/tmp/compare
if [ $1 -ot $COMPARE ]
then
echo File $1 is older than file $COMPARE
fi
3. Run the find command to identify the files.
find /
Hope it helps,
Robert-Jan.
Ps.
https://www.beepz.com/personal/merijn/
A. Clay Stephenson's Date Hammer Shell version or Perl version
You can download it on Merijn's webpage.