Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Oracle Goldengate 12c Implementers Guide

You're reading from  Oracle Goldengate 12c Implementers Guide

Product type Book
Published in Jul 2015
Publisher
ISBN-13 9781785280474
Pages 422 pages
Edition 1st Edition
Languages

Table of Contents (21) Chapters

Oracle GoldenGate 12c Implementer's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Getting Started Installing and Preparing GoldenGate Design Considerations Configuring Oracle GoldenGate Configuration Options Configuring GoldenGate for HA Advanced Configuration Managing Oracle GoldenGate Performance Tuning Troubleshooting GoldenGate The Future of GoldenGate GGSCI Commands
GoldenGate Installed Components
Acronyms
Index

Viewing integrated parameters


Integrated capture was first introduced in Oracle GoldenGate 11g Release 2. Now, in 12c, Oracle offers the Integrated Replicat as a new feature. In the previous section, we discussed a number of performance tuning tips, including how to adjust GoldenGate's integrated parameters. There are many of these including underscore (hidden) parameters that should only be adjusted under guidance from Oracle support.

To view the current configuration in your GoldenGate enterprise, it is possible to query the Oracle Streams table (streams$_process_param) on both source and target databases, as shown in the following code:

SQL> col NAME format a35
SQL> col VALUE format a10
SQL> select decode(process_type,1,'APPLY',2,'CAPTURE') process_name,
  2  name, value
  3  from sys.streams$_process_params
  4  order by 1,2;

PROCESS NAME                                VALUE
------- ----------------------------------- ----------
APPLY   ALLOW_DUPLICATE_ROWS                N...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}