<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xml:base="http://www.red-gate.com/MessageBoard/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Red Gate forums: SQL Storage Compress 6</title>
 <link>http://www.red-gate.com/MessageBoard/</link>
 <description>Product Support and Discussion</description>
 <language>en</language>
 <copyright>Copyright Red Gate Software Ltd</copyright>
 <managingEditor>internalsupport@red-gate.com</managingEditor>
 <webMaster>internalsupport@red-gate.com</webMaster>
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
 <ttl>60</ttl>
 <lastBuildDate>Wed, 22 May 2013 18:44:23 GMT</lastBuildDate>
 <pubDate>Wed, 22 May 2013 18:44:23 GMT</pubDate>
 <image>
  <url>http://www.red-gate.com/messageboard/templates/subRed/images/logo_phpBB.gif</url>
  <title>Red Gate forums: SQL Storage Compress 6</title>
  <link>http://www.red-gate.com/MessageBoard/</link>
 </image>
 <item>
  <title>RE: Error trying to restore to compressed database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62075#62075</link>
  <description>You can also manage the HyperBac Control Service directly from Windows (for example, in Windows XP, go to Control Panel &amp;gt; Administrative Tools &amp;gt; Services &amp;gt; HyperBac Control Service).
&lt;br /&gt;

&lt;br /&gt;
If you stop the HyperBac Control Service while it is processing backup data for a SQL Server operation, the SQL Server operation will fail.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15935</comments>
  <dc:creator>Lala55</dc:creator>
  <pubDate>Wed, 22 May 2013 06:49:20 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62075#62075</guid>
 </item>
 <item>
  <title>RE: SQL Storage Compress has been retired</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=61874#61874</link>
  <description>I have  used SQL HyperBac and encountered an error called &amp;quot;The volume on device &amp;lt;backup_path&amp;gt; is empty&amp;quot; what does it mean? How can I resolve it?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://www.bigdatacompanies.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Big Data Companies&lt;/a&gt;</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16588</comments>
  <dc:creator>DanielleShriek</dc:creator>
  <pubDate>Mon, 13 May 2013 06:21:29 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=61874#61874</guid>
 </item>
 <item>
  <title>RE: Query same as GUI  - current size vs. compressed</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=61420#61420</link>
  <description>I received notice from support that they use C# and TSQL to gather this data and, as a user, I will not have access to this information.
&lt;br /&gt;

&lt;br /&gt;
I wrote a script that would grab similar information and mark my compressed databases with a '1'.  I then copied that to excel and filled in another column of %savings by hand.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;use &amp;#91;Master&amp;#93;
&lt;br /&gt;
SELECT &amp;#91;db&amp;#93;= db_name&amp;#40;sys.master_files.&amp;#91;database_id&amp;#93;&amp;#41;
&lt;br /&gt;
,CASE type_desc 
&lt;br /&gt;
WHEN 'ROWS' THEN 'Data'
&lt;br /&gt;
WHEN 'LOG'&amp;nbsp; THEN 'Log'&amp;nbsp; END AS &amp;#91;File Type&amp;#93;
&lt;br /&gt;
,sum&amp;#40; &amp;#91;size&amp;#93;*8.0/1024 &amp;#41; AS &amp;#91;File Size_MB&amp;#93;
&lt;br /&gt;
,sum&amp;#40; &amp;#91;size&amp;#93;*8.0/1024/1024 &amp;#41; AS &amp;#91;File Size_GB&amp;#93;
&lt;br /&gt;
,case when t1.database_id is NULL then 0 else 1 end &amp;#91;is compressed&amp;#93;
&lt;br /&gt;
FROM sys.master_files
&lt;br /&gt;
left join &amp;#40;select distinct &amp;#91;database_id&amp;#93; from sys.master_files where physical_name like '%x'&amp;#41;t1 on sys.master_files.database_id=t1.database_id
&lt;br /&gt;
group by type_desc,t1.&amp;#91;database_id&amp;#93;,sys.master_files.database_id
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16878</comments>
  <dc:creator>epetro</dc:creator>
  <pubDate>Thu, 18 Apr 2013 19:25:17 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=61420#61420</guid>
 </item>
 <item>
  <title>Query same as GUI  - current size vs. compressed</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=61383#61383</link>
  <description>I have been asked to provide data for a server move which should include the size of each database both native and compressed.  I would really like to match the data available in the GUI on the 'Database Sizes' tab.
