| 45 | As from December 2014, recruitment is monitored in REDCap for all sites (excluding Northampton, which is still using Onyx). To collect recruitment monitoring data from REDCap, the REDCap logging table can be used. |
| 46 | |
| 47 | |
| 48 | November 2014 example - Leicester: |
| 49 | |
| 50 | * mysql -h briccsdb -u auditor -p redcap -e "SELECT pk,project_id,ts from redcap_log_event where event = 'INSERT' and object_type = 'redcap_data' and project_id = '24' and ts > '20141101000000' and ts < '20141201000000' order by ts;" > briccs_enrolment_leicester_2014_11.txt |
| 51 | |
| 52 | November 2014 example - external sites: |
| 53 | |
| 54 | Note: Project ID 12 is the DEMO project. Watch that when other externally facing projects are set up, they don't mess with the reporting... |
| 55 | |
| 56 | * mysql -h briccsdb -u auditor -p redcap_briccsext -e "SELECT pk,project_id,ts from redcap_log_event where event = 'INSERT' and object_type = 'redcap_data' and project_id <> '12' and ts > '20141101000000' and ts < '20141201000000' order by ts;" > briccs_enrolment_external_sites_2014_11.txt |
| 57 | |
| 58 | |
| 59 | SUPERCEDED |