Search found 134 matches

by markf
22 Dec 2011 11:28
Forum: Job Definition
Topic: Enforce unique Job Out-Condition names
Replies: 4
Views: 4053

The problem is that - sometimes - you do want to use the same cond name. I have a job that relies on an input condition; if the first job doesn't run by 2 a.m. then I run a dummy job to add the condition regardless. The best way is to use the standard conditions that are generated by the Desktop - w...
by markf
22 Dec 2011 11:13
Forum: Control-M Server
Topic: Control-M Self service setup
Replies: 4
Views: 9400

If you check out this page - http://www.bmc.com/products/product-listing/control-m-self-service.html then you'll see a 6 minute video about the Self-Service option. At the bottom of that page are links to 2 PDFs with more details. Self-Service has to be paid for as an add-on (not hugely expensive bu...
by markf
12 Dec 2011 2:33
Forum: Control-M Enterprise Manager
Topic: List All Owner for Current Node ID
Replies: 1
Views: 7994

Do you mean in the Job Defs? The interactive SQL shows this, for example -

SQL> select DISTINCT OWNER from CMS_JOBDEF where NODEID = 'hpitop';

OWNER
------------------------------
telalert

SQL>
by markf
06 Dec 2011 4:11
Forum: Monitoring
Topic: Option to send Email from Control M for specific jobs
Replies: 5
Views: 11287

Easily done but it depends on the version of Control-M that you are using ...
by markf
15 Nov 2011 12:54
Forum: Job Definition
Topic: Purpose and way the resources work
Replies: 5
Views: 4021

If the jobs get released at exactly the same time and needs to use the same QRs then the execution order will be random ... unless you use the "Priority" field on the Execution tab (a value of 99 being the highest).
by markf
15 Nov 2011 12:51
Forum: Job Definition
Topic: Control-M AFT and Filewatch
Replies: 2
Views: 3254

Sounds like this is a case for 2 separate jobs: FW on the trigger file and then another job does the actual transfer. You probably have to do housekeeping on the trigger anyway (i.e. delete it) so it makes sense to have the trigger file perform a 'do force' on the actual FTP.
by markf
11 Nov 2011 11:20
Forum: Job Definition
Topic: Purpose and way the resources work
Replies: 5
Views: 4021

They are simply logical representations of resources. For example, I have 10 tape drives available - on the Control-M Server I create 10 Quantitative Resources called 'tape_drive'. I have 150 backup jobs and I create all with one Quantitative Resources called 'tape_drive' ... release all 150 jobs an...
by markf
28 Jun 2011 11:15
Forum: Job Definition
Topic: Filewatcher job type and variable
Replies: 2
Views: 3385

In addition to that post, I use this command line method to the job in Windows - ctmfw "%%Cds_InF*_tracking_error.csv" CREATE 0 60 10 5 1440 -Agent %%CTM_NODE && FOR /F "usebackq" %%#i in (`dir /B /O:-N %%Cds_InF*_tracking_error.csv ^| findstr /i /E /M ".csv\>"`) do ctmvar -action set -var "%%%#%\CD...
by markf
24 Jun 2011 1:43
Forum: Job Definition
Topic: how to auto rerun job after sleep 600 when failed on time?
Replies: 5
Views: 4783

Within the command line you can use a feature called conditional processing (sometimes called conditional execution). This can be used to link commands together and make them dependent on each other. A common one is this - command 1 && command 2 - the above commands will run in sequence and command ...
by markf
23 Jun 2011 12:52
Forum: Job Definition
Topic: how to auto rerun job after sleep 600 when failed on time?
Replies: 5
Views: 4783

I'm not sure that will work ... but if you are running the job as a 'command' then adding this to the end of the line will give you a sleep if the compstat code is not equal to zero -

|| sleep 600

or

|| _sleep 600
on a Windows Agent.
by markf
23 Jun 2011 12:44
Forum: Boite à Idées / Suggestion Box to BMC Software
Topic: how to install control-M agent in unix environment ?
Replies: 3
Views: 9427

You need the CD-rom with the appropriate Control-M Agent for your Unix system (and the same Control-M version as your Control-M server). The name of the Control-M Server and the port numbers to use (if not the default values) is the only thing that you will need to specify.
by markf
15 Apr 2011 2:01
Forum: Reporting
Topic: How many jobs can Control-M run per day
Replies: 2
Views: 6443

Depends on the server used but you should also bear in mind that "not all jobs are created equal" ... if your job uses priorities, lots of in/out conditions, calendars, resources and sets lots of variables then you'll find it loads the system a lot more than running a simple command line. Most peopl...
by markf
08 Apr 2011 3:10
Forum: Job Definition
Topic: answer on agentless
Replies: 3
Views: 2891

These tasks are all done via the Control-M Configuration Manager. For Unix it is very simple. Either convert an existing Agent to "Remote Host" or add a new Remote Host. You just need to select a convenient host from which to launch the connection to the new Remote Host (connections are made via SSH...
by markf
08 Apr 2011 2:17
Forum: Reporting
Topic: What is the utility of TASK_TYPE=[b]DETACHED[/b] (Job type)
Replies: 2
Views: 5947

I believe that it is a legacy of the old VMS (DEC) systems which needed this particular execution method. I haven't heard of anyone using it other environments, although the manual says it can be used for certain types of scripts.
by markf
07 Apr 2011 4:32
Forum: Job Definition
Topic: answer on agentless
Replies: 3
Views: 2891

Windows or Unix?