adspace
what is the purpose of creating view is sql server 2000
Answer Posted / nithya.r
A view is a virtual table. A view serves as a security
mechanism. If we have several tables in a database and we
want to view only specific columns from specific tables we
can go for views. Using view we can avoid the complex
queries.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What are the different SQL Server Versions you have worked on?
How do I find query history in sql server?
Why should you use or avoid select * statements?
What is the difference between for xml raw and for xml auto?
what is spatial nonclustered index
What are the properties of the transaction?
Where can you add custom error messages to sql server?
What is the primary use of the model database?
Equi join and non equi join is possible with sql server?
What is a view 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?
What are the source of constraints?
What is standby servers? Explain types of standby servers.
What is acid mean in sql server?
what is the difference between openrowset and openquery?