Quantcast
Channel: Symantec Connect
Viewing all articles
Browse latest Browse all 13407

Backup Exec SharePoint Agent does not support compressed databases for granular restores of items.

$
0
0
I need a solution

I have a Windows Server 2012 and I am trying to backup Sharepoint 2013 with BE 2014. It completes successfully but it throws this exception.

Backup Exec SharePoint Agent does not support compressed databases for granular restores of items.

In the backup options I'm not using any compression type. I tried researching it but couldn't find any info on a solution or what's causing.

I ran the following query successfully but no databases were listed. See attached image.

SELECT DISTINCT
SCHEMA_NAME(o.schema_id)  + '.' + OBJECT_NAME(o.object_id) AS TableName,
i.name AS IndexName,
p.data_compression_desc AS CompressionType,
i.type_desc AS StorageType
FROM sys.partitions  p
INNER JOIN sys.objects o
ON p.object_id = o.object_id
JOIN sys.indexes i
ON p.object_id = i.object_id
AND i.index_id = p.index_id
WHERE p.data_compression > 0
AND SCHEMA_NAME(o.schema_id) <> 'SYS'

I also ran the following command which I was told if an output other that 0 was listed the the DB compression is set to ON. It displayed a number 3.

SELECT COUNT(*) FROM DBname.sys.partitions WHERE data_compression > 0


Viewing all articles
Browse latest Browse all 13407

Trending Articles