单项选择题

A.Acheckpointdefinesthehighestsystemchangenumber(SCN).
B.AllredoentrieshigherorattheSCNareknowntobewrittentothedatafiles.
C.OnlytheredorecordscontainingSCNshigherthenthecheckpointneedtobeappliedduringrecovery.
D.TheLOG_CHECKPOINT_INTERVALinitializationparameterspecifiestheamountoftimebetweenincrementalcheckpoints.
相关考题

单项选择题 WhicharerequiredinitializationparametersinanOracleSharedServerenvironment?()

单项选择题 ClicktheExhibitbuttonandexaminethediagram.YouarerunningadatabasethattakesadvantageoffeaturesprovidedbyConnectionManager,heterogeneousservices,andexternalprocedures.Thediagramdepictsthecomponentsusedforthenamingmethodyoujustconfigured.Whichnamingmethodareyouusing?()A.Hostnamingmethod.B.Localnamingmethod.C.Directorynamingmethod.D.Externalnamingmethod.

单项选择题 Examine the data in the EMPLOYEES and DEPARTMENTS tables:EMPLOYEESEMP_NAME DEPT_ID MGR_ID JOB_ID SALARYEMPLOYEE_ID101 Smith 20 120 SA_REP 4000102 Martin 10 105 CLERK 2500103 Chris 20 120 IT_ADMIN 4200104 John 30 108 HR_CLERK 2500105 Diana 30 108 IT_ADMIN 5000106 Smith 40 110 AD_ASST 3000108 Jennifer 30 110 HR_DIR 6500110 Bob 40 EX_DIR 8000120 Ravi 20 110 SA*DIR 6500DEPARTMENTSDEPARTMENT_ID DEPARTMENT_NAME10 Admin20 Education30 IT40 Human ResourcesAlso examine the SQL statements that create the EMPLOYEES and DEPARTMENTS tables:CREATE TABLE departments(department_id NUMBER PRIMARY KEY,department _ name VARCHAR2(30));CREATE TABLE employees(EMPLOYEE_ID NUMBER PRIMARY KEY,EMP_NAME VARCHAR2(20),DEPT_ID NUMBER REFERENCESdepartments(department_id),MGR_ID NUMBER REFERENCESemployees(employee id),MGR_ID NUMBER REFERENCESemployees(employee id),JOB_ID VARCHAR2(15).SALARY NUMBER);ON the EMPLOYEES,On the EMPLOYEES table, EMPLOYEE_ID is the primary key.MGR_ID is the ID of managers and refers to the EMPLOYEE_ID. DEPT_ID is foreign key to DEPARTMENT_ID column of the DEPARTMENTS table. On the DEPARTMENTS table, DEPARTMENT_ID is the primary key.Examine this DELETE statement:DELETEFROM departmentsWHERE department id = 40;What happens when you execute the DELETE statement?()