In this article, I am going to describe how to use views in SQL Server 2005 database. A view is a virtual table that consists of columns from one or more tables. Though it is similar to a table, it is stored in the database. It is a query stored as an object. Hence, a view is an object that derives its data from one or more tables. These tables are referred to as base or underlying tables. Once you have defined a view, you can reference it like any other table in a database.
A view serves as a security mechanism. This ensures that users are able to retrieve and modify only the data seen by them. Users cannot see or access the remaining data in the underlying tables. A view also serves as a mechanism to simplify query execution. Complex queries can be stored in the form as a view, and data from the view can be extracted using simple queries.
- A view consists of a SELECT statement that stored with a database. Because views are stored as part of the database, they can be managed independently of the applications that use them.
- A view behaves like a virtual table. Since you can code a view name anywhere you can code a table name. a view is sometimes called a viewed table.
- Views can be used to restrict the data that a user is allowed to access or to present data in a form that is easy for the user to understand. In some database users may be allowed to access data only through views.
In this example, I am using my Vendor database which has these fields.
Here is my database:
Figure 1.
Create View in SQL Server
- USE [Vendor]
- GO
- /****** Object: View [dbo].[VendorData] Script Date: 08/07/2008 23:27:34 ******/
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- ALTER VIEW [dbo].[VendorData] AS
- SELECT VendorId,VendorFName,VendorLName,VendorCity,VendorState,VendorCountry,PostedDate,
- VendorDescription
- FROM Vendor
- Use Vendor
- GO
- SELECT * FROM VendorData WHERE VendorState = 'PA' ORDER BY PostedDate
- GO
Figure 2.
Stored Procedure in SQL Server
A stored procedure is a set of one or more SQL statements that are stored together in database. To create a stored procedure use CREATE PROCEDURE statement. To use the stored procedure you send a request for it to be executed. When server receives the request, it executes the stored procedure.
Stored procedures assist in achieving a consistent implementation of logic across applications. The SQL statements and logic needed to perform a commonly performed task can be designed, coded, and tested once in a stored procedure. Each application needing to perform that task can then simply execute the stored procedure. Coding business logic into a single stored procedure also offers a single point of control for ensuring that business rules are correctly enforced.
Stored procedures can also improve performance. Many tasks are implemented as a series of SQL statements. Conditional logic applied to the results of the first SQL statements determines which subsequent SQL statements are executed. If these SQL statements and conditional logic are written into a stored procedure, they become part of a single execution plan on the server. The results do not have to be returned to the client to have the conditional logic applied; all of the work is done on the server.
There are some concepts of stored procedures.
- A stored procedure is one or more SQL statements that have been compiled and stored with database. A stored procedure can be started by application code on the client.
- Stored procedure can improve database performance because the SQL statements in each procedure are only compiled and optimized the first time they are executed. In contrast SQL statements that are sent from a client to the server have to be compiled and optimized every time they are executed.
- In addition to SELECT statement, a stored procedure can contain othe SQL statements such as INSERT, UPDATE, DELETE. It also contains control-of-flow language.
- A trigger is a special type of procedure that executes when rows are inserted, updated or deleted from table.
- A user defined function(UDF) is a special type of procedure that can return a value or a table.
Example
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- -- =============================================
- -- Author: <Author,,Name>
- -- Create date: <Create Date,,>
- -- Description: <Description,,>
- -- =============================================
- CREATE PROCEDURE spVendorByState
- @VendorState varchar(50)
- AS
- BEGIN
- -- SET NOCOUNT ON added to prevent extra result sets from
- -- interfering with SELECT statements.
- SET NOCOUNT ON;
- -- Insert statements for procedure here
- SELECT VendorId,VendorFName,VendorLName,VendorCity,VendorState,VendorCountry,PostedDate,
- VendorDescription
- FROM Vendor Where VendorState = @VendorState ORDER BY PostedDate
- END
- GO
Figure 3.
Output looks like this
Figure 4.
This is it.

Dinesh GabhanePosted Nov 13, 2019, 12:45 AM
Nice article.Thanks
kalu singh raoPosted Jul 3, 2016, 8:59 AM
Nice...
Santosh YadavPosted Mar 31, 2013, 11:02 AM
Nice article.Thanks
Vinayak HegdePosted Feb 5, 2011, 12:37 AM
How shall I be Master in Stored Procedure ?
lakshmi neelavathiPosted Jan 21, 2011, 4:25 AM
Tel about stored procedure from basics and how to use stored procedure with c#
BhuvaneshPosted Dec 31, 2010, 5:36 AM
Hi raj, Thank u so much.... i got ur article.it's very helpful
BhuvaneshPosted Dec 15, 2010, 8:08 AM
Hi, I want the detail information about SQL 2005 Stored procedure as am very new to this need to develop the project. Please guide me to get strong in SQL 2005 n Stored procedures
Pukalu KamarajuPosted Nov 11, 2010, 6:31 AM
grate article.
aravind thotaPosted Oct 22, 2010, 10:11 AM
hi Raj..its very useful for all the IT people..thanks for post this..this helps me a lot..
soma sekhar kPosted Oct 6, 2010, 2:32 AM
hi Firstly i appreciate your explanation on stored procedure which is clearly understandable.. i need material to understand fundamentals about what to do and how to do anything in sqlserver 2005.. i am asking this because i am non IT background guy. can you forward to my mail.. my mail id : [email protected]
Manas MohapatraPosted Aug 10, 2010, 9:55 AM
Everything Written clearly so easy to understand.
venkatesh reddyPosted Aug 3, 2010, 4:49 AM
Hi, Your way of explanation is nice.
Jigar NagadaPosted Jul 27, 2010, 7:27 AM
kjjhjkkhkkkjjkjjkjkj
Darth ContinentPosted Jul 16, 2010, 11:10 AM
Good coverage of stored procs and views! I cited your post on my blog, please view and share if you find it useful!
Simon MalelekaPosted Jun 18, 2010, 2:16 PM
Excellent piece of work. Practical, instead of theory only. Thanks
sankalp saxenaPosted Apr 9, 2010, 8:42 AM
plese let me know exec query
LADENNA COLEPosted Feb 19, 2010, 11:34 AM
Very Informative and easy to follow. Thanks!!
Nikhil KumarPosted Jan 9, 2010, 9:42 AM
Nice article :)
Hieu Ho TrungPosted Nov 3, 2009, 11:51 AM
Excellent
Navin KumarPosted Oct 21, 2009, 2:35 AM
Friend i need to know from basics till advance in stored procedures can u help me i am going to develop a project for that i need your's help please tell me some basics and how to use those with C#.net and silverlight.net if u can send through mail my mail id is ([email protected])
Dilip SinghPosted Jun 3, 2009, 4:39 PM
how can i store the ip address of user when recieve the query?