How to Create Login and User through query in Sql server
2005.and also how to delete Login and User through query?
Answer Posted / rajiv singh
CREATE LOGIN ra
WITH PASSWORD = 'passwd';
USE COREDATA;
CREATE USER ra FOR LOGIN ra;
GO
DROP LOGIN name
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is etl - extraction, transformation, and loading?
Why use sub query in sql server and list out types of sub queries?
What are the basic functions for master, msdb, model, tempdb and resource databases? : SQL Server Architecture
What is sql server english query?
What is cursors? And what are the different types of cursor?
Explain following error properties?
How many types of cursor type are there?
What are indexes in ms sql server?
Explain datetimeoffset data type in sal server 2008?
What is multilevel indexing?
How to rename databases in ms sql server?
What are the different types of join?
How to use subqueries with the in operators in ms sql server?
When would you use sql joins?
1 01 101 01010