I have the following questions about how transactional replication handles the following. For example, suppose database “A” is replicated (through transactional replication) to database “B”.
- If the table in database “A” is dropped, the table will be omitted in “B?
- If the table in 'A is renamed, what happens to the table in' B?
- If we put a column in a table in database "A", what happens to a column in the same table in database "B?
- If we rename a column in a table in database "A", what happens to a column in the same table in database "B?
- Replication of stored procs, views and UDF is optional?
- Is there a way to avoid all stored processes created in database “B” as a result of being a replication subscriber? and. If not, can we at least determine in which scheme they are created?
source
share