资源预览内容
第1页 / 共15页
第2页 / 共15页
第3页 / 共15页
第4页 / 共15页
第5页 / 共15页
第6页 / 共15页
第7页 / 共15页
第8页 / 共15页
第9页 / 共15页
第10页 / 共15页
亲,该文档总共15页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述
oracle数据库同步交换的方法-我收集的常见(Oracle database synchronous exchange method - I collect common)Scheme and implementation of Oracle data synchronization:Oracle two tables of data is synchronized to the materialized view of third party Oracle, to the materialized view add trigger linkage to the third party in the Oracle table, then we obtain the original Oracle data table data synchronization, and the data can be extendedIntroduction to Oracle EBS FNDLOAD tools 2011-08-07The usage of FNDLOAD is a data synchronization tool provided by FNDLOAD, and it is officially supported by Oracle. FNDLOAD downloads the relevant definitions to a text file for transit, and then to another instance. Pass through.Contributors: xiaxinyn | Download: 49 | 12 | on 17 PagesCache management tool Impletetion brief usage method 2011-05-24The automatic download time interval is in minutes, between 301440, which controls the automatic synchronization operation cycle of the client cache synchronization tool. 4. object index management tool (1) (2) said the object is already selected.Contributors: Scarecrow life | Download: 0 | 0 | on 4 pagesOracle GoldenGate database synchronization technology 2011-01-16Oracle GoldenGate database synchronization technology - Oracle Oracle GoldenGate database synchronization technology Oracle GoldenGate TDM is a software based data replication side.Scheme one: build DATA_LINK between two, and directly write new data to another database program two: use SQLPLUSs COPY command program three: use exp/imp tools, incremental export / bootScenario 1: create DATA_LINK between two, and write new data directly to another databaseScenario two: using the COPY command of SQLPLUSScenario three: incremental export / import using the exp/imp toolScenario four: building StandByDatabase on host 2Scenario five: Advanced Replication options for useHow do you exchange data between two Oracle servers?Source: worry free template Author: network editing update time: 2010-08-09 18:10 Click: SecondScenario 1: build the DATA_LINK between two databases and write the new data directly to another databaseScenario two: using the COPY command of SQL *PLUSScenario three: incremental export / import using the eXP/imp toolScenario four: building Stand By Database on host 2Scenario five: using advanced replication options for OracleThe connection table is defined in a SQL statement in the relationship between tables and related data retrieved from one or more tables, in connection with table between the tables can be divided into four types, respectively, equal connection, connection, connection and self ranging connection, the several typical examples to analyze four different connection modes of Oracle table:1. equal joinAn equal join condition can be established by means of columns with the same meaning in two tables.Only rows that appear on the join column and appear in the two tables are equal in the result of the query.Examples of staff information and the corresponding staff in the Department of information;SELECT * FROM EMP, DEPT;SELECT * FROM EMP, DEPTWHERE EMP.DEPTNO = DEPT.DEPTNO;REM shows employees who pay more than 2000 of their salaries and the names of their employees.2. external connectionsFor external connections, Oracle can be represented by (+), and 9i can use LEFT/RIGHT/FULL OUTER JOIN. The following examples will be introduced. In addition to displaying information that matches equal join conditions, it also displays information that cannot match a table with equal join conditions.External connections are identified by (+).A) left condition (+) = right condition;Represents not only the information that matches the equal join condition,It also shows that the table in the right condition cannot match the information about the equal join condition.This is also known as the join. Another way of saying is:SELECT. FROM Table 1 RIGHT OUTER JOIN Table 2 ON connection conditionB) left condition = right condition (+);In addition to displaying the information that matches the equal join condition, it also shows that the table in the left condition can not match the information of the equal join condition.It is also called left outer connectionSELECT. FROM Table 1 LEFT OUTER JOIN Table 2 ON connection conditionExamples show staff information and corresponding department information- unable to show staff information without Department- unable to show departmental information without employees-SELECT * FROM EMP, DEPT WHERE EMP.DEPTNO = DEPT.DEPTNO;Do equal join directly:SELECT * FROM EMP JOIN DEPT ON EMP.DEPTNO = DEPT.DEPTNO;REM displays employee information and corresponding departmental information, showing departmental information without employees-SELECT * FROM EMP, DEPT WHERE EMP.DEPTNO (+) = DEPT.DEPTNO;SELE
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号