You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider creating functions that could extract a project's redcap_data history from the redcap_log_event* tables and turn it into a valid dataset, ready for import into the same or a similar redcap project. Consider the approach used in OuhscBbmc/REDCapR#450
Make sure to read my comments about the SQLite approach
The text was updated successfully, but these errors were encountered:
Note that if a project is moved to production, all prior data entry logs are wiped from the log.
However, something like this is a good starting point, sql_log contains raw SQL, if things are simple enough, we could simply incrementally run these statements against an in-memory redcap_data table before porting in to REDCap itself. How to properly do the latter is up for discussion, easy would be to just run those INSERTs against prod, but we should be good and try to use the API to get logging.
easy would be to just run those INSERTs against prod
I never want to run the INSERTs against a REDCap DB. We should create files that are ready to be handed to the API for write or written out as a CSV for a human to review and import with great discretion.
Consider creating functions that could extract a project's
redcap_data
history from theredcap_log_event*
tables and turn it into a valid dataset, ready for import into the same or a similar redcap project. Consider the approach used in OuhscBbmc/REDCapR#450Make sure to read my comments about the SQLite approach
The text was updated successfully, but these errors were encountered: