Remove Grades for User

Remove Grades for User

av Jim Rehmann -
Antall svar: 1

Is there a way for me to remove the grades for a user?  I'm running lots of SCORM testing under one of my Admin usernames to verify scoring is working properly, and I'd like to be able to "erase" the grades for this username and re-take the modules.  Right now, I'm just creating another new user and taking the tests all over that way.

Som svar til Jim Rehmann

Re: Remove Grades for User

av Nicolas Connault -
If you have access to your site's SQL server, you could run the following query:

DELETE FROM mdl_grade_grades WHERE userid = [#userid];

Just replace [#userid] by the id of the test user. Be aware that this is irreversible, you want to make sure you put the right userid in there or you will lose data forever and ever. Please don't run this on a production server unless you really know what you're doing.