What is the procedure for announcing routes leared from RIP to ISIS neighbors?()A、Apply an import policy to RIP which announces the routes to ISIS.B、Apply an export policy to ISIS which announces the routes to ISIS.C、Apply an export policy to RIP which announces the routes to ISIS.D、Apply an import policy to ISIS which imports the routes into ISIS.

What is the procedure for announcing routes leared from RIP to ISIS neighbors?()

  • A、Apply an import policy to RIP which announces the routes to ISIS.
  • B、Apply an export policy to ISIS which announces the routes to ISIS.
  • C、Apply an export policy to RIP which announces the routes to ISIS.
  • D、Apply an import policy to ISIS which imports the routes into ISIS.

相关考题:

View the Exhibit and examine the steps that you executed to create a database resource plan. Subsequently, you execute the following procedure which results in an error:SQL EXECUTE dbms_resources_manager.validate_pending_area ( );What could be the reason?()A. The pending area is automatically submitted after the plan creationB. The procedure must be executed before creating the resources plan directiveC. The SYS_GROUP resource consumer group is not included in the resource plan directiveD. The OTHER_GROUPS resources consumer group is not included in the resource plan directive

What is the danger associated with stopping a running job by using the STOP_JOB procedure?() A. The job will need to be reenabled before it will execute again.B. The job may hold locks on objects referenced within it.C.All jobs within the job group will also be stopped.D. The job may leave data in an inconsistent state.E. There is no danger in using the STOP_JOB procedure.

打开过程文件BAG.prg的命令是______。A.OPEN PROCED URE BAG .prgB. SET PROCEDURE TOC.SET PROCEDURE BAG .prgD.SET PROCEDURE TO BAG .prg

You are the administrator of a SQL Server 2000 database. Using the default options configures the database. You drop indexes to facilitate a large import of data, and rebuild them after the import is complete.Users report that response times from a stored procedure have become slower. In the stored procedure, you examine the following code.CREATE PROCEDURE GetCustomer( @CustomerID Int )ASSELECT FirstName, LastName, Address1, Address2, City,State, Zip, MAX(PurchaseDate) AS LastPurchaseFROM Customers CJOIN Addresses A ON A.AddressID = C.AddressIDJOIN Purchases P ON P.CustomerID = C.CustomerIDWHERE C.CustomerID = @CustomerIDGROUP BY FirstName, LastName, Address1, Address2, City, State, ZipYou want to improve the performance of the procedure by using the least amount of administrative effort. What should you do?A.Recompile the stored procedure.B.Update the database statistics.C.Check the consistency of the database and repair errors.D.Create a view and modify the stored procedure to use the view.

Which of the following are types of routine objects?() A.Package and functionB.Function and userexitC.Procedure and packageD.Function and procedure

What should the configuration register value be after successfully completing the password recover procedure and returning the router to normal operation? () A.0x2100B.0x2101C.0x2102D.0x2124E.0x2142

在不能继续进近时,应执行的程序。()A、The procedure to followed if the approach cannot be continued.B、The procedure to followed even if the approach cannot be continued.C、The procedure to be followed if the approach cannot be continued.D、The procedure to be followed even if the approach cannot be continued.

A PL/SQL procedure queries only those columns of a redefined table that were unchanged by the online table redefinition. What happens to the PL/SQL procedure after the online table redefinition?()A、It remains valid.B、It becomes invalid for all options of online table redefinition but automatically gets revalidated the next time it is used.C、It becomes invalid for all options of online table redefinition and is automatically recompiled during online redefinition of the table.D、It becomes invalid only if the storage parameters have been modified and it automatically gets revalidated the next time it is used.

准则(guideline)和规程(procedure)的特点是:()。A、准则(guideline)是灵活的,规程(procedure)是特定的,具体的B、准则(guideline)是强制的,规程(procedure)是灵活的C、准则(guideline)特定的,具体的,规程(procedure)是灵活的D、准则(guideline)是一致的,规程(procedure)是不一致的

What should the configuration register value be after successfully completing the password recover procedure and returning the router to normal operation? ()A、0x2100B、0x2101C、0x2102D、0x2124E、0x2142

What is the purpose of typing o/r 0x2142 during a password recover procedure on a 2500 series router?()A、To restart the router.B、To bypass the configuration in NVRAM.C、To view the lost password.D、To save the changes to the configuration.E、To enter ROM Monitor mode.

After crating a mksysb, what is the most important procedure that should be followed?()A、List the files and verify it is bootableB、Make sure it is labeled and store it in a safe place.C、Make sure it is write-protected and labeled.D、Look at the output of the mksysb command to verify it completed successfully.

