Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Asp.net and SQL server

    Thanks problem is sloved.

  • RE: ASP.NET with C#: Appending Values to stringbuilder

    Thanks Robert.

    Yes I understand what you say.I tried many ways but did not get the output the way I wanted.

    At last I could find a way to append the string...

  • RE: How to append string values in the StringBuilder while looping through DataROw

    Prevoiusly I posted the same doubt and got few suggestions. I tried them but did not help.

    Any way I could find a way to append the string value and now...

  • RE: Deleting duplicate records from retrieved Dataset

    I got the solution.But I want small modification.I want to create temporary table.When I am trying to exec the Stored Procedure for the 1st time it gave me the correct...

  • RE: Deleting duplicate records from retrieved Dataset

    My Stored Procedure is given below

    ----------------------------------------------------------------

    CREATE PROCEDURE financeReport

    (

     @StartDate  smalldatetime=null,

     @EndDate  smalldatetime=null

    )

    AS

    BEGIN

     SET NOCOUNT ON

     ---------------------------------------------------

     -- Declare and Set local variables

     ---------------------------------------------------

     DECLARE @ComCode  varchar(5)

     DECLARE @CustID   varchar(15)

     DECLARE @CustName  varchar(255)

     DECLARE @ShipCity  varchar(150)

     DECLARE @Company  varchar(150)

     DECLARE @Company1  varchar(150)

     DECLARE @Company2  varchar(150)

     DECLARE @CommissionRate  float

     DECLARE @PercOfCommission varchar(10)

     DECLARE @PercOfCommission1 float

     DECLARE @PercOfCommission2 float

     DECLARE @LineTotal  float

     DECLARE @Commission  varchar(255)

     DECLARE @IVNO   nvarchar(6)

     DECLARE @IVSTATE  nvarchar(10)

     DECLARE...

  • RE: Deleting duplicate records from retrieved Dataset

    Hi Merrill,
    Thanks for replying. This stored procedure retuns duplicate records with same data in all columns.So I was trying to fill the results of this stored procedure into a table and...
  • RE: Deleting duplicate records from retrieved Dataset

    Thanks For your suggestion.Yes you are right I would use data as read only to generate the Excel report using string builder looping for each row.Yes I want to use...

  • RE: Counting String occurrences in the table

    Hi,

    Thanks a lot for your response!! I'll try this and let you know if any problems..

    Regards,

    Alice.

Viewing 8 posts - 1 through 8 (of 8 total)