TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Server Transact Basic to Expert - Create basic View with Encryption
Karthikeyan Anbarasan
Jun 09, 2011
3.3
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Create basic View with Encryption
This blog shows how to create a simple view with a basic encryption
Syntax:
CREATE VIEW Viewname
WITH ENCRYPTION
AS
Select statement
Example:
CREATE VIEW vemptable
WITH ENCRYPTION
AS
Select empname, empid, empsal
GO
SQL Server Transact Basic to Expert - Create basic View with Encryption
Next Recommended Reading
SQL Server Transact Basic to Expert - Get number of connection instances created in SQL