Which of the following are types of routine objects?()A、Package and functionB、Function and userexitC、Procedure and packageD、Function and procedure

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.

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 categoryB、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

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 database named DB1 in the instance. The DB1 database contains the following stored procedure. (Line numbers are useded for reference only.)  01 CREATE PROCEDURE Sales.Procedure1  02 AS  03 IF OBJECT_ID('Service.Table') IS NOT NULL  04 DROP TABLE Service.Table;  06 CREATE TABLE Service.Table (  07 Id int PRIMARY KEY CLUSTERED,  08 Name varchar(100);  09 );  11 ...  12  GOThe following exception is raised when a user tries to invoke Procedure1, "Msg 262, Level 14, State 1, Procedure Procedure1, Line 5 CREATE TABLE permission denied in database 'DB1'." You should grant the user access to execute Procedure1, you must assign only the required permissions.  What action should you do perform?()  A、Between lines 01 and 02, you should insert the WITH EXECUTE AS apos;dboapos; clause. B、Between lines 01 and 02, you should insert the EXECUTE AS USER = apos;dboapos; statement. C、You should give the user the ALTER permission on the Service schema D、You should give the CREATE TABLE permission and permit the user to drop the Service.Table table.

它标绘在仪表进近程序图上。()A、It is depicted on instrument arrival procedure charts.B、It is depicted on instrument arrival procedure picture.C、It is depicted on instrument approach procedure picture.D、It is depicted on instrument approach procedure charts.

单选题You completed your Java procedure for your external Java function activity, and you now want todeploy this to your server. What would you do to deploy the Java procedure?()Atake the Java sources (.java) files and include them in your $APPL_TOPBtake the Java sources (.java) files and include them in your CLASSPATHCtake the Java classes (.class) files and include them in your $APPL_TOPDtake the Java classes (.class) files and include them in your CLASSPATH

单选题准则(guideline)和规程(procedure)的特点是:()。A准则(guideline)是灵活的,规程(procedure)是特定的,具体的B准则(guideline)是强制的,规程(procedure)是灵活的C准则(guideline)特定的,具体的,规程(procedure)是灵活的D准则(guideline)是一致的,规程(procedure)是不一致的

单选题The HR user creates a stand-alone procedure as follows and grants the EXECUTE privilege on theprocedure to many database users:  CREATE OR REPLACE PROCEDURE create_dept ( v_deptno NUMBER, v_dname VARCHAR2, v_mgr NUMBER, v_loc NUMBER) BEGIN  INSERT INTO hr.departments VALUES (v_deptno, v_dname, v_mgr, v_loc); END;  The users having permission to execute the procedure are able to insert records into the  DEPARTMENTStable even though they do not have the INSERT privilege on the table. You want only those users whohave privileges on the DEPARTMENTS table to be able to execute the procedure successfully.  What would you suggest to the PL/SQL developers to achieve this()ACreate the procedure with definer’s right.BCreate the procedure with invoker’s right.CGrant the EXECUTE privilege with GRANT OPTION on the procedure to selected users.DCreate the procedure as part of a PL/SQL package and grant the EXECUTE privilege on the package to selected users

单选题What is the purpose of pressing the Ctrl+Break keys during the router password recover procedure?()ATo restart the router.BTo bypass the configuration in Flash.CTo view the password before changes are made.DTo bypass setup configuration mode.ETo access ROM Monitor mode.

单选题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?()AYou should execute the GRANT SELECT ON dbo.Table01 TO User1 Transact-SQL statement. BYou should execute the GRANT EXECUTE ON dbo.Procedure1 TO User1 Transact-SQL statement. CYou should alter Procedure01 and add the WITH EXECUTE AS OWNER option to its header DYou should alter Procedure01 and add the EXECUTE AS USER = apos;dboapos; option immediately before the call to the sp_executesql stored procedure.

单选题For better classrooru management, what should the teacher do while the students are doing activities?AParticipating in a group.BPreparing for the next procedure.CMoving around to monitor, prompt students and provide help.DStanding in front of the class.

单选题What should the configuration register value be after successfully completing the password recover procedure and returning the router to normal operation? ()A0x2100B0x2101C0x2102D0x2124E0x2142

单选题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?()AAdd a COMMIT TRANSACTION command to the CATCH block.BRemove the COMMIT TRANSACTION command from the TRY block.CAdd a ROLLBACK TRANSACTION command to the CATCH block.DAdd a ROLLBACK TRANSACTION command to the TRY block.

单选题What is the danger associated with stopping a running job by using the STOP_JOB procedure?()A The job will need to be reenabled before it will execute again.B The job may hold locks on objects referenced within it.C All jobs within the job group will also be stopped.D The job may leave data in an inconsistent state.E There is no danger in using the STOP_JOB procedure.

单选题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?()AA policy should be created. The policy targets the name of the stored procedure that is evaluated on demand. BA policy should be created. The policy targets the name of the stored procedure that is evaluated on change. CA condition should be created. The condition targets the name of the stored procedure that is evaluated on change DA condition should be created. The condition targets the name of stored procedure that is evaluated on demand.

单选题When communicating on the radiotelephone using plain English,what procedure word indicates the end of my transmission and that a response is necessary? ()AOutBOverCRogerDWilco