DBLINK qui fait des siennes
Bonjour à tous,
J'essai tant bien que mal de créer un DBLINK sur ma base (XE 10.2g) vers une autre base (10.2g).
Code:
1 2 3 4 5
| CREATE DATABASE LINK "MONDBLINK"
CONNECT TO "user" IDENTIFIED BY VALUES 'mdp'
USING '192.168.0.1/ORCL';
CREATE DATABASE LINK succeeded. |
J'arrive bien à créer le DBLink mais dès que je veux l'utiliser, j'ai ça :
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| select * from matable@MONDBLINK;
Error starting at line 1 in command:
select * from matable@MONDBLINK
Error at Command Line:5 Column:0
Error report:
SQL Error: ORA-00600: code d'erreur interne, arguments : [kzdlk_zt2 err], [4294967283], [], [], [], [], [], []
00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"
*Cause: This is the generic internal error number for Oracle program
exceptions. This indicates that a process has encountered an
exceptional condition.
*Action: Report as a bug - the first argument is the internal error number |
Avez vous une idée pour me dépanner ?
Merci !