&lt;br /&gt;

&lt;br /&gt;
If anyone knows how/where to pull that data, please post.
&lt;br /&gt;

&lt;br /&gt;
Thanks.
&lt;br /&gt;

&lt;br /&gt;
(If I get this info from support I will provide it in an update)</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16878</comments>
  <dc:creator>epetro</dc:creator>
  <pubDate>Wed, 17 Apr 2013 22:38:30 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=61383#61383</guid>
 </item>
 <item>
  <title>SQL Storage Compress has been retired</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=60594#60594</link>
  <description>After a review of our database administration software, we've decided to focus development on our core database administration tools, and to retire the HyperBac powered products (SQL HyperBac, SQL Storage Compress, and SQL Virtual Restore).
&lt;br /&gt;

&lt;br /&gt;
If you already own one of these tools, you can continue to use our forums for help and support – just post your query here.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16588</comments>
  <dc:creator>fionag</dc:creator>
  <pubDate>Tue, 05 Mar 2013 14:06:52 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=60594#60594</guid>
 </item>
 <item>
  <title>RE: Databases start up 'In Recovery' in V5.4.0.22 (and 5.4.1.5)</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=60422#60422</link>
  <description>&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;skyline69 wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;This is still an on-going issue Chris!?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
The fact that it's February 2013 and there's still no response to this question is not encouraging.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=13856</comments>
  <dc:creator>mglenn</dc:creator>
  <pubDate>Thu, 21 Feb 2013 18:18:04 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=60422#60422</guid>
 </item>
 <item>
  <title>RE: Running ETL Process against Compressed Database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=59089#59089</link>
  <description>Hi, Thank you for your post into the forum and sorry that you have encountered a problem.
&lt;br /&gt;

&lt;br /&gt;
A support call has been created for you, the call reference is F0067031.
&lt;br /&gt;

&lt;br /&gt;
Can you please send an e-mail to &lt;a href=&quot;mailto:support@red-gate.com&quot;&gt;support@red-gate.com&lt;/a&gt; with the above call reference number in the subject field?  In your e-mail can you please confirm the following information and attach the requested HyperBac files?
&lt;br /&gt;
&lt;ul&gt;
&lt;br /&gt;
Details of the ETL Process you are performing?
&lt;br /&gt;

&lt;br /&gt;
OS version of your server?
&lt;br /&gt;

&lt;br /&gt;
Number of CPU's and Cores, and Memory on the machine?
&lt;br /&gt;

&lt;br /&gt;
SQL Server version?
&lt;br /&gt;

&lt;br /&gt;
Copies of the HyperBac Status.dat, openstatus.dat and hyperbac.conf files, default location -  C:\Program Files (x86)\Red Gate\HyperBac\bin?
&lt;br /&gt;

&lt;br /&gt;
Copy of the HyperBac Service.log and any other error log files, default location - C:\Program Files (x86)\Red Gate\HyperBac\logs?
&lt;br /&gt;

&lt;br /&gt;
Event viewer capture from the time of the error?
&lt;br /&gt;

&lt;br /&gt;
Performance Monitor snapshot too if possible, to get an idea of memory usage, CPU etc?&lt;/ul&gt;
&lt;br /&gt;

&lt;br /&gt;
Once we receive the requested information, we will be able to offer advice  and hopefully identify a cause of the performance degradation.
&lt;br /&gt;

&lt;br /&gt;
Many Thanks
&lt;br /&gt;
Eddie</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16157</comments>
  <dc:creator>eddie davis</dc:creator>
  <pubDate>Fri, 23 Nov 2012 11:04:40 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=59089#59089</guid>
 </item>
 <item>
  <title>Running ETL Process against Compressed Database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=59077#59077</link>
  <description>Hi,
&lt;br /&gt;

&lt;br /&gt;
I have been testing our ETL process against the compressed database and the uncompressed database to verify performance and so far ETL against the compressed database is taking up to 4x longer to run. Is this to be expected? 
&lt;br /&gt;

