Forum Replies Created

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

  • RE: Assistance For Script

    Found a solution:

    --===== Declare the working variables

    DECLARE @Pod varchar(10)

    DECLARE @RDATotal varchar(18)

    DECLARE @AccountRunningCount INT

    --===== Update the running total and running count for this row using...

  • RE: Assistance For Script

    Is these not the same?

  • RE: Allocate Payments to Transactions.

    Further to my previous:

    Here is a cursor solution which sort of solves problem, but as with cursors very very slow.

    drop Procedure Alloc_Trans

    go

    Create Procedure Alloc_Trans

    as

    Begin

    SET NOCOUNT ON;

    DECLARE @cust_acct_no Varchar(20),@Trans_No Varchar(20),@Amount_Running...

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