InterviewSolution
Saved Bookmarks
| 1. |
Are Stored Procedures And Functions Created On A Master Server Replicated To A Slave? |
|
Answer» Yes, creation of STORED procedures and functions CARRIED out through normal DDL STATEMENTS on a master server are replicated to a SLAVE, so the objects will exist on both SERVERS. ALTER and DROP statements for stored procedures and functions are also replicated. Yes, creation of stored procedures and functions carried out through normal DDL statements on a master server are replicated to a slave, so the objects will exist on both servers. ALTER and DROP statements for stored procedures and functions are also replicated. |
|