&lt;br /&gt;
I was under the impression that the compressed database would perform as well or better than the uncompressed database.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16157</comments>
  <dc:creator>Kadams</dc:creator>
  <pubDate>Wed, 21 Nov 2012 22:03:55 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=59077#59077</guid>
 </item>
 <item>
  <title>RE: Error trying to restore to compressed database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=58913#58913</link>
  <description>I'm getting the same error in one of our development database servers.  Tried changing the service account but still no luck.  Any other way to solve this?  It works well in my local workstation but I need to try it now to our actual databases.  Please help.  Thanks!</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15935</comments>
  <dc:creator>Playbill</dc:creator>
  <pubDate>Tue, 13 Nov 2012 13:19:11 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=58913#58913</guid>
 </item>
 <item>
  <title>RE: Error trying to restore to compressed database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=58269#58269</link>
  <description>I got this to work.  I had to change the HyperBac service to log in as a standard account with local administrator access instead of LOCAL SERVICE.  Once I changed the log on account and restarted HyperBac it worked.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15935</comments>
  <dc:creator>squillman</dc:creator>
  <pubDate>Tue, 09 Oct 2012 21:21:53 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=58269#58269</guid>
 </item>
 <item>
  <title>Error trying to restore to compressed database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=58267#58267</link>
  <description>I have just installed the SQL Storage Compress 6.1 trial and am trying to restore to a compressed database.  Every time I try I get an error during the Configure HyperBac Control Service stage.  The error message is &amp;quot;HyperBac Control Service did not update status.dat file&amp;quot;.
&lt;br /&gt;

&lt;br /&gt;
I've tried 2 different databases, each of which was backed up (natively) from my local instance specifically to restore using Storage Compress.  I've restarted the SQL server instance, HyperBac service, and even reinstalled HyperBac.
&lt;br /&gt;

&lt;br /&gt;
Environment:
&lt;br /&gt;
- Win7 Pro x64
&lt;br /&gt;
- SQL 2008 R2 Dev x64
&lt;br /&gt;

&lt;br /&gt;
Any suggestions what I can try next to get this working?</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15935</comments>
  <dc:creator>squillman</dc:creator>
  <pubDate>Tue, 09 Oct 2012 19:53:38 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=58267#58267</guid>
 </item>
 <item>
  <title>HyperBac Components Update (version 5.9.0)</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=58159#58159</link>
  <description>Version 5.9 of the HyperBac components have been released (SQL Storage Compress is powered by HyperBac technology).
&lt;br /&gt;

&lt;br /&gt;
Build numbers: 
&lt;br /&gt;
Installer version: 5.9.0.2
&lt;br /&gt;
Service version: 5.9.0.13
&lt;br /&gt;
Driver version: 6.3.0.34
&lt;br /&gt;
SQL Storage Compress: 6.1.0.157
&lt;br /&gt;

&lt;br /&gt;
New Features / Bugs Fixed 
&lt;br /&gt;

&lt;br /&gt;
- Fixed bug that occasionally caused compressed databases to grow larger than their SQL Server size. (HBT-191)</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15902</comments>
  <dc:creator>fionag</dc:creator>
  <pubDate>Wed, 03 Oct 2012 10:37:58 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=58159#58159</guid>
 </item>
 <item>
  <title>SQL Storage Compress (v6.1) and HyperBac Components (v5.8.0)</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=57694#57694</link>
  <description>SQL Storage Compress (v6.1) and HyperBac Components (v5.8.0) have been released. 
&lt;br /&gt;
(SQL Storage Compress is powered by HyperBac technology)
&lt;br /&gt;

&lt;br /&gt;
Build numbers: 
&lt;br /&gt;
Installer version: 5.8.0.3
&lt;br /&gt;
Service version: 5.8.0.246
&lt;br /&gt;
Driver version: 6.3.0.34
&lt;br /&gt;
SQL Storage Compress: 6.1.0.157
&lt;br /&gt;

&lt;br /&gt;
New Features / Bugs Fixed 
&lt;br /&gt;

&lt;br /&gt;
SQL Storage Compress
&lt;br /&gt;
- SQL Storage Compress online help has been reviewed and updated.
&lt;br /&gt;
- It is now possible to create a compressed database on a SQL Server 2012 instance via the SQL Storage Compress GUI. (HBO-178)
&lt;br /&gt;
- SQL Storage Compress GUI will now correctly report the “Summary of savings”, for SQL Server 2012 instances with zero or one databases. (HBO-181)
&lt;br /&gt;

