Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: added missed options #1426

Open
wants to merge 1 commit into
base: 2.40
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/user/data-administration.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,9 @@ Table: Data maintenance functions in the Data Administration app
| Function | Description |
|---|---|
| Clear analytics tables | Completely empties the analytics tables. These tables are used to generate aggregate data for the pivot tables, GIS and reports. |
| Analyze analytics tables | TBC |
| Remove zero data values | Removes zero data values from the database. Values registered for data elements with aggregation operator average is not removed, as such values will be significant when aggregating the data, contrary to values registered for data elements with aggregation operator sum.<br> <br>Reducing the number of data values will improve system performance. |
| Permanently remove soft deleted data values | When a data value is deleted in DHIS2, the system will mark the corresponding database row as deleted, and not actually delete the row.<br> <br>Running this maintenance function will physically remove these data value rows from the database. |
| Permanently remove soft deleted data values / events / enrollments / tracked entity instances | When a data value is deleted in DHIS2, the system will mark the corresponding database row as deleted, and not actually delete the row.<br> <br>Running this maintenance function will physically remove these data value rows from the database. |
| Prune periods | Removes all periods which have no registered data values. Reducing the number of periods will improve system performance. |
| Remove expired invitations | Will delete users which represent user account invitations that now have gone past their expiry date. |
| Drop SQL views | DHIS2 lets you set up and manage SQL views as system objects with corresponding database SQL views.<br> <br>Running this maintenance function will drop underlying SQL views for all system views. Use the **Create SQL views** function to recreate these SQL views. |
Expand Down