Created
May 13, 2011 07:40
-
-
Save FilipDeVos/970157 to your computer and use it in GitHub Desktop.
Sign identity_insert procedure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE MASTER KEY ENCRYPTION BY password = '**somethingspecial**'; | |
| CREATE CERTIFICATE SchemaCert WITH SUBJECT = 'Schema user Certificate' | |
| CREATE USER SchemaCertUser FROM CERTIFICATE SchemaCert | |
| GRANT ALTER ANY SCHEMA TO SchemaCertUser | |
| ADD SIGNATURE TO p_a BY CERTIFICATE SchemaCert | |
| GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment