Posts

Showing posts from June, 2025

Basic Siebel Admin Commands

 Start/Stop Server Components start comp <component_name> shutdown comp <component_name>  Restart a Component shutdown comp <component_name> start comp <component_name>  List Components list comp list comp show CC_ALIAS, CC_NAME, CC_RUNMODE  List Servers list server TASK MONITORING & CONTROL  List Running Tasks for a Component list tasks for comp <component_name> show TS_TASKID, TS_STATUS, TS_START_DT  Cancel a Specific Task cancel task <task_id> for comp <component_name> Kill All Tasks for a Component (manually loop) list tasks for comp <component_name> where status = 'Running' cancel task <task_id> for comp <component_name>  COMPONENT PARAMETER CHECKING & EDITING 📃 List Component Parameters list param for comp <component_name> Change a Parameter change param <param_name> = <new_value> for comp <component_name>  Change Enterprise-Wide Parameter change par...