- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can we Pause a runing process urgently !
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
Discussions
Discussions
Discussions
Forums
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
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
тАО04-14-2003 04:08 AM
тАО04-14-2003 04:08 AM
Can we Pause a runing process urgently !
Consider the scenario I started a Import for a big table.
I estimated freespace is enough, but suddenly someone used more space, my big table import mostly done, but it will fail soon. In this case adding datafile to tablespace may take
time, so I want to Pause the process first ( or if possible database ), then I will increase the space in the tablespace
and then want to continue that process.
I am wondering, is it possible ! It will be great.
Otherwise I have to Redo the big table Import again.
Thanks
R.Ezhil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 04:13 AM
тАО04-14-2003 04:13 AM
Re: Can we Pause a runing process urgently !
kill -CONT
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 04:18 AM
тАО04-14-2003 04:18 AM
Re: Can we Pause a runing process urgently !
Cheers
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 04:41 AM
тАО04-14-2003 04:41 AM
Re: Can we Pause a runing process urgently !
Thanks
Zafar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 05:01 AM
тАО04-14-2003 05:01 AM
Re: Can we Pause a runing process urgently !
i fear that this might not be possible.
However, it is always possible to modify the datafile parameter autoextend parameter on the fly!
E.g.
ALTER DATABASE DATAFILE '/d01/oradata/yddb/indx_lmt01.dbf' AUTOEXTEND ON NEXT 512K MAXSIZE UNLIMITED;
This is the only rescue i fear (although i think triggers can also come to the rescue -- that would be too complicated!).
good luck.
best regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-14-2003 07:51 PM
тАО04-14-2003 07:51 PM
Re: Can we Pause a runing process urgently !
I do not think there is a way of suspending and then continuing the oracle imp (import) process. The data imported will not be consistent and import will fail with error if tried to do so. Its like complete or nothing for preserving consistency.
In your tablespace (datafile) make sure there is enough free space (contiguous bytes)of free space for the tablespace to hold the table extents. Also coalesce the tablespace after you have truncated your table data.
Or if you have more space on your disk and you can afford to keep this table into another tablespace, owned by the same user, then create a new tablespace and create the table into this tablespace. Do not give quota on this new tablespace to other users, and this will prevent from others writing on to this tablespace. Then import your table data.
If your table to be imported is very large, then there are ways to improve the import process and enable it to import it faster.
1. To speed import, you should increase BUFFER, value and set COMMIT=N during the import.
2. Have sufficient rollback segment space
3. Import with INDEXES=N and then use the INDEXFILE option to create a script which can be used to create the indexes subsequent to the import.
Hope this helps.