sql server linked server to oracle returns no data found when data exists

后端 未结 5 1946
甜味超标
甜味超标 2020-12-20 15:53

I have a linked server setup in SQL Server to hit an Oracle database. I have a query in SQL Server that joins on the Oracle table using dot notation. I am getting a “No Da

5条回答
  •  情歌与酒
    2020-12-20 16:38

    I've had the same problem. Solution1: load the data from the Oracle database into a temp table, then join to that temp table instead - here's a link.

    From this post a link you can find out that the problem can be with using left join. I've checked with my problem and after changing my query it solved the problem.

提交回复
热议问题