How to Create Login and User through query in Sql server
2005.and also how to delete Login and User through query?
Answer Posted / jagadeesh
create login 'name' with password='cghhicl'
GO
DROP LOGIN name
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What happens if null values are involved in boolean operations?
What is used to replicate sessions between instances in coldfusion clusters?
If a user does not have permission to a table, but has permission to a view created on it, will he be able to view the data in table?
What is cursor in ms sql server?
What are diverse clauses that form a part of sql?
Relational calculus is what type of language?
What is difference between materialized view and view?
Can you explain what are the restrictions applicable while creating views? : SQL Server Architecture
How do use Having,Group by,Group function in SQL?
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
How to bind a view to the schema of the underlying tables?
What is user defined datatypes and when you should go for them?
What is sql server 2000 work load governor?
What are synonyms?
Tell me what are the essential components of sql server service broker?