¿Cómo Cambiar de Propietario A Una Base De Datos SQL?

Si quieres cambiar de propietario a una base de datos en SQL Server, ya sea por motivos de seguridad o auditoría, te recomiendo usar el procedimiento almacenado de sistema sp_changedbowner:

EXEC sp_changedbowner 'login';

Este SP cambia el propietario de la base de datos actual y acepta como parámetro el login del nuevo propietario, que debe ser un login existente.

Warning: “The created database is dependent on the whole created environment, which means it will get destroyed once the Beanstalk instance gets terminated. If we wish to use this database for future use cases or migrate to other environments, we have the option to perform a snapshot before termination, this way we will have a backup of it available for us.

Si tienes alguna duda, comentarios o sugerencias, me puedes enviar un correo a bitácoradeundba@gmail.com.

Deja un comentario