Recent content by Stromgol

  1. S

    Seeing the DBMS_SCHEDULER jobs of another schema

    I think I found another "workaround", if USER1 opens the DBMS Scheduler window directly from the Tools menu. In the list of jobs in that window he can see USER1.JOB1 and not the other jobs.
  2. S

    Seeing the DBMS_SCHEDULER jobs of another schema

    That kind of works. ;) With "Use DBA views if available" enabled, USER2 sees ALL jobs, not just USER1.JOB1. But that's better than nothing. USER2 can't run the other USER1 jobs it now sees, which is fine. Thanks!
  3. S

    Intermittent hang on calendar pop-up

    We are experiencing this problem as well...
  4. S

    Seeing the DBMS_SCHEDULER jobs of another schema

    USER1 has a DBMS_SCHEDULER jobs called JOB1. I want USER2 to be able to see (and run) this job from the Jobs folder in PL/SQL developer (8.0.4.1514). I have run: GRANT ALTER ON USER1.JOB1 TO USER2 For USER1 the selected schema is but the job still doesn't appear in the Jobs folder. Am I...
  5. S

    Bug when setting DBMS scheduler job properties (By Month)

    Edit or create a DBMS scheduler job. In the By Month row, click the '...' button Select January, February and March, press OK The string generated will be 'Jan, , ' instead of 'Jan, Feb, Mar' This bug has been reproduced on multiple machines. This is a minor problem, everything works if you...
  6. S

    Viewing owner name in uppercase when viewing or editing package source

    Like I said, I have workarounds, but this is certainly not an added feature, it's a bug. If the owner name is uppercase in Oracle, PL/SQL Developer shouldn't change that when it outputs code.
  7. S

    Viewing owner name in uppercase when viewing or editing package source

    Ok, we found that this behavior is related to the PL/SQL developer version. I have 8.0.4.1514 installed, people around me running lower versions have the owner name in uppercase. We tested updating one computer to 8.0.4.1514 and the owner name was now coming out lowercase. In my opinion, this...
  8. S

    Viewing owner name in uppercase when viewing or editing package source

    Why I care about this ;) : Because when I make a change to a package, I also export the code to a pck file which I check into sourcesafe. Then, when we compare the sourcesafe files to the production database packages, this lowercase owner name comes up as a difference. It's not a big problem...
  9. S

    Viewing owner name in uppercase when viewing or editing package source

    When I view or edit a package, the owner name is in lowercase in the generated source. Example: CREATE OR REPLACE PACKAGE owner_name.PACKAGE_NAME IS Is there a setting to get the owner name to appear in uppercase instead of lowercase? Thanks!
Back
Top