Skip to Main Content
  • Questions
  • Sub queries not working if db link used

Breadcrumb

Question and Answer

Connor McDonald

Thanks for the question, Thirumalaisamy.

Asked: March 24, 2025 - 5:35 am UTC

Last updated: April 04, 2025 - 2:02 am UTC

Version: 12c

Viewed 100+ times

You Asked

hi Tom,
when a remote table is referred in sub query then it is not retrieving the data and it throws error.

refer the below sql, I am trying to get latest record, so I am doing order by DATEM in sub query and taking first record in outer sql. here, OWNERDOCUMENTS used in FROM clause is a synonym created for a remote table.

The below sql not working!
select ownercode,img_path_back,img_path_front,DELETED_FLG,useridm,DATEM  
FROM ( select ownercode,img_path_back,img_path_front,customer_name,NVL(DELETED_FLG,'N')  DELETED_FLG,useridm,DATEM 
    from OWNERDOCUMENTS where OWNERCODE=NVl('xxxx',OWNERCODE)  Order By DATEM DESC ) WHERE  ROWNUM=1;



The sql below is working!!

select ownercode,img_path_back,img_path_front,customer_name,NVL(DELETED_FLG,'N')  DELETED_FLG,useridm,DATEM 
    from OWNERDOCUMENTS where OWNERCODE=NVl('xxxx',OWNERCODE)  Order By DATEM DESC;


what could be the issue? please advice.

and Connor said...

when a remote table is referred in sub query then it is not retrieving the data and it throws error.

Yes - but given you did not share that error with us, there is not really much we can do :-(



Rating

  (2 ratings)

Comments

Error when remotedb (dblink) used inside subquery

Thirumalaisamy, March 25, 2025 - 11:35 am UTC

Sorry, here is the error msg I got..
Error report -
SQL Error: ORA-22992: cannot use LOB locators selected from remote tables
22992. 00000 - "cannot use LOB locators selected from remote tables"
*Cause: A remote LOB column cannot be referenced.
*Action: Remove references to LOBs in remote tables.\
Connor McDonald
April 04, 2025 - 2:02 am UTC

see the followup comments and video

To the above error message..

Rajeshwaran Jeyabal, April 03, 2025 - 8:16 am UTC

Connor McDonald
April 04, 2025 - 1:10 am UTC

Also, it might be time to upgrade :-)