While creating a job class using the DBMS_SCHEDULER package,

题目
单选题
While creating a job class using the DBMS_SCHEDULER package, you set the logging level to LOGGING_RUNS. What would be the impact of this setting?()
A

 Oracle Scheduler would write detailed information to the job log for each run of each job in the job class.

B

 Oracle Scheduler would write detailed information to the job log for the first run of each job in the job class.

C

 Oracle Scheduler would write detailed information to the job log for each run of only the first job in the job class.

D

 Oracle Scheduler would write detailed information for all operations performed on all jobs in the job class.

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

一个程序中,package、import、和class的排放次序是()

  • A、package、import、class
  • B、import、package、class
  • C、三者任意
  • D、class在最后,import、package排放次序任意

正确答案:A

第2题:

While creating a job class using the DBMS_SCHEDULER package, you set the logging level to LOGGING_RUNS. What would be the impact of this setting?()

  • A、 Oracle Scheduler would write detailed information to the job log for each run of each job in the job class.
  • B、 Oracle Scheduler would write detailed information to the job log for the first run of each job in the job class.
  • C、 Oracle Scheduler would write detailed information to the job log for each run of only the first job in the job class.
  • D、 Oracle Scheduler would write detailed information for all operations performed on all jobs in the job class.

正确答案:A

第3题:

在Java语言中,在包Package1中包含包Package2,类Class_A直接隶属于包Package1,类Class_B直接隶属于包Package2。在类Class_C要应用Class_A的方法A和Class_B的方法,你需要()语句。

A.importPackage1.*;

B.importPackage1.Package2.*;

C.importPackage2.*;

D.importPackage2.Package1.*;


参考答案:A, B

第4题:

Which DBMS_SCHEDULER procedure(s) can be used to alter an existing job?()

  • A、 SET_ATTRIBUTE_NULL
  • B、 ALTER_JOB
  • C、 ALTER_JOB_PARAMETERS
  • D、 ALTER
  • E、 SET_ATTRIBUTE

正确答案:A,E

第5题:

package foo; public class Outer (  public static class Inner (  )  )   Which statement is true? () 

  • A、 An instance of the Inner class can be constructed with “new Outer.Inner ()”
  • B、 An instance of the inner class cannot be constructed outside of package foo.
  • C、 An instance of the inner class can only be constructed from within the outer class.
  • D、 From within the package bar, an instance of the inner class can be constructed with “new inner()”

正确答案:A

第6题:

A developer is creating a class Book that needs to access class Paper.The Paper class is deployed in a JARnamedmyLib.jar.Whichthree,taken independently,will allow the developer to use the Paper class while compiling the Book class?()

  • A、The JAR fileis located at$JAVA_HOME/jre/classes/myLib.jar.
  • B、The JAR fileis located at$JAVA_HOME/jre/lib/ext/myLib.jar.
  • C、TheJ AR fileis located at/foo/myLib.jar and aclasspath environment variable is set that includes /foo/myLib.jar/Paper.class.
  • D、The JAR fileis located at/foo/myLib.jar and a classpath environment variable is set that includes/foo/myLib.jar.
  • E、The JAR file is located at/foo/myLib.jar and the Book class is compiled using javac-cp/foo/myLib.jar/Paper Book.java.
  • F、The JAR file is located at/foo/myLib.jar and the Book class is compiled using javac-classpath/foo/myLib.jar Book.java.

正确答案:B,D,F

第7题:

在单一文件中import、class和package的正确出现顺序是()

  • A、package,import,class
  • B、class,import,package
  • C、import,package,class
  • D、package,class,import

正确答案:A

第8题:

Which DBMS_SCHEDULER procedure(s) can be used to alter an existing job? ()

A. SET_ATTRIBUTE_NULL

B. ALTER_JOB

C. ALTER_JOB_PARAMETERS

D. ALTER

E. SET_ATTRIBUTE


参考答案:A, E

第9题:

下列有关类声明的代码片段,哪一项是正确的?() 

  • A、 import java.sql.*; package school; class Student{ }
  • B、 package school; import java.sql.*; class Student{ }
  • C、 package school; class Student{ } import java.sql.*;
  • D、 package school; import java.sql.*;private String name; class Student{ }

正确答案:B

第10题:

You are creating a job class. You have issued the following command to create the job class:  SQL> BEGIN   DBMS_SCHEDULER.CREATE_JOB_CLASS(        JOB_CLASS_NAME => ’LOW_PRIORITY_CLASS’,        RESOURCE_CONSUMER_GROUP => ’LOW_GROUP’,        LOGGING_LEVEL => DBMS_SCHEDULER.LOGGING_FULL,        LOG_HISTORY => 1200,   COMMENTS => ’LOW JOB PRIORITY CLASS’);        END;        SQL> /   What will be the result of the above command?()

  • A、 The command will be executed successfully.
  • B、 The command will fail because RESOURCE_CONSUMER_GROUP is an invalid parameter in the  DBMS_SCHEDULER.CREATE_JOB_CLASS procedure.
  • C、 The command will fail because LOGGING_LEVEL is an invalid parameter in the DBMS_SCHEDULER.CREATE_JOB_CLASS procedure.
  • D、 The command will fail because LOG_HISTORY is an invalid parameter in the DBMS_SCHEDULER.CREATE_JOB_CLASS procedure.
  • E、 The command will fail because 1200 is an invalid value for the LOG_HISTORY parameter in the  DBMS_SCHEDULER.CREATE_JOB_CLASS procedure.

正确答案:E

更多相关问题