Temporary tables in Transformation

  • Can I use temporary table in transformation?

  • hey riga

    its really a interesting question...

    i dont think u can do that once the scope of the temp rable is over. u please do let me know the actual answer.

    thanx,

    Rajiv.

  • Use a derived table:

    select a.f1, a.f2

    from myTable a

    inner join

    (select f1 from myOtherTable)myDerivedTable

    on a.f1 = myDerivedTable.f1

    [font="Courier New"]ZenDada[/font]

  • You can if you use a stored procedure instead of inline SQL.

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

You must be logged in to reply to this topic. Login to reply