Programme units.
PL/SQL libraries.
Database object.
Built in packages.
第1题:
The system analysts have requested heavy use of object features. The database design makes use of PL/SQL8 object types, methods, and LOB types. How do you work with these features on the client?()
第2题:
There was media failure and you need to check the data files for any block corruption. Which option would you use to create a report on any corruptions found within the database?()
第3题:
You observe that in your PROD database, customer information is being modified by some unauthorized users. You want to keep track of all of the transactions happening on the table using PL/SQL. Which type of PL/SQL subprogram or construct would you use to accomplish this task?()
第4题:
You work with a SQL Server 2005 database that provides banking information for customers. You want customers to see banking reports that combine data that is retrieved from the database with real-time investment information that comes from a Web service provided by a third party. The investment information must be current when the reports are executed. You need to create the appropriate objects that support the reports. What should you do?()
第5题:
TestKing.com uses SQL Server 2005. You are implementing a series of views that are used in ad hoc queries. The views are used to enforce TestKing.coms security policy of abstracting data. Some of these views perform slowly. You create indexes on those views to increase performance, while still maintaining the company’s security policy. One of the views returns the current date as one of the columns. The view returns the current date by using the GETDATE() function. This view does not allow you to create an index. You need to create an index on the view. Which two actions should you perform?()
第6题:
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?()
第7题:
Remove all deterministic function calls from within the view.
Remove all nondeterministic function calls from within the view.
Schema-bind all functions that are called from within the view.
Create the view and specify the WITH CHECK OPTION clause.
第8题:
the DBNEWID utility
the DBVERIFY utility
the ANALYZE command
the RMAN REPORT command
the RMAN CROSSCHECK command
the CHECK_OBJECT procedure of the DBMS_REPAIR package
第9题:
Before parameter form.
After parameter form.
Before report.
After report.
第10题:
SRW.BREAK
SRW.SET_ALTER
SRW.REFERENCE
SRW.DO_SQL
SRW.RUN_REPORT
SRW.SET_FIELD
第11题:
Remove all deterministic function calls from within the view.
Remove all nondeterministic function calls from within the view.
Schema-bind all functions that are called from within the view.
Create the view and specify the WITH CHECK OPTION clause.
第12题:
FIND_REPORT_OBJECT
CANCEL_REPORT_OBJECT
REPORT_OBJECT_STATUS
SET_PROPERTY OBJECT_PROPERTY
第13题:
You write a procedure that will be called from two level triggers and a database trigger. Where should you store this code? ()
第14题:
You are developing a tax report for the payroll application. You created a before parameter form report trigger to create three temporary tables to store text that are need while the report is executed. Which report trigger would you use to delete these temporary tables?()
第15题:
Which built-in would you reference in your trigger code to remove a report from the Reports Server queue dynamically?()
第16题:
Your company uses SQL Server 2005. You are implementing a series of views that are used in ad hoc queries. The views are used to enforce your companys security policy of abstracting data. Some of these views perform slowly. You create indexes on those views to increase performance, while still maintaining the companys security policy. One of the views returns the current date as one of the columns. The view returns the current date by using the GETDATE( ) function. This view does not allow you to create an index. You need to create an index on the view. Which two actions should you perform?()
第17题:
Application developers in your company create an assembly that contains a CLR function. This CLR function reads data from a spreadsheet, performs some calculations, and returns the data to a SQL Server 2005 computer. You need to register the assembly with SQL Server 2005 by using the CREATE ASSEMBLY statement and the least privileged security permission set. Which permission set should you use? ()
第18题:
functions
packages
procedures
database triggers
anonymous PL/SQL block
第19题:
when you want to restore an important table that is dropped from the Recycle Bin
when you want to obtain the SQL statements to undo the deletion of some important records from a table by a transaction
when you want to restore a dropped user’s schema
when a row of a table is updated many times within a specific time period and you want all the versions of the row in the specified time period
第20题:
RUN_PRODUCT
SET_REPORT_OBJECT_PROPERTY
RUN_REPORT_OBJECT
FIND_REPORT_OBJECT
REPORT_OBJECT_STATUS
COPY_REPORT_OBJECT_OUTPUT
第21题:
Default
SAFE
EXTERNAL_ACCESS
UNSAFE
第22题:
Data Table Control
View Control
Repeat Control
Filter by category View Control
第23题:
Publish the data in the database as an XML Web service by using the FOR XML AUTO clause.
Create a table to store the banking information for each customer. Create a trigger that fires when data is inserted into the table that joins with the data coming from the Web service.
Create a Transact-SQL stored procedure that uses a temporary table to store the banking information for each customer. Update the table with the values from the Web service.
Have a developer in your company create an assembly that calls the remote Web service. Create aCLR function by using the assembly. Call the CLR function and combine the results with banking information in the database.