SQL Server 2025 replaces legacy full-text filters (including older third-party IFilters) with new, built-in binaries. The supported document types and their filters are exposed through sys.fulltext_document_types, and each row represents an IFilter registered in the instance.
If querying
SELECT document_type, path
FROM sys.fulltext_document_types
WHERE document_type = '.pdf';
returns no rows in SQL Server 2025, it means no PDF IFilter is registered for that instance. Installing Adobe IFilter alone is not sufficient to make it visible to SQL Server 2025; the engine uses the new, built-in filter set and only exposes filters that are registered and supported. The context provided lists default filters for many Office and ODF formats in SQL Server 2025, but .pdf is not among the documented default extensions.
Because only document types present in sys.fulltext_document_types are available for full-text indexing, PDF full-text indexing cannot be used in SQL Server 2025 unless a .pdf row appears in that view. There is no documented mechanism in the provided material to add or register an external PDF IFilter for SQL Server 2025 beyond what the engine already supports.
To verify what is supported on the instance, run:
SELECT document_type, manufacturer, path
FROM sys.fulltext_document_types
ORDER BY document_type;
If .pdf is not listed, PDF documents cannot be full-text indexed on that instance with the currently supported filters.
References: