You create and execute a stored local script using the following commands: create script user backup { backup as copy tablespace users; delete noprompt obsolete; } execute script user_backup; What happens when you run these commands?

Answer: A

Explanation: Stored scripts, whether they are local or global, must be run within a RUN block as follows: run {execute script user_ backup ; }. B is wrong because a script must be enclosed in a RUN block. C is wrong because you can include a channel allocation or use the default channel in the RUN command containing the EXECUTE SCRIPT command. D is wrong because both local and global scripts apply only to the currently connected target database.