A stored procedure object is created into which DB2 object?()A、AliasB、SchemaC、PackageD、Routine Space

题目

A stored procedure object is created into which DB2 object?()

  • A、Alias
  • B、Schema
  • C、Package
  • D、Routine Space

相似考题
参考答案和解析
正确答案:B
更多“A stored procedure object is cre”相关问题
  • 第1题:

    Which object may be used during query optimization to improve the performance for a subset of SELECT queries?()

    • A、MQT
    • B、Trigger
    • C、Read Only Cursor
    • D、Stored Procedure

    正确答案:A

  • 第2题:

    Which of the following tools for DB2 V9 allows a user to create and debug a SQL stored procedure?()

    • A、Control Center
    • B、Development Center
    • C、Developer Workbench
    • D、Stored Procedure Builder

    正确答案:C

  • 第3题:

    The EMP_DEPT block in your EMPLOYEE form is based on a view in an Oracle8 database. The items in this block have the Update Allowed property set to Yes. Which database feature makes it possible to permanently modify the underlying view?()

    • A、REF cursor. 
    • B、Instead Of trigger. 
    • C、Stored procedure that returns object values. 
    • D、The underlying view cannot be modified because DML on a view is not supported.

    正确答案:B

  • 第4题:

    Which two PL/SQL8 features are supported in Oracle Forms?()

    • A、methods 
    • B、object tables 
    • C、object columns 
    • D、collection types 
    • E、object as stored procedure parameters

    正确答案:B,C

  • 第5题:

    You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a stored procedure. The stored procedure implements a database maintenance process. A SQL Server Agent job should be created to that runs the stored procedure. Besides this, you must make sure that after it is completed successfully, the job is removed.  What should you do? ()

    • A、You should create a job which is assigned to the Database Maintenance category
    • B、You should create an Alert which will run another to delete the maintenance job.
    • C、You should create a job. You schedule the job to run only once.
    • D、You should create a job. The job uses the Automatically delete job option

    正确答案:D

  • 第6题:

    多选题
    Which two PL/SQL8 features are supported in Oracle Forms?()
    A

    methods

    B

    object tables

    C

    object columns

    D

    collection types

    E

    object as stored procedure parameters


    正确答案: B,A
    解析: 暂无解析

  • 第7题:

    单选题
    You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. DB1 has a table which is named Table01 and a stored procedure named Procedure01. Procedure01 choose data from Table01 by using a sp_executesql Transact-SQL statement. You company security rules forbid users to access tables directly in any database. Look at the exception below: "Msg 229, Level 14, State 5, Line 1 The SELECT permission was denied on the object 'Table01', database 'DB1', schema 'dbo'." The exception is raised when Procedure01 is executed by users. You must make sure that e user can successfully execute Procedure1 complying with the company rules. So what action should you perform to achieve this goal?()
    A

    You should execute the GRANT SELECT ON dbo.Table01 TO User1 Transact-SQL statement. 

    B

    You should execute the GRANT EXECUTE ON dbo.Procedure1 TO User1 Transact-SQL statement. 

    C

    You should alter Procedure01 and add the WITH EXECUTE AS OWNER option to its header 

    D

    You should alter Procedure01 and add the EXECUTE AS USER = 'dbo' option immediately before the call to the sp_executesql stored procedure.


    正确答案: C
    解析: 暂无解析

  • 第8题:

    填空题
    PB中有五种数据源:()、()、()、External和Stored Procedure。

    正确答案: Quick Select,SQL Select,Query
    解析: 暂无解析

  • 第9题:

    单选题
    You are creating the SAL_INFO data block on the EMP_QUERY form. The SALARY field should only be populated if the logged-on user is a manager. Since this query could potentially return a large amount of records, you have created a stored procedure which uses a ref cursor on which to base the data block. How would you create the data block?()
    A

    Click the Data Blocks node in the Object Navigator and click the create button. Choose to build the data block manually. Enter the procedure name in the Query Data Source Columns property and the procedure code in the Query Data Source Arguments property. 

    B

    Choose Tools -> Data Block Wizard, select Table as the data source type, and base the data block on the columns included in the procedure. 

    C

    Select the Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, alter the Query Data Source Type property to 'Ref cursor', and enter the name of the procedure in the Query Data Source Name property. 

    D

    Select the Data Blocks node in the Object Navigator and click the Create button. Alter the Query Data Source Name, Query Data Source Columns, and Query Data Source Arguments properties to create a stored procedure that uses a ref cursor. 

    E

    Launch the Data Block Wizard, select Stored Procedures as the data source type, and base the block on the procedure.


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    Which of the following tools for DB2 V9 allows a user to create and debug a SQL stored procedure?()
    A

    Control Center

    B

    Development Center

    C

    Developer Workbench

    D

    Stored Procedure Builder


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. According to the company requirement, the names of all user-defined stored procedures must contain the prefix usp_ on all instances. Besides this, you must make sure that stored procedures that do not contain this prefix cannot be created by you. What should you do?()
    A

    A policy should be created. The policy targets the name of the stored procedure that is evaluated on demand. 

    B

    A policy should be created. The policy targets the name of the stored procedure that is evaluated on change. 

    C

    A condition should be created. The condition targets the name of the stored procedure that is evaluated on change 

    D

    A condition should be created. The condition targets the name of stored procedure that is evaluated on demand.


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There are user-defined stored procedures. Now you have to make sure two things, first, the names of all user-defined stored procedures must contain the prefix usp_ on all instances; second, stored procedures that do not contain this prefix cannot be created by you.  So what should you do to ensure this two?()
    A

    You should create a policy that targets the name of the stored procedure that is evaluated on change. 

    B

    You should create a policy that targets the name of the stored procedure that is evaluated on demand.

    C

    You should create a condition that targets the name of stored procedure that is evaluated on demand. 

    D

    You should create a condition that targets the name of the stored procedure that isevaluated on change. 


    正确答案: C
    解析: 暂无解析

  • 第13题:

    The accounting manager wants you to create a form that when queried will display a calculated total of year-to-date actual expenditures for the found code entered. The values needed to generate this summary data are stored in multiple tables. Which data source type can you assign to the data block for this form without having the DBA create a database object?()

    • A、database table 
    • B、transactional trigger 
    • C、stored procedure 
    • D、FROM clause query 
    • E、client-side procedure

    正确答案:D

  • 第14题:

    Given the following stored procedure:CREATE PROCEDURE increase_salary ( IN p_workdept CHAR(6), OUT p_sum DECIMAL(9,2) ) SET p_sum = (SELECT SUM(salary) FROM employee WHERE workdept=p_workdept);How can this stored procedure be called from the Command Line Processor?()

    • A、CALL increase_salary('A00')
    • B、VALUES increase_salary('A00')
    • C、CALL increase_salary('A00', ?)
    • D、VALUES increase_salary('A00', ?)

    正确答案:C

  • 第15题:

    Which of the following is not a valid setting for the PROGRAM_TYPE parameter in a program object or the JOB_TYPE parameter in a job object?()

    • A、PLSQL_BLOCK
    • B、JAVA_STORED_PROCEDURE
    • C、STORED_PROCEDURE
    • D、EXECUTABLE
    • E、None of the above are invalid settings.

    正确答案:B

  • 第16题:

    You need to cleanse and standardize the data on potential survey participants prior to inserting it into the staging database. What should you do?()

    • A、Import the data into a staging table by using the OPENROWSET BULK statement. Execute a Transact-SQL stored procedure to cleanse the data and to insert the data into the database.
    • B、Import the data into a staging table by using the BULK INSERT statement. Execute a Transact-SQL stored procedure to cleanse the data and to insert the data into the database.
    • C、Create a SQL Server Integration Services (SSIS) package to import, standardize, and cleanse the data.
    • D、Create a CLR stored procedure to import the data into a staging table, to cleanse and standardize the data, and to insert the data into the database.

    正确答案:C

  • 第17题:

    You are designing the loan application process for the customer terminals. You need to design a Transact-SQL stored procedure that fulfills the business and technical requirements. Which type of Transact-SQL stored procedure should you use?()

    • A、one that uses an internal SQL Server Web service endpoint
    • B、one that runs a SQL Server Integration Services (SSIS) package
    • C、one that uses Service Broker
    • D、one that runs a user-defined function

    正确答案:C

  • 第18题:

    多选题
    You need to ensure that the stored procedure that inserts new loan requests can access data in tables that are stored in another database on the same SQL Server instance. Which two actions should you perform?()
    A

    Ensure that the stored procedure and the tables are owned by users that are associated with the same SQL Server login.

    B

    Ensure that the stored procedure and the tables are owned by the same database user.

    C

    Ensure that the stored procedure and the tables use the same database schema.

    D

    Configure the multiuser database option on both databases.

    E

    Configure the cross-database ownership chaining option on both databases.


    正确答案: C,B
    解析: 暂无解析

  • 第19题:

    单选题
    Which of the following is not a valid setting for the PROGRAM_TYPE parameter in a program object or the JOB_TYPE parameter in a job object?()
    A

     PLSQL_BLOCK

    B

     JAVA_STORED_PROCEDURE

    C

     STORED_PROCEDURE

    D

     EXECUTABLE

    E

     None of the above are invalid settings.


    正确答案: B
    解析: 暂无解析

  • 第20题:

    单选题
    You are creating a stored procedure that will delete data from the Contact table in a SQL Server 2005 database. The stored procedure includes the following Transact-SQL statement to handle any errors that occur. BEGIN TRY   BEGIN TRANSACTION   DELETE FROM Person.Contact WHERE ContactID = @ContactID COMMIT TRANSACTION END TRY   BEGIN CATCH   DECLARE @ErrorMessage nvarchar(2000) DECLARE @ErrorSeverity int DECLARE @ErrorState int SELECT @ErrorMessage = ERROR MESSAGE(),@ErrorSeverity=ERROR SEVERITY(),@ErrorState = ERROR STATE() RAISERROR (@ErrorMessage, @ErrorSeverity, @ErrorState) END CATCH;      You test the stored procedure and discover that it leaves open transactions. You need to modify the stored procedure so that it properly handles the open transactions. What should you do?()
    A

    Add a COMMIT TRANSACTION command to the CATCH block.

    B

    Remove the COMMIT TRANSACTION command from the TRY block.

    C

    Add a ROLLBACK TRANSACTION command to the CATCH block.

    D

    Add a ROLLBACK TRANSACTION command to the TRY block.


    正确答案: D
    解析: 暂无解析

  • 第21题:

    单选题
    The accounting manager wants you to create a form that when queried will display a calculated total of year-to-date actual expenditures for the found code entered. The values needed to generate this summary data are stored in multiple tables. Which data source type can you assign to the data block for this form without having the DBA create a database object?()
    A

    database table 

    B

    transactional trigger 

    C

    stored procedure 

    D

    FROM clause query 

    E

    client-side procedure


    正确答案: D
    解析: 暂无解析

  • 第22题:

    单选题
    Which object may be used during query optimization to improve the performance for a subset of SELECT queries?()
    A

    MQT

    B

    Trigger

    C

    Read Only Cursor

    D

    Stored Procedure


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    Which of the following is not a valid setting for the PROGRAM_TYPE parameter in a program object or the JOB_TYPE parameter in a job object?()
    A

    PLSQL_BLOCK

    B

    JAVA_STORED_PROCEDURE

    C

    STORED_PROCEDURE

    D

    EXECUTABLE

    E

    None of the above are invalid settings.


    正确答案: B
    解析: 暂无解析