Pergunta

I would like to execute the following query :

DENY DELETE ON tableTest to Domain\Username

but it prints

Msg 102, Level 15, State 1, Line 1
Incorrect syntax near '\'.

i tried

SELECT @Test = 'Domain\Username'    
DENY DELETE ON tableTest to @Test

but it also didn't work. The Domain\Username is the value i get in sys.database_principals

Any idea?

Thanks

Foi útil?

Solução

You can use [] to be able to use otherwise invalid characters for identifiers:

DENY DELETE ON tableTest to [Domain\Username]
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top