You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Queries/Win_Search_PropertyStore.sql

17 lines
498 B
SQL

-- This query is to show the content of the SystemIndex_1_PropertyStore table
-- of the new Windows.db (Win 11 search database)
--
-- Database location:
-- C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.db
SELECT
WorkId,
ColumnId,
-- Since the field is a BLOB, this will show either text of the hex value:
case
when typeof(value) is 'text' or typeof(value) is 'integer'
then cast(value as 'text')
else hex(Value)
end as 'Value'
from SystemIndex_1_PropertyStore