Re: Reg: Column name is not passed to RDBMS

2017-03-16 Thread Jinfeng Ni
Can you please first check the EXPLAIN PLAN output for your query? The first step is to figure out whether it's planner issue, or execution issue. On Thu, Mar 16, 2017 at 7:39 AM, Nishith Kumar Nayak wrote: > Hi, > > While trying to run SQL query for RDBMS source like Oracle, instead of the > c

Reg: Column name is not passed to RDBMS

2017-03-16 Thread Nishith Kumar Nayak
Hi, While trying to run SQL query for RDBMS source like Oracle, instead of the column names from the table referred it it pushing down * to the respective database. Ex: Select empName from Employee Passed to Oracle is select * from Employee For large scale application, it is fetching all the u