Blue Theme Orange Theme Green Theme Red Theme
 
Home | Forums | Videos | Advertise | Certifications | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Discover the top 5 tips for understanding .NET Interop
Search :       Advanced Search »
Home » SQL Server 2012 » Views & Stored Procedure in SQL Server 2005

Views & Stored Procedure in SQL Server 2005

This article shows how to use Views and Stored Procedures in SQL Server 2005

Author Rank :
Page Views : 270301
Downloads : 0
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
DevExpress Free UI Controls
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 


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 :

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

You can execute your view like this, in this example VendorData is my View name.

Use Vendor
GO
SELECT * FROM VendorData WHERE VendorState = 'PA' ORDER BY PostedDate
GO

Output:


Figure 2.

This is it.

Stored Procedure

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 recieves 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 sontrast SQL statements that are sent from a client to the server have to be compiled and optimized everytime ther are executed.

  • In addition to SELECT statement, a stored procedure can contain othe SQL statements such as INSERT,UPDATE,DELETE. It also contain 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

You can execute your stored procedure like this:


Figure 3.

Output looks like this:


Figure 4.

This is it.

 

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Author
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the Top 5 .NET Memory Management Fundamentals
To write the best .NET code, you need to know exactly how the .NET framework really manages memory. Ricky Leeks presents the Top 5 fundamental facts of .NET memory management. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
DevExpress Free UI Controls
Become a Sponsor
 Comments
question by Dilip On June 3, 2009

how can i store the ip address of user when recieve the query?

Reply | Email | Modify 
Friend i need some more additional and basics of stored procedured by Navin On October 21, 2009
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 (ksnavinkumar@live.com)
Reply | Email | Modify 
Stored Procedure by Hieu On November 3, 2009
Excellent
Reply | Email | Modify 
nice by Nikhil On January 9, 2010

Nice article :)


Reply | Email | Modify 
Kudos by LADENNA On February 19, 2010
Very Informative and easy to follow.  Thanks!!
Reply | Email | Modify 
need queery by sankalp On April 9, 2010
plese let me know exec query
Reply | Email | Modify 
Excellent Piece of work. by Simon On June 18, 2010

Excellent piece of work.
Practical, instead of theory only.
Thanks

Reply | Email | Modify 
Nice post! by Darth On July 16, 2010
Good coverage of stored procs and views! I cited your post on my blog, please view and share if you find it useful!
Reply | Email | Modify 
jkhjk by Jigar On July 27, 2010
kjjhjkkhkkkjjkjjkjkj
Reply | Email | Modify 
Good Explanation by venkatesh On August 3, 2010
Hi,
Your way of explanation is nice.
Reply | Email | Modify 
Nice by manas On August 10, 2010
Everything Written clearly so easy to understand.
Reply | Email | Modify 
NEED MATERIAL by soma sekhar On October 6, 2010
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 : studymaterials4som@gmail.com
Reply | Email | Modify 
thanks by aravind On October 22, 2010

hi Raj..its very useful for all the IT people..thanks for post this..this helps me a lot..

Reply | Email | Modify 
tnx by Pukalu On November 11, 2010
grate article.
Reply | Email | Modify 
Re: tnx by Gufran On November 19, 2010
nice article
Reply | Email | Modify 
stored procedures by Bhuvanesh On December 15, 2010
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
Reply | Email | Modify 
Re: stored procedures by Raj On December 15, 2010
Check these article. http://www.c-sharpcorner.com/UploadFile/puranindia/StoredProcedures08132009011757AM/StoredProcedures.aspx http://www.c-sharpcorner.com/UploadFile/suthish_nair/3869/Default.aspx
Reply | Email | Modify 
Stored procedure by Bhuvanesh On December 31, 2010
Hi raj, Thank u so much.... i got ur article.it's very helpful
Reply | Email | Modify 
Stored Procedure by lakshmi On January 21, 2011
Tel about stored procedure from basics and how to use stored procedure with c#
Reply | Email | Modify 
Stored Procedures by Vinayak On February 5, 2011
How shall I be Master in Stored Procedure ?
Reply | Email | Modify 
Re: Stored Procedures by Vinayak On February 5, 2011
First of all you have to have the basic knowledge of SQL server and its commands. Study how insert, update,delete,alter,create commands works. then refer sql guides to get idea about stored procedure and how to implement them. and also you may call stored procedures in dot net applications also. Good Luck
Reply | Email | Modify 
Team Foundation Server Hosting
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.