Question

This merge statement raise ORA-00905:missing keyword exception. What can be the problem? Something with the WHEN MATCHED branch?

MERGE INTO WORKERPROJECT TARGET
USING (SELECT distinct
               w.worker_id,
               w.worker_type,
               w.project_id worker_project_id, 
               p.project_id project_project_id,
               p.dedicated_project_leader,
               p.dedicated_lead_developer,
               p.dedicated_lead_consultant,
               p.dedicated_supervisor
       from WORKER w 
       join PROJECT p on w.project_id = p.project_id
      ) SOURCE
   ON (TARGET.FK_worker_id=SOURCE.WORKER_ID)
 WHEN MATCHED THEN INSERT (TARGET.FK_WORKER_ID, TARGET.FK_PROJECT_ID,TARGET.IS_ACTIVE,POSITION) 
  VALUES (SOURCE.WORKER_ID,SOURCE.worker_project_id,'IS_ACTIVE',SOURCE.worker_type);
Was it helpful?

Solution

According to http://www.oracle-base.com/articles/10g/merge-enhancements-10g.php

You can only do an insert on WHEN NOT MATCHED.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top