Add files via upload

master
Costas K 1 year ago committed by GitHub
parent e81354707d
commit 082c926734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,20 @@
-- This query is to show the content of the PropertyMap table
-- of the new Windows.db (Win 11 search database)
--
-- Database location:
-- C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Projects\SystemIndex\PropMap\PropMap.db
SELECT
Id,
StandardId,
FormatIdQualifier,
Size,
-- Since the field is a BLOB, this will show either text of the hex value:
case
when typeof(FormatId) is 'text' or typeof(FormatId) is 'integer'
then cast(FormatId as 'text')
else hex(FormatId)
end as 'FormatId'
from PropertyMap
Loading…
Cancel
Save