Which DQL statement is used to run server methods?
-
REGISTER
-
EXECUTE
-
BEGIN
-
COMMIT
Reveal answer
Fill a bubble to check yourself
B
Correct answer
Explanation
EXECUTE is the DQL statement used to run server-side methods. REGISTER is for procedures, BEGIN and COMMIT are transaction control.
AI explanation
In EMC Documentum's DQL (Document Query Language), the EXECUTE statement is used to invoke server methods and jobs registered in the repository (e.g. EXECUTE do_method WITH method = 'method_name'). REGISTER is used for registering tables, BEGIN and COMMIT relate to transaction control, not method invocation. So EXECUTE is correct.