Hello all,
I am developing an external dashboard for our evidence techs with data sourced from the data lake. Does anyone know if the barcode serial number is stored in the data lake and which table/view I can locate it?
Hello all,
I am developing an external dashboard for our evidence techs with data sourced from the data lake. Does anyone know if the barcode serial number is stored in the data lake and which table/view I can locate it?
Best answer by TomDeweySCPD
The Barcode value is stored in [evd].[barcodes]. Every time you create/print a barcode label a new barcode value is generated; so, an evidence item could have multiple barcode values. Mark43 barcode value is crazy to look at -- 000000FOUYX7B.
Here is one quick way to see the barcode values for held evidence:
SELECT TOP (1000) loc.[storage_location_name], b.[value] AS [Bar Code]
FROM [analytics_evd].[vw_evidence_items_live_storage] loc
INNER JOIN [evd].[barcodes] b ON loc.[master_item_id] = b.[entity_id]
WHERE loc.[storage_location_name] IS NOT NULL
I’ve not tried this through Analytics.
cheers
Tom
Mark43 Customers log in through SSO. Prospective customers may create an account.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.