Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kacos2000 authored Dec 25, 2022
1 parent e813547 commit 082c926
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Win_Search_PropertyMap.sql
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 082c926

Please sign in to comment.