Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How does the Migration Workbench migrate Microsoft SQL Server outer joins to Oracle outer joins?

0
10 Posted

How does the Migration Workbench migrate Microsoft SQL Server outer joins to Oracle outer joins?

0
10

The Migration Workbench does not convert full outer joins to an Oracle database. The Migration Workbench converts a SQL Server inner join to an Oracle join as illustrated in the following code example: select * from a inner join b on a.col1=b.col2; select * from a , b where a.col1=b.col2; The Migration Workbench converts left joins and right joins in SQL Server to an Oracle database, for example: select * from a left join b on a.col1=b.col2; remember the table to the right of left join and add (+) to it’s columns. select * from a, b where a.col1=b.col2(+); select * from a right join b on a.col1=b.col2; remember the table to the left of right join and add (+) to it’s columns. select * from a, b where a.col1(+)=b.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.