4.Which four are true about creating and running a remote database scheduler jobs? A) A credential is optional for a remote database job. B) A database destination group must exist or be created for a job to run on multiple remote databases. C) A des…
7.daily_ords_lst is created in locally managed tablespace ORDERS_TBS which uses automatic segment space management. CREATE TABLE daily_ords_list (ordno NUMBER, ord_date DATE) PCTFREE 20; Which two are true ? A) 80% of every data block in daily_ords_l…
8. Which are two ways for a database service to be recognized by a listener in Oracle Database 12c? A) Static registration in the listener.ora file using the service_name parameter B) Dynamic Registration by the smon process C) Static registration in…
choose three Which three statements are true about Oracle checkpoint processing? A) Incremental checkpoints write some dirty buffers to the datafiles and unwritten redo to the online redo logs. B) Frequent thread checkpoints can degrade database perf…
choose three Your database is configured for ARCHIVELOG mode, and a daily full database backup is taken. RMAN is configured to perform control file autobackup. In which three scenarios do you need media recovery? A) loss of data files that belong to…
choose three Which three statements are true about Oracle Data Pump? A) Oracle Data Pump export and import operations can be performed only by users with the SYSDBA privilege. B) IMPDP can be used to change target data file names, schemas, and tables…
choose two Your database is running in ARCHIVELOG mode. You want to take a consistent whole database backup. Which two statements are true in this scenario? A) RMAN backups contain only data files. B) The database must be in MOUNT state to take consi…
choose two Examine this command executed on a client that is remote from the database server. SQL> CONNECT hr/hr@orcl Which two are required for this command to connect the SQLPLUS client to a database instance? A) A service name must be defined to t…
6.Which four statements are true about database instance behavior? A) Redo log files can be renamed in mount state. B) Datafiles can be renamed in mount state. C) All dynamic performance views (v$ views) return data when queried from a session connec…
25.Which is true about logical and physical database structures? (Choose the best answer) A. An undo tablespace has a temp file instead of a data file. B. A segment can consist of extents of different sizes. C. A permanent tablespace can only contain…
[托业][全真题库]TEST01-03-阅读题…
大家好,由于最近自己备考Amazon AWS-Solutions-Architect-Professional考试,购买了以下链接的题库,并通过了考试 https://www.kaoguti.gq/AWS-Solutions-Architect-Professional_exam-pdf.html 如有需要题库的老铁,可以加我QQ:584025778,有偿分享,价格肯定是低于以上链接. 并帮助了一位老铁成功的通过了SAP考试 也同时欢迎各位随时交流AWS各种相关…
大家好, 我是方子龙.很久没有自己写文章了. 一面是因为工作上的需求开发任务比较重,下班回家基本上就躺床玩几把王者,度过闲暇时光. 二面是一有点时间就自己主动地去看书和学习,知道自己还缺少很多知识,由于还在进行中,输出还很少. 最近在看的书籍: <颠覆平庸>彭小六 推荐理由:一个由程序员转写作的大佬,主要包含个人,团队,项目,时间管理.很贴近我们程序员的思维,提升个人职场竞争力.读完收益匪浅. <数学之美>吴军 (食用方式)公众号"Java技术干货"内回复关键字…
题库,对于教育机构,学校,在线教育,是很有必要的,网上也有不少的第三方在线题库系统,但是本次案例,会让有需要的人了解题库的开发思路,其实很简单,无非就是一个表单验证,数据库验证. 1.先构建表单数据2.把表单数据通过get或者post方式提交到表单验证页面,和数据库进行匹配3.返回结果,答案正确或者错误 构建表单:index.php <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type&…
5.One of your databases supports an OLTP workload. The default undo tablespace is fixed size with: 1. RETENTION NOGUARANTEE 2. undo_retention is 12 minutes User scott get this error after a query on the sales table has run for more than 15 minutes: O…
10.Which two statements are true about SQL*Loader Express Mode in an Oracle 12c database? A) It can load data in parallel. B) No data file needs to be specified. C) It loads data faster than conventional SQL*Loader. D) lt loads data more efficiently…
11.Your database is in archivelog mode. You want to disable archiving for the database. Examine these steps: 1. Execute the alter database noarchivelog command. 2. Execute shutdown immediate. 3. Execute startup mount. 4. Set the db_recovery_file_dest…
9.You ran this command on a source database: $> expdp hr/hr DIRECTORY=dumpdir DUMPFILE=empl.dmp VIEWS_AS_TABLES=emp_dept On the target database, you run this command: impdp hr/hr DIRECTORY=dumpdir DUMPFILE=empl.dmp VIEWS_AS_TABLES=emp_dept Which two…
choose one In your Oracle 12c database, you plan to execute the command: SQL> CREATE TABLESPACE tbsl DATAFILE '/u02/oracle/data/tbs0l.dbf' SIZE 50M; The u02 file system has 1 GB of free space available. What is the outcome? A) It raises an error beca…
choose two You plan to upgrade your Oracle Database 9i to Oracle Database 12c. Which two methods can you use? A) Perform a direct upgrade by manually running the catctl.pl and catupgrd.sql scripts before issuing the STARTUPUPGRADE command. B) Upgrade…
65.(22-16) choose the best answer: The CUSTOMERS table has the following structure: You need to write a query that does the following tasks: 1. Display the first name and tax amount of the customers. Tax is 5% of their credit limit. 2. Only those cus…
choose one Which users are created and can be used for database and host management of your DBaaS database servers? A) cloud and oracle users B) root, oracle and cloud users C) root and oracle users D) opc and oracle users E) root, opc and oracle use…
68.(29-13)choose two: Which two statements are true? (Choose two.) A) DICTIONARY is a view that contains the names of all the data dictionary views that the user can access. B) The user SYSTEM owns all the base tables and user-accessible views of the…
67.(25-8)choose the best answer: View the Exhibit and examine the structure of CUSTOMERS table. Evaluate the following query: SQL>SELECT cust_id, cust_city FROM customers WHERE cust_first_name NOT LIKE 'A_%g_%' AND cust_credit_limit BETWEEN 5000 AND…
66.(22-19)choose two Examine the structure proposed for the TRANSACTIONS table: Which two statements are true regarding the creation and storage of data in the above table structure? A) The TRANS_DATE column would be able to store day, month, century…
28.choose the best answer Evaluate the following SQL statement: SQL> SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'Internet' ORDER BY 2 DESC UNION SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'TV' U…
27.choose two The SQL statements executed in a user session are as follows: SQL> CREATE TABLE product (pcode NUMBER(2), pname VARCHAR2(10)); SQL> INSERT INTO product VALUES (1, 'pen'); SQL> INSERT INTO product VALUES (2,'pencil'); SQL> SAVEPOI…
26.choose two Examine the structure of the PRODUCTS table. Which two statements are true? A) EXPIRY_DATE always stores date and time in character format B) PRICE can store a maximum of eight digits and two decimals. C) PRODUCT_PIC can store only vide…
25. choose the best answer Evaluate the following SQL statement: ALTER TABLE hr.emp SET UNUSED (mgr_id); Which statement is true regarding the effect of the above SQL statement? A) Any views created on the EMP table that include the MGR_ID column wou…
31.Which two events always request the LGWR to write? A) when LGWR is notified by a server process that performs a Commit or ROLLBACK B) When PMON restarts a server process C) when DBWn writes dirty buffers D) when a log switch occurs E) when a check…