I'm trying to write an autosys JIL which creates the job if it doesn't exist but updates it otherwise. I would've sworn there was a command for that, like 'update_or_create' or something but I can't find it anywhere.
Asked
Active
Viewed 3,720 times
2 Answers
1
there are three distinct commands: insert, update and delete _job. no "insert-or-update_job"

pavel
- 121
- 1
0
You would best do this writing a Python script with something like SQLAlchemy/SQLACodeGen - then interrogate the AutoSys database to use the required verb prefix.

JGFMK
- 8,425
- 4
- 58
- 92