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 ArticleCreate 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 ArticleCreate 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 ArticleRestore 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 ArticleReport 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 ArticleDeploy/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