多选题These are the details about V$FLASHBACK_DATABASE_STAT:  SQL DESC V$FLASHBACK_DATABASE_STAT Name Null? Type  ------------- -------- --------------  BEGIN_TIME DATE END_TIME DATE  FLASHBACK_DATA NUMBER  DB_DATA NUMBER REDO_DATA NUMBER  ESTIMATED_FLASHBACK_SIZE NUMBER  Which two statements regarding the V$FLASHBACK_DATABASE_STAT view are true? ()ABEGIN_TIME is the time at which Flashback logging is enabled.BEND_TIME is the time at which the query is executed on the view.CREDO_DATA is the number of bytes of redo data written during the interval.DThis view contains information about flashback data pertaining to the last 24 hours.EFLASHBACK_DATA is the amount of flashback data generated since the database was opened.

多选题
These are the details about V$FLASHBACK_DATABASE_STAT:  SQL> DESC V$FLASHBACK_DATABASE_STAT Name Null? Type  ------------- -------- --------------  BEGIN_TIME DATE END_TIME DATE  FLASHBACK_DATA NUMBER  DB_DATA NUMBER REDO_DATA NUMBER  ESTIMATED_FLASHBACK_SIZE NUMBER  Which two statements regarding the V$FLASHBACK_DATABASE_STAT view are true? ()
A

BEGIN_TIME is the time at which Flashback logging is enabled.

B

END_TIME is the time at which the query is executed on the view.

C

REDO_DATA is the number of bytes of redo data written during the interval.

D

This view contains information about flashback data pertaining to the last 24 hours.

E

FLASHBACK_DATA is the amount of flashback data generated since the database was opened.


参考解析

解析: 暂无解析

相关考题:

In order to prove that you would be a valuable problem solver for the employer, you need to write on your résumé about the details on how you solved a problem and what wanted consequences your solution brought about.()

We would be ________ if you could send us full details about your products. A.wonderfulB.hopefulC.regretfulD.grateful

____________ me all the details of the meeting --- just tell me about what they decided. A.SpareB.AvoidC.ObtainD.Remind

View the Exhibit to examine the Automatic SQL Tuning result details.Which action would you suggest for the selected SQL statement in the Exhibit?() A. Accept the recommended SQL profile.B.Collect statistics for the related objects.C. Run the Access Advisor for the SQL statement.D. Run the Segment Advisor for recommendations.

Inwhatviewareyoulikelytoseethefollowingoutput?()SIDSERIALEVENTSECONDS_IN_WAIT121269RMANbackuprecoveryI/O2129415SQL*Netmessagefromclient63130270SQL*Netmessagefromclient A.V$SESSION_EVENTB.V$SESSIONC.V$WAITSD.V$WAITSTATE.V$SYSSTAT

FlashbackDatabaseisenabledinyourOracle10gdatabase.Oneofyourdatabaseuserserroneouslypurgedanimportanttableresidinginhisschema.Thetablewaspurgedsometimebetween10:00P.M.and10:30P.M.Thenextday,youdecidetoflashbackthedatabase.Beforeyouflashbackthedatabase,youwanttoensurethatyouhaveallthenecessaryflashbackdata.Whichdynamicperformanceviewmustyouusetodeterminewhetheryouhavetherequiredflashbackdatatorecoverthepurgedtable?()A.V$DATABASEB.V$UNDOSTATC.V$FLASHBACK_DATABASE_LOGD.V$FLASHBACK_DATABASE_STAT

Directions:Suppose your class is to holda charity sale for kids in need of help.Write your classmates an email to inform them about the details,and encourage them to participate.You should write about 100 words on the ANSWER SHEET.Do not use your own name;use"Li Ming”instead.Do not write your address.

According to the press release,what can be found on the company’s web site?A. News of future company projectB. Details of the latest advertising campaignC. A statement about Mr. Charlie McGregerD. Information about Ms. Jackie Johnson

Which statement is true about "full state backup" in a Cisco Unified Computing System?()A、 An XML file containing all details of the system, including IP address and cluster details B、 A binary file containing only service profiles, pools, and other items configured after initial configurationC、 A binary file containing all details of the system, including IP address and cluster detailsD、 An XML file containing only service profiles, pools, and other items configured after initial configurationE、 A text file with the NX-OS running configuration

Which three statements about performance analysis by SQL Performance Analyzer are true? ()A、It detects changes in SQL execution plans.B、It produces results that can be used to create the SQL plan baseline.C、The importance of SQL statements is based on the size of the objects accessed.D、It generates recommendations to run SQL Tuning Advisor to tune regressed SQLs.E、It shows only the overall impact on workload and not the net SQL impact on workload.