&lt;br /&gt;
HyperBac Engine / HyperBac Driver / Utilities
&lt;br /&gt;
- HyperBacSupportInfo.zip: Output file is now called SupportLogsAndSystemData.zip.
&lt;br /&gt;
- The HyperBac Driver should no longer cause a Blue Screen if an error occurs while the driver is being loaded into the Kernel. (HBD-11)</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15782</comments>
  <dc:creator>fionag</dc:creator>
  <pubDate>Wed, 05 Sep 2012 09:40:45 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=57694#57694</guid>
 </item>
 <item>
  <title>HyperBac Components Update (version 5.7.0)</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=56841#56841</link>
  <description>&lt;span style=&quot;font-weight: bold&quot;&gt;Version 5.7 of the HyperBac components have been released&lt;/span&gt; &lt;span style=&quot;font-style: italic&quot;&gt;(SQL Storage Compress is powered by HyperBac technology).&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Build numbers:&lt;/span&gt;
&lt;br /&gt;
Installer version: 5.7.0.4 
&lt;br /&gt;
Service version: 5.7.0.155
&lt;br /&gt;
Driver version: 6.2.0.84
&lt;br /&gt;

&lt;br /&gt;
Since last August we have released 3 versions of the components as follows:
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Version 5.7.0 (July 2012)&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
- A bug causing restores to SSC databases to fail on some hardware (HyperBac logs showed the error &amp;quot;Failed to probe user buffer&amp;quot;) has been fixed. (HBD-27)
&lt;br /&gt;
- Windows Explorer now displays .mdfe, .ndfe, and .ldfe files with the HyperBac icon. (HBT-197)
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Version 5.6.x (May 2012)&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
- Index files that are no longer needed are now deleted automatically.
&lt;br /&gt;
- Various bugs surrounding handling SQL Storage Compress (SSC) and SQL Virtual Restore (SVR) databases on a mounted virtual hard disk have been fixed. (HBT-183)
&lt;br /&gt;
- Compressed database files and stub SVR files can now be copied and remounted safely. (HBT-149)
&lt;br /&gt;
- HyperUtil now respects the -L option (which overrides the log file path). (HBT-212)
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Version 5.5.x (November 2011 and February 2012)&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
- The service now reports its progress when rebuilding index files; this is written to the associated log file. (HBT-179)
&lt;br /&gt;
- SSC and SVR databases can now be brought on-line instantly. This greatly reduces the time taken to initialise these databases on system start up.
&lt;br /&gt;
- RESTORE WITH REPLACE to an SSC database now gives the expected compression even after repeated RESTORE operations. (HBT-107)
&lt;br /&gt;
- A memory leak that could be seen as a small increase in memory used every few hours has been fixed.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15512</comments>
  <dc:creator>fionag</dc:creator>
  <pubDate>Tue, 10 Jul 2012 08:48:36 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=56841#56841</guid>
 </item>
 <item>
  <title>RE: MODIFY FILE encountered operating system error 112</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=56714#56714</link>
  <description>I am the support engineer that is investigating this issue since the date you have reported this issue. I was hoping to get some more information from you in regards to this error and this sytem.
&lt;br /&gt;

&lt;br /&gt;
Is it possible to send me the following information to get more clearer picture of what is happening on your system?
&lt;br /&gt;

&lt;br /&gt;
I was hoping to get the following:
&lt;br /&gt;

&lt;br /&gt;
- OS version
&lt;br /&gt;
- Number of CPU's and Cores, and Memory on the machine
&lt;br /&gt;
- SQL Server version
&lt;br /&gt;
- Status.dat, openstatus.dat and hyperbac.conf from C:\Program Files (x86)\Red Gate\HyperBac\bin
&lt;br /&gt;
- Service.log and any other logs in C:\Program Files (x86)\Red Gate\HyperBac\logs
&lt;br /&gt;
- The format version of the Backup file that you are using in this test?
&lt;br /&gt;
- Does the test succeed if you try the restore with a different drive?
&lt;br /&gt;
- Are you able to send me the exact restore command when you try this via SQL Mgt studio?
&lt;br /&gt;

&lt;br /&gt;
Thanks for your patience and feedback in this matter.</description>
  <category>SQL Storage Compress 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15408</comments>
  <dc:creator>RajK</dc:creator>
  <pubDate>Tue, 03 Jul 2012 12:30:06 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=56714#56714</guid>
 </item>
</channel>
</rss>
