Hi, The queries getting generated differ only in the AS clause. Two examples are given below.
First Time: ---------- select addr.street_address as street_address_01, .... from address addr where ......
Second Time: ------------- select addr.street_address as street_address_02, .... from address addr where ......
In the above queries if you notice for the second run the query changed only by the AS clause from street_address_01 to street_address_02. The query generated is very large but for simplicity I have shortend it.
Is there a way to ensure that the queries generated remains the same at all times?
Thanks & Regards, Rajeev
|