Recent content by avossel

  1. A

    VCS-PlugIn

    Yes I have reinstalled the same VCS Plug-In version. I will send You the Logfile also.
  2. A

    VCS-PlugIn

    Hello Marco, Following problem if you update PL/SQL Developer and the previous installed version have installed the VCS-PlugIn. For example if you klick (right mouse-key) on any package/table to open the contextmenu you get an access violation. After you disable the VCS-PlugIn it works fine...
  3. A

    Removing Duplicates

    Why do you not only delete the obsolete inserts ? Here are the code you need to do this: CREATE OR REPLACE PROCEDURE commpany_add(cname IN VARCHAR2) IS cnt INTEGER; BEGIN SELECT COUNT(*) INTO cnt FROM REC_COMPANY r WHERE r.rec_comp_name = cname; IF cnt = 0 THEN INSERT INTO...
Back
Top