Bonjour à tous,
Voilà mon probleme: je cré une procedure PL/SQL comme donnée ci-dessous:
Et là je recois l'erreur :PROCEDURE GetChildren ( Parent raw) AS
cursor Children is select A.\"\$COID\",A.S_PART_NUMBER,A.S_VERSION,A.LOCAL_PART_NAME
from ENVIR.PART_LIST A, ENVIR_TMP.PART_LIST B
where A.\"\$COID\" = B.\"\$COID\" and B.\"\$COID\" = Parent;
CurrentChild Children%rowtype;
...
Pourtant le user ENVIR_TMP existe dans la base et la table PART_LIST aussi .... Ce qui devient encore plus fou, c'est que tous mes users avec un underscore n'arrive pas à etre trouvés ... quelqu'un aurait une idée du probleme ? un bug ?PLS-00201: identifier 'ENVIR_TMP.PART_LIST' must be declared
Merci d'avance.
Partager