Fix checksum in bulk

ARTIFACTORY: How to identify and fix all artifacts with missing client checksums

AuthorFullName__c
Paul Pan
articleNumber
000005357
ft:sourceType
Salesforce
FirstPublishedDate
2022-08-03T11:15:55Z
lastModifiedDate
2024-03-26T14:17:23Z
VersionNumber
6
Right now, we do not have an API to fix Checksum for an entire repository.

If you need a quick fix to update all missing Checksum in a repo, you can run the following query:

Update nodes Set sha1_original='NO_ORIG' Where sha1_original IS NULL AND sha1_actual IS NOT NULL AND repo=’some_repo’;

Note that db schema are subject to change, so please take back up before running the above query