1

Alternatively is there a way to specify what user is used to execute a dm_job?

Ayrad
  • 3,996
  • 8
  • 45
  • 86

2 Answers2

2

DQL to get install owner select r_install_owner from dm_server_config

In Job properties, check "Pass standard arguments", and the launch user will be passed to the Jobs method. For example see Job dm_GwmTask_Alert and its file $DM_HOME$\bin\dm_gwm_jobs.ebs

lastnitescurry
  • 306
  • 1
  • 4
0

To answer the initial question "Is there a dql command to find out the docbase owner name?"

To find out the docbase owner name:

select * from dm_user where user_name='dm_dbo'
V.Y.
  • 379
  • 3
  • 4