Rem drv: Rem Rem $Header: sdk_data_upgrade.sql 06-aug-2007.22:58:27 aloganda Exp $ Rem Rem sdk_data_upgrade.sql Rem Rem Copyright (c) 2007, Oracle. All rights reserved. Rem Rem NAME Rem sdk_data_upgrade.sql - Rem Rem DESCRIPTION Rem Rem Rem NOTES Rem Rem Rem MODIFIED (MM/DD/YY) Rem aloganda 08/06/07 - bug-6271281, ULN project Rem rattipal 07/26/07 - Adding PrereqCommands Rem jinslee 07/18/07 - register stage agent patch script command Rem vsriram 06/04/07 - Added SleepWait job. Rem kmanicka 05/24/07 - Created Rem BEGIN mgmt_jobs.register_command('remoteOp', 'oracle.sysman.emdrep.jobs.commands.RemoteOp', MGMT_JOBS.SHORT_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('execAndSuspend', 'oracle.sysman.emdrep.jobs.commands.ExecAndSuspend', MGMT_JOBS.SHORT_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('getFile', 'oracle.sysman.emdrep.jobs.commands.GetFile', MGMT_JOBS.LONG_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('putFile', 'oracle.sysman.emdrep.jobs.commands.PutFile', MGMT_JOBS.LONG_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('fileTransfer', 'oracle.sysman.emdrep.jobs.commands.FileTransfer', MGMT_JOBS.SHORT_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('echoParams', 'oracle.sysman.emdrep.jobs.commands.examples.EchoParams', MGMT_JOBS.SHORT_RUNNING_COMMAND, MGMT_JOBS.NON_TRUSTABLE_COMMAND); mgmt_jobs.register_command('sleepWait', 'oracle.sysman.emdrep.jobs.commands.SleepWait', MGMT_JOBS.LONG_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('stageAgentPatchScript', 'oracle.sysman.emdrep.jobs.commands.StageAgentPatchScript'); mgmt_jobs.register_command('provUp2date', 'oracle.sysman.emdrep.jobs.commands.ProvisionUp2date', MGMT_JOBS.SHORT_RUNNING_COMMAND, MGMT_JOBS.TRUSTABLE_COMMAND); mgmt_jobs.register_command('TargetPrereqCommand', 'oracle.sysman.emgc.provision.jobs.commands.TargetPrereqCommand'); mgmt_jobs.register_command('StagePrereqCommand', 'oracle.sysman.emgc.provision.jobs.commands.StagePrereqCommand'); mgmt_jobs.register_command('RefPrereqCommand', 'oracle.sysman.emgc.provision.jobs.commands.RefPrereqCommand'); mgmt_jobs.register_command('SetSudoPathCommand', 'oracle.sysman.emgc.provision.jobs.commands.SetSudoPathCommand'); END; / COMMIT;