rem: Create a db-link (not tested, adjust myLogin and yourPasswordOnLoki):

DROP DATABASE LINK ib99b; 

CREATE DATABASE LINK ib99b
  CONNECT TO scott IDENTIFIED BY tiger
  USING 'ib99b';

rem: Test the link:
SELECT * FROM emp@ib99b;
