Hi all,
I am trying to join tableA with some data to an empty set of another tableB. The main purpose is to get all the columns of tableB. I do not need any data of tableB.
I have constucted the following SQL:
SELECT uar.*, s.screen_id, s.screen_name
FROM crs_screen s
LEFT JOIN crs_user_access_right uar
ON s.rid IS NOT NULL AND uar.rid IS NULL
This SQL runs perfectly on TOAD but it returns an error when I use it in my VB.NET OracleDataAdapter.Fill(DataTable) statement.
It is fine if there is a work-around to achieve same effect. Thank you very much.
Error message:
OCI-22060: argument [2] is an invalid or uninitialized number
Config:
.NET framework: 1.1
Oracle 9i