How to Create Login and User through query in Sql server
2005.and also how to delete Login and User through query?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / jagadeesh
create login 'name' with password='cghhicl'
GO
DROP LOGIN name
| Is This Answer Correct ? | 0 Yes | 4 No |
What is a data source or ds? : sql server analysis services, ssas
Why do we use non clustered index?
What is logshipping and its purpose?
How to truncate a table first before running a package?
What is clr ddl trigger?
What is resource db in sql server?
how we can count records as a group of days like sum of records for(four mondays),(four tuesday)........ in a month. group the column for weekdays.
What is the difference between executequery () and executeupdate ()?
Do you know query execution plan?
1. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES; 2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES; ouput should be in table format
Why we should not use triggers?
how to invoke a trigger on demand? : Sql server database administration
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)