Quantcast
Channel: VSS Blog - SQL Server
Browsing all 6 articles
Browse latest View live

Create paging in store procedure for data controls

We can easily implement paging in SQL server 2008 , 2005 . Create PROC ProcedureName @PageSize int, @PageNumber int As Begin declare @RowStart int,@RowEnd int SET @PageNumber = @PageNumber -1 SET...

View Article



Create paging in stored procedure for data controls

We can easily implement paging in SQL server 2008 , 2005 .  Create PROC ProcedureName @PageSize int, @PageNumber int As Begin declare @RowStart int,@RowEnd int SET @PageNumber = @PageNumber -1 SET...

View Article

Create DATABASE BACKUP in MSSQL SERVER 2005/2008 using query

Normally we use the wizard to create the database backup , We can also use the query for create the backup file of database  BACKUP DATABASE <Database_Name> To Disk ='Path\File_Name.bak' In this...

View Article

Restore Database in SQL SERVER 2005/2008 using query

In How to create DataBase Back up , section you learn how to create database backup by using query . Now in this section I tell you how to restore back up file from particular location to our MSSQL...

View Article

Image may be NSFW.
Clik here to view.

Report Viewer in Window Application

In this article, I will explain all the steps “How to integrate Report viewer control in Window application?”I have seen many articles about Report Viewer Control of ASP.NET. There was no any...

View Article


Deploy/Publish Window Application With Data Base

Hi All, In this tutorial, I will explain all the steps , which need to follow to implement deploy/publish any window application with their data base and database resides attach with window application...

View Article
Browsing all 6 articles
Browse latest View live




Latest Images