Andrew And wrote:
>  
>  
>  If in Master I have table with name "TAB_one" and I want to replicate
> this table to slave, but the name in slave need to be "TAB_two". Is
> this possible?
Use a view
CREATE VIEW "TAB_two" AS SELECT * FROM "TAB_one"

Regards,
Andreas
_______________________________________________
Slony1-general mailing list
[email protected]
http://gborg.postgresql.org/mailman/listinfo/slony1-general

Reply via email to