I am facing one issue where I want to copy data from an oracle select query to Azure Data Lake, my select query contains some column details from an oracle view, for example below is my oracle select query (below is formed inside of a for each loop):
SELECT "Update","Name" from T.DATA
Issue that I am facing currently is whenever it is passed inside the copy data activity it is passed as escaped character before the double quotes as below:
"SELECT "Update","Name" from T.DATA
(Not able to give example here but can share screenshot if required)
and above is throwing an error in oracle database, not sure why? I tried using replace function as well to get rid off "", but it does not replace as well, please let me know if there are ways through which we can achieve this?