Forum Replies Created

Viewing 13 posts - 16 through 28 (of 28 total)

  • RE: A Better Solution

    Well I'm trying to convert an Oracle PLSQL into SQLServer TSQL, and the logic for this particular Stored Procedure is the one i mentioned in my first post..

  • RE: I''''d like to have this anaylyzed.

    Declare @MyError int, @MyRowcount int

    Update S

     SET NAME = REPLICATE(  CHAR(65 + (Sc.Counter *2) )  ,4) 

       from T_STOCKS S

     inner join (Select S1.ITEM_NO, count(*) as Counter

       from T_STOCKS S1

       Inner...

  • RE: I''''d like to have this anaylyzed.

    BTW, alzdba  your TSQL is really cool.. I would never have thought about that.. up till now I'm still figuring it out.....

  • RE: I''''d like to have this anaylyzed.

    what's wrong with cursors then?

  • RE: Error 557

    Yup I guess you're right... hmmm... but its not by choice you know

    Now I'm having a problem with reading files in T-SQL.. I was...

  • RE: Error 557

    Well the oracle code is written in this way (an sp is called within the function... )

    and well I can't just suggest ways...

  • RE: On Cursors

    I guess so, but there are some codes in Oracle that is in Oracle only so that's where the trouble comes from.

    ... As for the debug type, I don't have...

  • RE: On Cursors

    See if I have understood this correctly

    ('cause It's not easy to practice this here.. the environment is in japanese so I get into trouble a lot.

  • RE: On Cursors

    Thanks for the reply.. yup yo got it right but if I'm to request for a business logic that might take a...

  • RE: On Cursors

    Moreover, I had the idea of creating another table but I did not design this database so I'm not sure If I'm allowed to create on though... a global temporary...

  • RE: On Cursors

    You gave me an idea there, but actually I'm converting an Oracle PL SQL into SQLServer T-SQL, then the columns will be outputted to a csv file, although the data...

  • RE: DECLARING Variables

    Thanks, the links did a great help... It gave me some tips. on the stored procedure part.

  • RE: DECLARING Variables

    I figured.

    Well I just want some confirmation. There's this client who want's the oracle plsql to be converted to SQLServer T-SQL and I...

Viewing 13 posts - 16 through 28 (of 28 total)