Addressing data privacy requests
The Track-It! product provides capabilities that help administrators address the personal data protection and privacy requirements associated with the General Data Protection Regulation (GDPR). The GDPR is a set of rules and principles governing the handling of personal data of individuals located in the European Union (EU). There are many requirements pertaining to personally identifiable information (personal data) data with GDPR, but those that most directly affect data within Track-It! would be the ability to locate personally identifiable information, delete personally identifiable information, and anonymize personally identifiable information.
The GDPR is a set of rules and principles governing the handling of personal data of individuals located in the European Union (EU). Although many requirements pertain to personal data and GDPR, those that most directly affect data within Track-It! are the ability to locate, delete, or anonymize personal data. The following section provides information about deleting the personally identifiable information of Track-It! users.
- To delete personal data for vendors
- To delete personal data for technicians
- To delete personal data for users
To delete personal data for vendors
How | Details |
|---|---|
From Track-It! application |
|
From database | You can run the following query on the SQL database to delete the vendors: DELETE FROM [dbo].[VENDOR] WHERE COMPANY = '<VENDOR NAME>' UPDATE [dbo].[PRODUCT] SET [VENDOR] = NULL WHERE VENDOR = '<VENDOR NAME>' UPDATE [dbo].[PRODUCT] SET [MAINTENANC] = NULL WHERE MAINTENANC = '<VENDOR NAME>' UPDATE [dbo].[ITEM] SET [VENDOR] = NULL WHERE VENDOR = '<VENDOR NAME>' UPDATE [dbo].[ITEM] SET [MAINTENANC] = NULL WHERE MAINTENANC = '<VENDOR NAME>' UPDATE [dbo].[ITEM] SET [LEASOR] = NULL WHERE LEASOR = '<VENDOR NAME>' |
To delete personal data for technicians
How | Details |
|---|---|
From Track-It! application |
|
From database | You can run the following query on the SQL database to delete the technicians: DELETE FROM [dbo].[STAF] WHERE NAME = '<STAFF NAME>' |
To delete personal data for users
How | Details |
|---|---|
From Track-It! application |
|
From database |
|