USE master
-- Kullanıcı oluşturuyoruz.
CREATE LOGIN
endpoint_owner
WITH
PASSWORD='pwd'
GO
CREATE
CREATE PROCEDURE Dbo.usp_getcontext
As
SELECT SUSER_NAME() as 'LOGIN', USER_NAME() AS 'USER NAME'
go
USE master
-- Kullanıcı oluşturuyoruz.
CREATE LOGIN
endpoint_owner
WITH
PASSWORD='pwd'
GO
SELECT SYSTEM_USER as 'SYSTEM USER' , SUSER_NAME() as 'LOGIN', USER_NAME() AS 'USER NAME'
IF EXISTS( SELECT NAME FROM master.dbo.syslogins WHERE NAME='endpoint_owner' )
DROP LOGIN endpoint_owner
SELECT NAME, LOGINNAME
FROM master.dbo.syslogins
WHERE NAME='endpoint_owner'
7 Ağustos 2008 Perşembe
TSQL-> Kullanıcı oluştur. Database Kullanıcılarını getir. Kritere uyarsa Sil.
Kaydol:
Kayıt Yorumları (Atom)
Hiç yorum yok:
Yorum Gönder