All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jumpmind.symmetric.service.impl.dataextractor-service-sql.xml Maven / Gradle / Ivy

Go to download

SymmetricDS is an open source database synchronization solution. It is platform-independent, web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store' databases and ad centralized 'corporate' database.

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:util="http://www.springframework.org/schema/util"
  xsi:schemaLocation="    
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"
  default-lazy-init="true">

  <util:map id="dataExtractorServiceSql">
    <entry key="selectEventDataToExtractSql">
      <value>
        select d.data_id, d.table_name, d.event_type, d.row_data, d.pk_data, d.old_data,
        d.create_time, d.trigger_hist_id, d.channel_id, d.transaction_id, d.source_node_id, d.external_data, e.router_id from $[sym.sync.table.prefix]_data d inner join
        $[sym.sync.table.prefix]_data_event e on d.data_id = e.data_id inner join $[sym.sync.table.prefix]_outgoing_batch o on o.batch_id=e.batch_id 
        where o.batch_id = ? order by d.data_id asc
      </value>
    </entry>
  </util:map>

</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy