We have a read-only reporting server that is part of the AlwaysOn availability group. Our developer wants to create some stored procedures. My question is where should the stored procedure be created--will that be on the primary since the secondary is read only ?

有帮助吗?

解决方案

Stored procedures are contained in databases, so if the database you are creating the stored procedure on is in the availability group, you will create it on the primary--it would be impossible to create it on the secondary since the replica there is read-only.

Once the stored procedure is created on the primary, it is then part of the database and available on the secondary replicas.

The same principles apply when making any modifications to a database in an availability group. You can't add tables, views, stored procedures, modify permissions, etc. on the secondary because the database there is read-only.

其他提示

A possible workaround would be; Just create a database in the secondary instance and then create the stored procedures accessing the data from the databases being replicated.

EDIT: But this database wouldn't be replicated.

许可以下: CC-BY-SA归因
不隶属于 dba.stackexchange
scroll top