Symptom
When backing up using the Enterprise Server Edition (ESE) the following error messages are seen for one or more files:
WARN : 12:46:16 Unsupported file entry F:\Data\Amity Island\Shark Reports\Chief Brody.pdf,
attributes: 100
ERROR : 12:46:16 Skipping unknown entry F:\Data\Amity Island\Shark Reports\Chief Brody.pdf
Note: The actual attributes reported may differ. The "100" value indicates the "temporary" attribute.
Cause
Extended file attributes cannot be read in the current version of ESE in some scenarios. Files are created with different extended attributes set by some applications. More detail of Windows file attributes can be found in this article on Microsoft's knowledge base.
Solution
Change the file attributes using PowerShell and the following commands:
Get-childitem D:\Data -recurse | ForEach-Object -process {if (($_.attributes -band 0x100)
-eq 0x100) {$_.attributes = ($_.attributes -band 0xFEFF)}}
Replace "D:\Data" with the appropriate file path, and "0x100" in both locations with the appropriate attribute that you wish to remove.
See this blog for more.
Comments
0 comments
Please sign in to leave a comment.