On Friday at 11:30 am you decided to flash back the database because of a user error that occurred at 8:30 am. Which option must you use to check whether a flashback operation can recover the database to the specified time? ()A、Check the alert log fileB、Query the V$FLASHBACK_DATABASE_LOG viewC、Query the V$RECOVERY_FILE_DEST_SIZE viewD、Query the V$FLASHBACK_DATABASE_STAT viewE、Check the value assigned for the UNDO_RETENTION parameter

These are the details about V$FLASHBACK_DATABASE_STAT:  SQL DESC V$FLASHBACK_DATABASE_STAT Name Null? Type  ------------- -------- --------------  BEGIN_TIME DATE END_TIME DATE  FLASHBACK_DATA NUMBER  DB_DATA NUMBER REDO_DATA NUMBER  ESTIMATED_FLASHBACK_SIZE NUMBER  Which two statements regarding the V$FLASHBACK_DATABASE_STAT view are true? ()A、BEGIN_TIME is the time at which Flashback logging is enabled.B、END_TIME is the time at which the query is executed on the view.C、REDO_DATA is the number of bytes of redo data written during the interval.D、This view contains information about flashback data pertaining to the last 24 hours.E、FLASHBACK_DATA is the amount of flashback data generated since the database was opened.

In what view are you likely to see the following output?()   SID SERIAL# EVENT SECONDS_IN_WAIT  121 269 RMAN backup  recovery I/O 2  129 415 SQL*Net message from client 63 130 270 SQL*Net message from client  A、 V$SESSION_EVENTB、 V$SESSIONC、 V$WAITSD、 V$WAITSTATE、 V$SYSSTAT

You design a Business Intelligence (BI) solution by using SQL Server 2008. You create a SQL Server 2008 Reporting Services (SSRS) solution. The solution contains a report named Sales Details that displays sales information of all the employees. You create an SSRS report named Sales Summary that displays the total monthly sales of each employee. Users who view the Sales Summary report occasionally require the monthly sales details for a particular employee. You need to ensure that the users can click a value in the month column of the Sales Summary report to open and render the Sales Details report. What should you do?()A、 Use a subreport.B、 Use a bookmark link.C、 Use the drilldown functionality.D、 Use a drillthrough report link.

You are implementing an ASP.NET MVC 2 Web application. The URL with path /Home/Details/{country} will return a page that provides information about the named country. You need to ensure that requests for this URL that contain an unrecognized country value will not be processed by the Details action of HomeController. What should you do?()A、Add the ValidateAntiForgeryToken attribute to the Details action method.B、Add the Bind attribute to the country parameter of the Details action method. Set the attribute’s Prefix property to Country.C、Create a class that implements the IRouteConstraint interface. Configure the default route to use this class.D、Create a class that implements the IRouteHandler interface. Configure the default route to use this class.

单选题You design a Business Intelligence (BI) solution by using SQL Server 2008. You create a SQL Server 2008 Reporting Services (SSRS) solution. The solution contains a report named Sales Details that displays sales information of all the employees. You create an SSRS report named Sales Summary that displays the total monthly sales of each employee. Users who view the Sales Summary report occasionally require the monthly sales details for a particular employee. You need to ensure that the users can click a value in the month column of the Sales Summary report to open and render the Sales Details report. What should you do?()A Use a subreport.B Use a bookmark link.C Use the drilldown functionality.D Use a drillthrough report link.

单选题P300 is the brainwave _____.Awhich may confirm that the person knows no details about the questionBlack of which may confirm that the person knows details about the questionCwhich may help prove that the suspect hasn’t committed a crimeDlack of which may mean that the suspect hasn’t committed a crime

单选题Which statement is true about "full state backup" in a Cisco Unified Computing System?()A An XML file containing all details of the system, including IP address and cluster details B A binary file containing only service profiles, pools, and other items configured after initial configurationC A binary file containing all details of the system, including IP address and cluster detailsD An XML file containing only service profiles, pools, and other items configured after initial configurationE A text file with the NX-OS running configuration

单选题You received complaints about the degradation of SQL query performance. You identified top SQL queries that consume time. What would be your next step to find out recommendations about statistics collection and restructuring of the SQL statement to improve query performance?()Arun Segment AdvisorBrun SQL Tuning Advisor on top SQL statementsCrun the Automatic Workload Repository (AWR) reportDrun the Automatic Database Diagnostic Monitor (ADDM)on top SQL statements

