Pesquisar neste blog

14/06/2022

Administração de usuários no SQL Server 'DBA' #114

USER curso

SEUSER 'TESTEADM'

select SYSTEM_USER
--testando select
select *from funcionarios

--testando insert
insert into funcionarios values ('Jack', 800, 'RH')

--testando update
update FUNCIONARIOS set salario = salario * 1.5

--voltar no usuario que logou

SELECT SYSTEM_USER
SETUSER 'TESTEADM'









Nenhum comentário: