View gist:4008081
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*CREATE MATERIALIZED VIEW log_todos_clientes ON */ | |
/* VIEW MATERIALIZADA PARA REPLICAR TODOS OS CLIENTES NA MATRIZ */ | |
CREATE MATERIALIZED VIEW todos_clientes AS | |
BUILD IMMEDIATE | |
REFRESH COMPLETE | |
ON COMMIT AS | |
select * from clientes | |
UNION |
View gist:4008072
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*CREATE MATERIALIZED VIEW log_todos_clientes ON */ | |
/* VIEW MATERIALIZADA PARA REPLICAR TODOS OS CLIENTES NA MATRIZ */ | |
CREATE MATERIALIZED VIEW todos_clientes AS | |
BUILD IMMEDIATE | |
REFRESH COMPLETE | |
ON COMMIT AS | |
select * from clientes | |
UNION |
View Códigos SQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*CREATE MATERIALIZED VIEW log_todos_clientes ON */ | |
/* VIEW MATERIALIZADA PARA REPLICAR TODOS OS CLIENTES NA MATRIZ */ | |
CREATE MATERIALIZED VIEW todos_clientes AS | |
BUILD IMMEDIATE | |
REFRESH COMPLETE | |
ON COMMIT AS | |
select * from clientes | |
UNION |