Recent content by sdufour

  1. S

    more background queries on logon

    Are you talking about the object browser?
  2. S

    more background queries on logon

    I turned on auditing in production and found upon logon each user is recieving a security violation message in the audit trail. It is trying to query the following objects...
  3. S

    background query on logon

    You the man. Thanks.
  4. S

    background query on logon

    When you use pl/sql developer to log in to the database it runs the following query: select s.synonym_name object_name, o.object_type from all_synonyms s, sys.all_objects o where s.owner in ('PUBLIC', :schema) and o.owner = s.table_owner and o.object_name = s.table_name and o.object_type...
  5. S

    DBMS_OUTPUT.PUT_LINE with 4000 Characters ERROR

    We found a similar issue. We found by uninstalling 8.0.4 and installing 8.0.1 the issue was resolved.
  6. S

    Access violation at address orageneric10.dll

    This never got resolved by allroundautomations. I did find a workaround though. Uninstall your Oracle client Uninstall PL/SQL Developer Delete all registry keys pointing PL/SQL Developer (our end users are Windows users) Reinstall Client Reinstall PL/SQL Developer Then it just works.... Dev...
  7. S

    Access violation at address orageneric10.dll

    Did you mean a private message here through this system or an email to "support@ allroundautomations.com?"
  8. S

    Access violation at address orageneric10.dll

    Receive this error when querying the following table. SQL> desc table_name Name Type -------------- ---- SOURCE_TABLE VARCHAR2(4000) ATTRIBUTES XMLTYPE We only receive the error when the rownum reaches > 99. Access violation at address 03AD01F3 in module
Back
Top