Search found 27 matches

by Hagar
25 Aug 2011 9:17
Forum: Control-M Server
Topic: Not able to pass the PASS PARAMETER to the script
Replies: 2
Views: 3170

I would guess it has something to do with / in unix is a function, not a "letter" try to use // instead
by Hagar
25 Aug 2011 9:10
Forum: Control-M Enterprise Manager
Topic: PRECMD under Auto-Edit Varables.
Replies: 3
Views: 4436

You can create a condition via PRECMD by

%%PRECMD ctmcontb -ADD condition-ok ODAT

ofc you need an agent on the target system

/Hagar
by Hagar
25 Aug 2011 9:05
Forum: Exploitation / Operation
Topic: Ctm 6.3.01 aft account creation via script
Replies: 2
Views: 3844

You can use ctmaftacc (or ctmaftacc.bat) to manage accounts
by Hagar
25 Aug 2011 8:55
Forum: Control-M Enterprise Manager
Topic: to count number of failures and successful jobs - monthly
Replies: 3
Views: 3298

You should be able to do that in the report facility under Active jobs.
make one report for ended OK and one for ended notok

/Hagar
by Hagar
18 Aug 2011 12:09
Forum: Control-M Server
Topic: Control-M setup : Error 1722
Replies: 2
Views: 6501

I suppose you are trying to install it on a 64-bit platform.
6.4 is not supported for that.
by Hagar
08 Jul 2011 10:04
Forum: Control-M Server
Topic: Problem for make backups
Replies: 1
Views: 2263

Confuig agent

Hi!

you need to stop the config agent else it will restart ctm for you.

shut_ca is the command for you
by Hagar
07 Jun 2011 1:38
Forum: Monitoring
Topic: [HELP] Job started without condition
Replies: 5
Views: 5232

Hi!

Is the job waiting for the condition with a wildcard date?
In that case it might have existed in the database from a n old predecessor.
You can use ctmcontb -LIST "condition name" "*" to see if it exists with an old date. (or even with todays date)

/Hagar
by Hagar
09 Jul 2009 10:22
Forum: Job Definition
Topic: Order ID and Job ID
Replies: 2
Views: 40689

Thats the way, The jobID is used to keep track of jobs in the definition part of the database and gets updated every time you uploads the job to the control-M/Server, even if that job is not changed. The OrderID is used to keep track of jobs in the Active Jobs File. Every time you order a job it get...
by Hagar
09 Jul 2009 10:14
Forum: Job Definition
Topic: Order a table with hold
Replies: 6
Views: 2893

There were some problems if you are trying to order/force a scheduling group with hold that already exists in the EM.

And yes you can order/force a whole table from the desktop by having control-m/sched tab view and then right click the table.
by Hagar
04 Jun 2009 9:53
Forum: Control-M Enterprise Manager
Topic: Basic question about the "Messages" window?
Replies: 3
Views: 2154

Only thing I've seen in it is messages if the GUI-server has been down and the connection has been resumed.
by Hagar
04 Jun 2009 9:38
Forum: Control-M Server
Topic: Conversion to RHEL AS Ver 5
Replies: 4
Views: 2841

it should also be noted that is RHEL is 64-bit you need PosgreSQL as database server.
But the upgrade to 6.4 is not much different if you go for posgreSQL referred to other databases,
by Hagar
09 Apr 2009 9:21
Forum: Job Definition
Topic: Cyclic job and AutoEdit variables
Replies: 8
Views: 6712

The problem is that you define %%DAY as 0 every time the job runs. First I would not use a system variable for this. use %%day instead. If you want to reset the value each day you make an extra job that runs once a day before your cyclic job that sets a global variable to 0 %%\result = 0 then in you...