The online training material is incorrect.
Link - https://neo4j.com/graphacademy/online-training/neo4j-administration/part-3/
"First, you should understand how to view the procedures available for use with the Neo4j instance. You do so by executing the Cypher statement CALL db.procedures();
."
CALL db.procedures()
- gives the error "There is no procedure with the name db.procedures
registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed."
I assume this is instead meant to be 'CALL dbms.procedures()'.
Please update the training material accordingly.