Search found 32 matches

by philhaut
07 Oct 2011 3:42
Forum: Exploitation / Operation
Topic: Adding conditions by script or command line
Replies: 5
Views: 4731

Indicates whether to ignore prerequisite conditions normally set by predecessor jobs if the relevant predecessor jobs are not scheduled. This parameter is relevant only for SMART Tables (7.0). or Tables (6.3..) ex job D wait condition for job A B C and B is not scheduled ==> the condition between B ...
by philhaut
07 Oct 2011 9:49
Forum: Exploitation / Operation
Topic: Adding conditions by script or command line
Replies: 5
Views: 4731

hi 2 solutions 1) by script you must check if the job A B C ... are in the AJF ex on unix PREJO=`ctmpsm -LISTGROUP "*" group name |grep CMD` #test if PREJ0 has no result if [ -z ${PREJO} ] ctmcontb -ADD condition-name ODAT; else echo "no conditions to add" fi 2) all jobs are in the same table and us...
by philhaut
22 Sep 2011 1:43
Forum: Job Definition
Topic: File Watcher in Control-M V7.0
Replies: 2
Views: 4200

hello
if any file is in the directory /tmp in the step 1 the job continues executing
because the relation between the step is and
or try WAIT_TIME 0
by philhaut
07 Sep 2011 12:00
Forum: Job Definition
Topic: SHout script in the post proc panel
Replies: 1
Views: 2439

SHout script in the post proc panel

Is it possible to shout a script in post proc panel into the agent where the job is running
EX exectime >2 ==> lauch a script
IN control-M 7.0 i see only the messages type S and not A
by philhaut
30 May 2011 2:01
Forum: Control-M Enterprise Manager
Topic: Not possible to kill task - still yellow and lock resources
Replies: 5
Views: 7941

yellow job

by sql
update CMR_AJF set STATE = '5', OSCOMPSTAT=1, STATUS='N' where orderno = 'Order ID';
commit;
hold and free the job
by philhaut
23 Sep 2010 9:32
Forum: Exploitation / Operation
Topic: Control-M CM/SAP Installation
Replies: 3
Views: 3865

hello

you must intall CONTROL-M CM/SAP on any Control-M Agent and create account via CCM or ctmr3acc
You must install Transport on SAP/R3 (R900024.WP1 K900024.WP1) and (R900296.BW7 K900296.BW7) for BW
by philhaut
25 Feb 2010 4:33
Forum: Job Definition
Topic: Mass Deleting Out-Conditions
Replies: 2
Views: 1835

use
operation remove for removing out condition with the pannel find and update (out condition)
by philhaut
28 Jan 2010 9:22
Forum: Job Definition
Topic: How to create job with NOT OK out condition
Replies: 8
Views: 4730

Hi,

in the step panel
on Statement Stmt= * Code= NOTOK
Do Condition Name= JOB-OK Date= ODAT Sign= +
by philhaut
14 Apr 2008 2:51
Forum: Job Definition
Topic: on statement
Replies: 3
Views: 2670

on statement

hello

Is it possible to check if the sysout not contains a string in the StepS Tab

example
on statement stmt=* Code=(not contains "TRAITOK")
do NOTOK
by philhaut
12 Mar 2008 9:29
Forum: Exploitation / Operation
Topic: au plan-comment vérifier que ttes les tables sont présentes?
Replies: 4
Views: 4555

bonjour

la solution est de verifier la sysout du userdaily et de verifier les tables not ordered

you can see the sysout of the userdaily job and check the tables not ordering
by philhaut
11 Jan 2008 2:08
Forum: Exploitation / Operation
Topic: Create a chaine which must remain 2 - 3 days
Replies: 4
Views: 1929

maxwait

You can use maxwait parameter to the both sheduling group and job execution

****************************************************************

il faut utiliser le maxwait pour le scheduling group et egalement dans les parametres du job (onglet Executuion)
by philhaut
07 Nov 2007 3:54
Forum: Monitoring
Topic: job too long
Replies: 4
Views: 3096

job too long

Is it possible to have an alert if a job is last two times longer than usually (exectime X 2) but this job is not finished
I can't use Postproc because the job is allredy running
by philhaut
26 Oct 2007 2:44
Forum: Job Definition
Topic: confirm and Force OK
Replies: 7
Views: 3257

voici les autres commandes pour liberer ou mettre en ok


ctmpsm -UPDATEAJF <orderid> <HOLD|FREE|DELETE|UNDELETE|RERUN|CONFIRM|FORCEOK|STATISTICS|CONDADDIN <cond> <date> <AND>|CONDADDOUT <cond> <date> <+|
->|CONDDELIN <cond>|CONDDELOUT <cond>
by philhaut
26 Oct 2007 2:40
Forum: Job Definition
Topic: confirm and Force OK
Replies: 7
Views: 3257

voici un exemple de script qui fait un confirm sur un job ou group #!/bin/ksh # Script Name : avant-fact.ksh ctmpsm -LISTALL|grep NOM_DU_JOB > /tmp/postfac-eur.txt while read ligne do echo $ligne ord=`echo $ligne|awk '{print $1}'` ctmpsm -UPDATEAJF $ord CONFIRM sleep 3 done < /tmp/postfac-eur.txt exit
by philhaut
04 Oct 2007 2:58
Forum: Control-M Enterprise Manager
Topic: DST (summer time)
Replies: 11
Views: 5024

oracle créer des archives log pendant les mises à jour de la base Sous unix l'heure est reculée automatiquement vers 02H00 du matin je pense, le 28102007 d'où peut être une désynchronisation des archives log Ex job démarre à 01H50 --> changement d'heure à 02H00 ==> on reveient à 01H00 **************...