⟩ Which products does Virtual Office provide web-based access to? (Choose3.)A. eGuideB. iFolderC. NetStorageD. WAN ManagerE. Remote ManagerF. Web Search Server
A: eGuide
B: iFolder
C: NetStorage
A: eGuide
B: iFolder
C: NetStorage
How to Use Delegated Administration Services (DAS), which task can you accomplish?A. manage OracleAS Single Sign-On serverB. manage Oracle Internet Directory processesC. register applications that are created using OracleAS PortalD. manage user and group entries in Oracle Internet Directory (OID)E. monitor system components in an Oracle Application Server 10g installation
Explain Can we give DML statements inside a function?
Suppose You need to save a certificate request in a file system directory by using Oracle WalletManager. What would you do?A. export the certificate requestB. use the File > Save As optionC. import the certificate request and save itD. upload the certificate request to the Directory Service
Suppose You execute the following command in your Oracle Application Server 10g installationto start the Oracle Internet Directory (OID) Server Instance with a new instance ID$ oidctl connect=infra server=oidldapd instance=1 host=edtdr5p1.us.oracle.com startThe command does not error out. But while trying to locate the server instance using theProcess Status (ps) operating system utility, you realize that the instance has not started.What could be the reason?A. The OID Listener process has not started.B. The OID server processes have not started.C. The Oracle HTTP Server process has not started.D. The Oracle Internet Directory (OID) Monitor process has not started.E. The Oracle Enterprise Manager 10g Application Server Control page has not started.
What is oracle application certification?
Explain When does a transaction complete? (Choose all that apply.) A. When a DELETE statement is executed B. When a ROLLBACK command is executed C. When a PL/SQL anonymous block is executed D. When a data definition language statement is executed E. When a TRUNCATE statement is executed after the pending transaction
what is the difference between TRUNCATE, DELETE, DROP?
How to create a multiple databases with the same configuration?
Explain Which two statements are true regarding working with dates? (Choose two.) A. The default internal storage of dates is in the numeric format B. The default internal storage of dates is in the character format C. The RR date format automatically calculates the century from the SYSDATE function and does not allow the user to enter the century D. The RR date format automatically calculates the century from the SYSDATE function but allows the user to enter the century if required?
Suppose you need to generate a list of all customer last names with their credit limits from the CUSTOMERS table. Those customers who do not have a credit limit should appear last in the list. Which two queries would achieve the required result? (Choose two.) A. SELECT cust_last_name,cust_credit_limit FROM customers ORDER BY cust_credit_limit DESC; B. SELECT cust_last_name,cust_credit_limit FROM customers ORDER BY cust_credit_limit; C. SELECT cust_last_name,cust_credit_limit FROM customers ORDER BY cust_credit_limit NULLS LAST; D. SELECT cust_last_name,cust_credit_limit FROM customers ORDER BY cust_last_name,cust_credit_limit NULLS LAST;