File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed 
content/integrate/redis-data-integration/data-pipelines/prepare-dbs Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,28 @@ exec rdsadmin.rdsadmin_util.set_configuration('archivelog retention hours',24);
7878exec rdsadmin .rdsadmin_util .alter_supplemental_logging(' ADD' 
7979``` 
8080
81+ You must enable supplemental logging for the tables you want to capture or
82+ for the entire database. This lets Debezium capture the state of
83+ database rows before and after changes occur. 
84+ 
85+ The following example shows how to configure supplemental logging for all columns
86+ in a single table called ` inventory.customers ` :
87+ 
88+ ``` sql 
89+ ALTER  TABLE  inventory .customers  ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
90+ ``` 
91+ 
92+ {{< note >}}If you enable supplemental logging for * all*  table columns, you will
93+ probably see the size of the Oracle redo logs increase dramatically. Avoid this
94+ by using supplemental logging only when you need it. {{< /note >}} 
95+ 
96+ You must also enable minimal supplemental logging at the database level with
97+ the following command:
98+ 
99+ ``` sql 
100+ ALTER  DATABASE  ADD SUPPLEMENTAL LOG DATA;
101+ ``` 
102+ 
81103## 2. Check the redo log sizing  
82104
83105Before you use the Debezium connector, you should check with your
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments