Search Results

0
votes
2answers
105 views

Need select query

Consider the following table structure with data - AdjusterID | CompanyID | FirstName | LastName | EmailID ============================================================ 1001 …
2
votes
4answers
40 views

Getting no. of rows affected after running select query in SQL Server 2005

Hi friends, Below is my query select @monNameStr as [MName], IsNull(count(c.AssignmentID),0), IsNull(sum(s.ACV),0), IsNull(sum(s.GrossReturn), …
1
vote
4answers
49 views

Error in Stored Procedure

Hello friends, I am trying to create an SP for presenting paged data on aspx page. I have written following code - Create PROCEDURE [dbo].[sp_GetAllAssignmentData_Paged] …
0
votes
2answers
32 views

How to close db connections used by GridView control in asp.net

Hello friends, I have a website with pages having GridView in it. I am using SQL Data Source control to bind with the GridView. After running the site i am checking the no of active connect …