单选题A new report process containing a complex query is written, with high impact on the database. You wantto collect basic statistics about query, such as the level of parallelism, total database time, and the number of I/O requests. For the database instance STATISTICS_LEVEL, the initialization parameter is set to TYPICAL and theCONTROL_MANAGEMENT_PACK_ACCESS parameter is set to DIAGNOSTIC+TUNING. What should you do to accomplish this task?()AExecute the query and view Active Session History (ASH) for information about the query.BEnable SQL trace for the query.CCreate a database operation, execute the query, and use the DBMS_SQL_MONITOR. REPORT_SQL_MONITOR function to view the report.DUse the DBMS_APPLICATION_INFO.SET_SESSION_LONGOPS procedure to monitor query execution and view the information from the V$SESSION_LONGOPS view.

多选题Which two statements are true about Shared SQL Area and Private SQL Areas()AShared SQL Area will be allocated in the shared pool.BShared SQL Area will be allocated when a session starts.CShared SQL Area will be allocated in the large pool always.DThe whole of Private SQL Area will be allocated in the Program Global Area (PGA) always.EShared SQL Area and Private SQL Area will be allocated in the PGA or large pool.FThe number of Private SQL Area allocations is dependent on the OPEN_CURSORS parameter.

多选题These are the details about V$FLASHBACK_DATABASE_STAT: SQL DESC v$FLASHBACK_DATABASE_STAT  Name                    Null?              Type  ------------- -------- --------------  BEGIN_TIME                               DATE  END_TIME                                 DATE  FLASHBACK_DATA                        NUMBER  DB_DATA                                  NUMBER  REDO_DATA                               NUMBER  ESTIMATED_FLASHBACK_SIZE             NUMBER  Which two statements regarding the V$FLASHBACK_DATABASE_STATview aretrue? ()ABEGIN_TIME is the time at which Flashback logging is enabled.BEND_TIME is the time at which the query is executed on the view.CREDO_DATA is the number of bytes of redo data written during the interval.DThis view contains information about flashback data pertaining to the last 24 hours.EFLASHBACK_DATA is the amount of flashback data generated since the database was opened.

多选题Which two statements are true about Shared SQL Area and Private SQL Area()AShared SQL Area will be allocated in the shared pool.BShared SQL Area will be allocated when a session starts.CShared SQL Area will be allocated in the large pool always.DPrivate SQL Area will be allocated in the Program Global Area (PGA) always.EShared SQL Area and Private SQL Area will be allocated in the PGA or large pool.FThe number of Private SQL Area allocations is dependent on the OPEN_CURSORS parameter.

多选题Which three statements about performance analysis by SQL Performance Analyzer are true? ()AIt detects changes in SQL execution plans.BIt produces results that can be used to create the SQL plan baseline.CThe importance of SQL statements is based on the size of the objects accessed.DIt generates recommendations to run SQL Tuning Advisor to tune regressed SQLs.EIt shows only the overall impact on workload and not the net SQL impact on workload.

单选题On Friday at 11:30 am you decided to flash back the database because of a user error that occurred at 8:30am. Which option must you use to check whether a flashback operation can recover the database to the specified time?()ACheck the alert log fileBQuery the V$FLASHBACK_DATABASE_LOG viewCQuery the V$RECOVERY_FILE_DEST_SIZE viewDQuery the V$FLASHBACK_DATABASE_STAT viewECheck the value assigned for the UNDO_RETENTION parameter

单选题In what view are you likely to see the following output?()   SID SERIAL# EVENT SECONDS_IN_WAIT  121 269 RMAN backup  recovery I/O 2  129 415 SQL*Net message from client 63 130 270 SQL*Net message from clientA V$SESSION_EVENTB V$SESSIONC V$WAITSD V$WAITSTATE V$SYSSTAT

单选题TestKing.com has two SQL Server 2005 computers named SQL1 and SQL2. Both servers take part in replication. SQL1 is both the Publisher and its own Distributor of a publication named Pub1. Pub1 is the only publication on SQL1, and SQL2 is the only Subscriber. Your supervisor requests a status report about the replication latencies. Using Replication Monitor on SQL1, you need to find out the current latencies between the Publisher and Distributor as well as between the Distributor and Subscriber. What should you do?()ASelect the Subscription Watch List tab for SQL1. View the Latency column for the SQL2 subscription.BSelect the All Subscriptions tab for the Pub1 publication. View the Latency column for the SQL2 subscription.CSelect the Tracer Tokens tab for the Pub1 publication. Select the Insert Tracer Option and wait for the requested latency values for the SQL2 subscription to appear.DSelect the Subscription Watch List tab for SQL1. Double-click the SQL2 subscription.View the duration details on the Publisher to Distributor History tab as well as on the Distributor to Subscriber History tab.

单选题Details about the packing,marking and stowing of()are given in the International Maritime Dangerous Goods(IMDG)Code.Ageneral cargoesBdry bulk cargoesChazadous cargoesDmanufactured goods of large size