Forum Replies Created

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

  • RE: Need max() function by record not column

    If there is I'd be interested to see it. I've had a similar problem before and used the case statement. You could write a function to do it that accepts...

  • RE: Help.....This runs so slow

    Just a thought, it looks like you only want to delete the data from FT if it does not have a key in FTR.

    You could therefore scan for those entries...

  • RE: plz help me

    how about just

    CREATE PROCEDURE ChartGetRegisteredUsers

     AS

    select (SELECT count(DistributorID) from Distributors WHERE approvalstatuscode = 2) as Distributors,

             (SELECT count(ResellerID) from Resellers WHERE approvalstatuscode = 2) as Resellers

    GO

     

     

  • RE: The 7 Upsides to IT

    It's good to see someone looking at the upsides for a change, I think its human nature to always highlight the downsides and sometimes we forget about the good things.

    IT...

  • RE: Execution plan question

    Hi,

    I'd need more information to be able to comment on this.

    1) You get the difference in dev and live - Are the data volumns the same in both environments?

    2) Have...

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