Hello friends,
I am using DCTM 6.5 sp2 for Red hat Linux / Oracle.
My docbase log is growing up with lot of lines with this message: "sh: ./kdmbasic: No such file or directory"
How can I solve this problem?
Any Help?
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
The Docbasic executable is called "dmbasic" and located in $DM_HOME/bin. It seems like someone created a Docbasic method and made a typo in the method verb, using "kdmbasic" instead, which doesn't exist (at least in a standard installation).
The method might be called by a job or a customization. To see which method it is, you can run the following DQL query:
select r_object_id,object_name from dm_method where method_verb like '%kdmbasic%'
Hicham
You're right.
I don't know why it changed the dm_event_sender method verb after the migration to 6.5 version.
I changed the method verb and the problem was solved.
Thanks!