Articles on this Page
- 05/10/10--04:40:_Comment on Making Oracle...
- 07/01/10--05:19:_Comment on Making...
- 10/26/10--11:59:_Comment on...
- 03/14/11--14:04:_Comment on About Me by Jimmy
- 03/16/11--01:57:_Comment on About Me by...
- 04/01/11--03:06:_Comment on Packt...
- 04/01/11--03:21:_Comment on Packt...
- 08/05/11--05:58:_Comment on...
- 09/29/11--00:42:_Comment on Using RMAN to...
- 11/21/11--05:58:_Comment on Overcoming...
More Channels
- Feb 23: live play by play | Keyword Feed
- Feb 23: Accueil
- Dec 4: 40 Landes
- Nov 28: Dj Fila-gas (DjFiLagas.pdj.ru)
- Nov 28: Slot RSS Feeds: Online Slot Games
- Feb 10: Comments On: Real Detroit Weekly
- Feb 20: Virgin Paradise Blog
- Feb 8: Wpisy oznaczone tagiem pobierz
- Dec 28: Twitter / ogijun
- Nov 28: The Daily Beast - Taylor Antrim
- Feb 22: Twitter / philippsens
- Feb 23: and all, what attracts me is old
- Nov 28: MiheyDJ (miheydj.pdj.ru)
- Dec 17: Twitter / MeetingBoy
- Dec 7: jdp feed
- Nov 18: sammieIam07's Xanga
- Feb 16: WordPress.com News
- Feb 18: Twitter / Favorites from math_mp
- Nov 29: Smoke Like Ribbons
- Dec 6: UFO Appears, vidéos de...
- Nov 28: DJ Zotkin
- Nov 28: Atok_SUB Blog NEH
- Feb 22: PropertyWala.com™: All...
- Aug 18: Related Websites
- Feb 12: We Are Hunted - The latest news...
- Nov 28: ombre e luci - opinioni
- Nov 28: Comments On: Attention, People...
- Nov 28: 搜索引擎与人物
- Feb 22: Notizie di CinemaItaliano.Info
- Feb 22: Twitter / Favorites from Stereolife
- Jan 13: SEVENLEE (sevenlee.pdj.ru)
- Dec 11: ACM Queue - Game Development
- Nov 29: Gay Arab Webcams
- Feb 19: Dat Krümel - DesignBlog
- Nov 29: Gay Anal Fisting
- Jan 26: Twitter / Favorites from bilgegunes
- Jan 28: So Appalled
- Jan 15: リプロダクション
- Feb 22: You made my eyes burn
- Nov 29: Most Popular Comments On "US...
- Feb 23:
- Nov 29: Populist
- Nov 28: San Picture Mártir
- Nov 28: 49 Maine-et-Loire
- Nov 28: http://feeds.bitnapping.tv/Podca...
- Feb 23: Little Ambitions♥
- Feb 15: Twitter / Favorites from...
- Feb 16: WordPress.com News
- Jan 9: Remix64
- Nov 28: Comments on Not with a whimper
|
|
Are you the publisher? Claim this channel |
|
Channel Description:
Latest Articles in this Channel:
- 05/10/10--04:40: Comment on Making Oracle Streams Fly by Bous (chan 1752795)
- 07/01/10--05:19: Comment on Making permissions persistent on EMC PowerPath devices for CRS on Enterprise Linux by leslie (chan 1752795)
- 10/26/10--11:59: Comment on Re-instantiating Schema Replication following Database Incomplete Recovery by oracle_dba_17 (chan 1752795)
- 03/14/11--14:04: Comment on About Me by Jimmy (chan 1752795)
- 03/16/11--01:57: Comment on About Me by John Jeffries (chan 1752795)
- 04/01/11--03:06: Comment on Packt Enterprise has just published the first ever GoldenGate book by Kamran Agayev A. (chan 1752795)
- 04/01/11--03:21: Comment on Packt Enterprise has just published the first ever GoldenGate book by John Jeffries (chan 1752795)
- 08/05/11--05:58: Comment on Re-instantiating Schema Replication following Database Incomplete Recovery by R. Hoekstra (chan 1752795)
- 09/29/11--00:42: Comment on Using RMAN to restore a database to another server in an ASM environment by I'm glad with that (chan 1752795)
- 11/21/11--05:58: Comment on Overcoming ORA-01341: LOGMINER OUT-OF-MEMORY in Oracle Streams Downstream Capture by Lars Bo (chan 1752795)
I saw about 5 millions spill messages in queue on customer side , and it took them many many hours to clean the queue, Flow control is automatic in 10g and has a number of conditions that can trigger the capture process to pause for flow control.
1 memory pressure
2.Unseen messages.
If the apply is slow and the condition of flow control are not meet , the queue spilling will start spilling to AQ$_QUEUE_NAME_P.
regards,
Bous
This method works for a small mount of devices as this is manual rename each powerpath device, it is unacceptable if we need to manually rename 50 disks on eight node cluster servers, is there any way we can use one node as primary server and all other nodes will copy powerpath pseudo name configuration from primary server so we can make consistent pseudo name accros cluster nodes. We want the process are not IO interruption.
Thanks
Nice job posting this document. Thank you!
Hi John, I have 10g Streams set up one way and at the destination db, the apply process is running, but has 20,000 active transactions and 1 spilled -- how do I go about getting all those active transactions to start decreasing? Currently, it's continuing to grow -- I guess this means they aren't getting applied?
Thanks, Jimmy
Hi Jimmy
It looks like your apply process is the bottleneck. How many apply servers do you have configured?
Your apply process may benefit from an increase in parallelism.
The following example sets parallelism to 32:
BEGIN
dbms_apply_adm.set_parameter( apply_name => 'TGT_SCHEMA_APPLY',
parameter => 'parallelism',
VALUE => '32');
END;
/
Run the following query to display information about the apply servers for each apply process:
SELECT r.APPLY_NAME,
SUBSTR(s.PROGRAM,INSTR(S.PROGRAM,'(')+1,4) PROCESS_NAME,
r.STATE,
r.TOTAL_ASSIGNED,
r.TOTAL_MESSAGES_APPLIED
FROM V$STREAMS_APPLY_SERVER R, V$SESSION S
WHERE r.SID = s.SID AND
r.SERIAL# = s.SERIAL#
ORDER BY r.APPLY_NAME, r.SERVER_ID;
Regards
John
Hi John. Hope you're well
I've already started reading your book :) Will post my review on my blog and on amazon
My heartiest congratulations to you
Hi Kamran
Thank you for your kind comments and taking the time to review my book.
Regards
John
This is not a complete scenario to repair your downstream target database. If you do a PIT on your source database, what about the transactions that are already applied to your downstream target database after the time of the PIT?
On the Oracle site you find the document "Oracle Streams Replication Administrator's Guide 10.2, 9 Managing Capture, Propagation, and Apply. How to configure Streams Real-Time Downstream Environment." that contains a nearly complete scenario in the § called "Performing Point-in-Time Recovery on the source in a single-source environment".
<strong>that is awesome!...</strong>
[...]Using RMAN to restore a database to another server in an ASM environment « John Jeffries's Blog[...]...
Thanks for sharing! Cheers Lars Bo