Automic Workload Automation

 View Only
  • 1.  SQL to select windows objects that use "Custom interpreter"

    Posted Nov 10, 2021 02:18 PM

    I would like to identify all of our windows objects that use "Custom interpreter" for the "interpreter type" on the Windows settings panel, so we can consider depreciating the use of this feature and replace it with the script function :BEGIN_EXT_INTERPRETER.

    Does anyone know where this setting is stored in the database?  I've investigated the JBA table, but I haven't been able to find it.



    ------------------------------
    Pete Wirfs
    SAIF Corporation
    Salem Oregon USA
    ------------------------------


  • 2.  RE: SQL to select windows objects that use "Custom interpreter"

    Posted Nov 11, 2021 02:54 AM
    Hi Pete,

    it's part of JBA_Rest:

    Values can be 0, 1 and 2 (batch/command/custom interpreter)

    regards,
    Peter





  • 3.  RE: SQL to select windows objects that use "Custom interpreter"

    Posted Nov 12, 2021 11:24 AM
    Edited by Juergen Lechner Nov 12, 2021 11:26 AM
    Hi Pete,

    this is one of the hidden "pearls" of the DB. <sarcasm>I love concatenated fields!</sarcasm> But as I said: hidden. :-)

    Try this SQL: select * from uc_svalm order by svalm_attdbfname, svalm_hostattrtype, svalm_restid

    This table explains a lot of the cryptic stuff.

    Regards,
    Juergen

    ------------------------------
    Juergen Lechner
    Managing Consultant
    setis GmbH
    Germany
    ------------------------------



  • 4.  RE: SQL to select windows objects that use "Custom interpreter"

    Posted Nov 12, 2021 03:53 PM
    Edited by Pete Wirfs Nov 12, 2021 03:53 PM

    Thank you everyone!  This information got me what I needed.



    ------------------------------
    Pete Wirfs
    SAIF Corporation
    Salem Oregon USA
    ------------------------------