Skip to content

Instantly share code, notes, and snippets.

@donpandix
Last active July 30, 2019 21:53
Show Gist options
  • Save donpandix/37c254ed7b4bbaf37f5cc2d12e25256d to your computer and use it in GitHub Desktop.
Save donpandix/37c254ed7b4bbaf37f5cc2d12e25256d to your computer and use it in GitHub Desktop.
Esta instrucción es para la realización de consultas entre esquemas de bases de datos SQL Server que están dentro de la misma instancia de servidor
CREATE USER [USUARIO_OTRO_ESQUEMA] FOR LOGIN [USUARIO_OTRO_ESQUEMA];
GRANT SELECT TO USUARIO_OTRO_ESQUEMA;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment