plsql7 connection oracle11G not look at the issue of jobs List

Oracle leaders said after the upgrade to 11G, connected on the oracle database, but through plsql open, click on the jobs bar, which did not show a list of jobs that have been created, I asked his plsql version, he said plsql7.1.5.

After google, draw what conclusions:
plsql7 series version of the interface of jobs option is to query the record user_jobs table.
But after plsql8 series version of the interface of jobs option is to query the record user_scheduler_jobs table; 

 

In practice the line of jobs exist user_scheduler_jobs oracle library table inside, I query by sql, as follows:

 

SQL> select job_name,job_style,job_creator from user_scheduler_jobs;
JOB_NAME                       JOB_STYLE   JOB_CREATOR
------------------------------ ----------- ------------------------------
JOB_23                         xx     xx
JOB_61                         xx     xx
JOB_20                         xx     xx
JOB_33                         xx     xx
JOB_99                         xx     xx
JOB_98                         xx     xx
 
6 rows selected
SQL> select job,log_user from user_jobs;
 
       JOB LOG_USER
---------- ------------------------------


 
So if you want to see the list of jobs in plsql inside the window, there are two ways:
1, executed in plsql7 series of windows sql view: the SELECT * from user_scheduler_jobs;
2, upgrade to plsql8 or later, such as plsql10.2 version inside the annex to see through the jobs tab in the new version inside.

Guess you like

Origin blog.csdn.net/csdnhsh/article/details/93307615
Recommended