<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ExpressMaint Forum Rss Feed</title><link>http://www.codeplex.com/ExpressMaint/Thread/List.aspx</link><description>ExpressMaint Forum Rss Description</description><item><title>New Post: expressmaint.sql on SQL Server 2012</title><link>http://expressmaint.codeplex.com/discussions/443006</link><description>&lt;div style="line-height: normal;"&gt;I've seen issues in the Issue Tracker for the command line utility for SQL Server 2012 but what I've gathered from the Home page of this site is - only up to SQL Server 2008 R2 is supported.&lt;br /&gt;
&lt;br /&gt;
Will the expressmaint sql script work on SQL Server 2012?  We are wanting to support SQL 2012 in our next release and we have been using expressmaint for a number of years to do automatic backups.  Will we have to come up with another method if we want to support it? &lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>jcfore21</author><pubDate>Wed, 08 May 2013 20:16:07 GMT</pubDate><guid isPermaLink="false">New Post: expressmaint.sql on SQL Server 2012 20130508081607P</guid></item><item><title>New Post: App does not run.</title><link>http://expressmaint.codeplex.com/discussions/442988</link><description>&lt;div style="line-height: normal;"&gt;When I tried to launch the app it closes. Running on Windows 7. Any ideas?&lt;br /&gt;
&lt;/div&gt;</description><author>H_A_W_K</author><pubDate>Wed, 08 May 2013 18:13:39 GMT</pubDate><guid isPermaLink="false">New Post: App does not run. 20130508061339P</guid></item><item><title>New Post: changing backup extensions - ExpressMaint</title><link>http://expressmaint.codeplex.com/discussions/442484</link><description>&lt;div style="line-height: normal;"&gt;Is there any way to change the extension of a sqlserver backups from .bak to something else.  I am trying to have Carbonite keep backups of the backups.  (This is required - Carbonite should not be used to back up the actual database files). The problem is that Carbonite will not back up anything with a .bak extension.&lt;br /&gt;
&lt;/div&gt;</description><author>mharpaz</author><pubDate>Fri, 03 May 2013 17:52:45 GMT</pubDate><guid isPermaLink="false">New Post: changing backup extensions - ExpressMaint 20130503055245P</guid></item><item><title>New Post: How do you run a transaction log backup using parameters?</title><link>http://expressmaint.codeplex.com/discussions/442087</link><description>&lt;div style="line-height: normal;"&gt;Note: Db's must not be using simple recovery model.&lt;br /&gt;
&lt;br /&gt;
Modify the parameter SQL helper file and change the operation type from “DB” to a variable called $(OPTYPE) and just add a parameter to the command line argument.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;command line&amp;gt;&lt;br /&gt;
sqlcmd -S .\SQLSERVER2012EXP -i&amp;quot;C:\ExpressMaint\SqlBackupTool.SQLSERVER\bin\SQLBackupByParam.sql&amp;quot; -v DB = &amp;quot;ALL_USERS&amp;quot; -v OPTYPE = &amp;quot;LOG&amp;quot; -v DBRETAINUNIT = &amp;quot;copies&amp;quot; -v DBRETAINVAL = &amp;quot;3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;file contents of “SQLBackupByParam.sql”&amp;gt;&lt;br /&gt;
exec expressmaint&lt;br /&gt;
   @database      = '$(DB)', &lt;br /&gt;
   @optype        = '$(OPTYPE)',&lt;br /&gt;
   @backupfldr    = 'C:\ExpressMaint\SqlBackupTool.SQLSERVER\Backups',&lt;br /&gt;
   @reportfldr    = 'C:\ExpressMaint\SqlBackupTool.SQLSERVER\Reports',&lt;br /&gt;
   @verify        = 1,&lt;br /&gt;
   @dbretainunit  = '$(DBRETAINUNIT)',&lt;br /&gt;
   @dbretainval   = '$(DBRETAINVAL)',&lt;br /&gt;
   @rptretainunit = 'copies',&lt;br /&gt;
   @rptretainval  = 7,&lt;br /&gt;
   @report        = 1&lt;br /&gt;
&lt;/div&gt;</description><author>drdv</author><pubDate>Tue, 30 Apr 2013 17:52:25 GMT</pubDate><guid isPermaLink="false">New Post: How do you run a transaction log backup using parameters? 20130430055225P</guid></item><item><title>New Post: How do you run a transaction log backup using parameters?</title><link>http://expressmaint.codeplex.com/discussions/442087</link><description>&lt;div style="line-height: normal;"&gt;How do you run a transaction log backup using a parameter file?&lt;br /&gt;
The following expressmaint command runs in less than one second and seems to do nothing, no error and not much in the report.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Command line&amp;gt;&lt;br /&gt;
sqlcmd -S .\SQLSERVER2012EXP -i&amp;quot;C:\ExpressMaint\SqlBackupTool.SQLSERVER\bin\SQLBackupByParam.sql&amp;quot; -v DB = &amp;quot;ALL_USERS&amp;quot; -v DBRETAINUNIT = &amp;quot;copies&amp;quot; -v DBRETAINVAL = &amp;quot;3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;contents of file: SQLBackupByParam.sql&amp;gt;&lt;br /&gt;
exec expressmaint&lt;br /&gt;
   @database      = '$(DB)', &lt;br /&gt;
   @optype        = 'LOG',&lt;br /&gt;
   @backupfldr    = 'C:\ExpressMaint\SqlBackupTool.SQLSERVER\Backups',&lt;br /&gt;
   @reportfldr    = 'C:\ExpressMaint\SqlBackupTool.SQLSERVER\Reports',&lt;br /&gt;
   @verify        = 1,&lt;br /&gt;
   @dbretainunit  = '$(DBRETAINUNIT)',&lt;br /&gt;
   @dbretainval   = '$(DBRETAINVAL)',&lt;br /&gt;
   @rptretainunit = 'copies',&lt;br /&gt;
   @rptretainval  = 7,&lt;br /&gt;
   @report        = 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;contents of report file&amp;gt;&lt;br /&gt;
Expressmaint utility, Logged on to SQL Server [xxx\SQLSERVER2012EXP] as [XXX\xxx]&lt;br /&gt;
Starting backup on Apr 30 2013 10:29AM&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[1] Delete Old Backup Files...&lt;br /&gt;
[2] Delete Old Report Files...&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;0 file(s) deleted.

&lt;/code&gt;&lt;/pre&gt;

Expressmaint processing finished at Apr 30 2013 10:29AM (Return Code : 0)&lt;br /&gt;
&lt;/div&gt;</description><author>drdv</author><pubDate>Tue, 30 Apr 2013 14:32:28 GMT</pubDate><guid isPermaLink="false">New Post: How do you run a transaction log backup using parameters? 20130430023228P</guid></item><item><title>New Post: Links are broken on the home page</title><link>http://expressmaint.codeplex.com/discussions/438975</link><description>&lt;div style="line-height: normal;"&gt;Salve!  The documentation links on the Home page of this project seem broken.&lt;br /&gt;
&lt;/div&gt;</description><author>BGM</author><pubDate>Wed, 03 Apr 2013 15:29:24 GMT</pubDate><guid isPermaLink="false">New Post: Links are broken on the home page 20130403032924P</guid></item><item><title>New Post: Folder "does not exist on this server," But it does!</title><link>http://expressmaint.codeplex.com/discussions/438366</link><description>&lt;div style="line-height: normal;"&gt;Never mind. &lt;br /&gt;
&lt;br /&gt;
I discovered that the permissions for the Network Service account were being set on the &amp;quot;C:\CloudSync\&amp;quot; folder, but not being inherited by the child folders. Even with multiple attempts.&lt;br /&gt;
&lt;br /&gt;
Yes, I have full admin rights to the machine.&lt;br /&gt;
&lt;br /&gt;
When I set the permissions on the &amp;quot;C:\CloudSync\Google Drive\&amp;quot; folder, the permissions inherited all the way down.&lt;br /&gt;
&lt;br /&gt;
Now ExpressMaint is working as expected.&lt;br /&gt;
&lt;/div&gt;</description><author>dhaggard</author><pubDate>Thu, 28 Mar 2013 18:04:36 GMT</pubDate><guid isPermaLink="false">New Post: Folder "does not exist on this server," But it does! 20130328060436P</guid></item><item><title>New Post: Folder "does not exist on this server," But it does!</title><link>http://expressmaint.codeplex.com/discussions/438366</link><description>&lt;div style="line-height: normal;"&gt;I am running 64-bit SQLExpress 2008R2, on 64-bit Windows 7 Professional. &lt;br /&gt;
&lt;br /&gt;
ExpressMaint gives me the following error:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Msg 50000, Level 16, State 1, Procedure expressmaint, Line 157
The folder C:\CloudSync\Google Drive\DatabaseTxfer\OfficeBackup\ does not exist on this server&lt;/code&gt;&lt;/pre&gt;

The folder exists. I can paste the folder path from the error message into Windows' Run box, and the folder opens.&lt;br /&gt;
&lt;br /&gt;
SQLExpress service is running under the &amp;quot;Network Service&amp;quot; account. This account has &amp;quot;Full Control&amp;quot; access to the folder.&lt;br /&gt;
&lt;br /&gt;
What might I be missing?&lt;br /&gt;
&lt;/div&gt;</description><author>dhaggard</author><pubDate>Thu, 28 Mar 2013 17:56:03 GMT</pubDate><guid isPermaLink="false">New Post: Folder "does not exist on this server," But it does! 20130328055603P</guid></item><item><title>New Post: Backup to remote server</title><link>http://expressmaint.codeplex.com/discussions/201515</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I am using remote desktop. I set backup everyday. But backup are failed.&lt;/p&gt;
&lt;p&gt;Here is my error:&lt;/p&gt;
&lt;p&gt;Failed to connect to server localhost\sqlexpress.&lt;br&gt;
This SQL Server version (10.0) is not supported.&lt;br&gt;
Expressmaint finished unsuccessfully at 11/3/2009 5:13:34 PM with Return Code(-3)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Firewell.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;TehnicSystem&lt;/p&gt;
&lt;/div&gt;</description><author>tehnicSystem</author><pubDate>Thu, 17 Jan 2013 14:36:00 GMT</pubDate><guid isPermaLink="false">New Post: Backup to remote server 20130117023600P</guid></item><item><title>New Post: Backup stopped working?</title><link>http://expressmaint.codeplex.com/discussions/247865</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Tell me about, how to i fix that.&lt;/p&gt;
&lt;p&gt;Failed to connect to server localhost\sqlexpress.&lt;br&gt;
This SQL Server version (10.0) is not supported.&lt;br&gt;
Expressmaint finished unsuccessfully at 11/3/2009 5:13:34 PM with Return Code(-3)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Firewell.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;TehnicSystem&lt;/p&gt;
&lt;/div&gt;</description><author>tehnicSystem</author><pubDate>Thu, 17 Jan 2013 13:59:19 GMT</pubDate><guid isPermaLink="false">New Post: Backup stopped working? 20130117015919P</guid></item><item><title>New Post: SQL Express 2008 - ExpressMaint - Windows 2008 no error or backups</title><link>http://expressmaint.codeplex.com/discussions/70440</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;How can i fix error?&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
This SQL Server version (10.0) is not supported.&lt;br&gt;
Expressmaint finished unsuccessfully&amp;nbsp;&lt;/p&gt;
&lt;p&gt;PM with Return Code(-3)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is there any version solution? - My sql is 2008.&lt;/p&gt;
&lt;p&gt;OS is Windows server 2008 r2&lt;/p&gt;
&lt;/div&gt;</description><author>tehnicSystem</author><pubDate>Thu, 17 Jan 2013 12:25:55 GMT</pubDate><guid isPermaLink="false">New Post: SQL Express 2008 - ExpressMaint - Windows 2008 no error or backups 20130117122555P</guid></item><item><title>New Post: Continue on Error in Stored Procedure</title><link>http://expressmaint.codeplex.com/discussions/427610</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Since I was in the need to create a full backup and skip databases that were currently taken offline, I quickly enhanced the T-SQL Stored Procedure.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://pastebin.com/GN8n87TF"&gt;You may find my &lt;strong&gt;modified source code&lt;/strong&gt; over at PasteBin&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I'm aware that this is not perfect (e.g. it prints &amp;quot;Database backed up to &amp;lt;path&amp;gt;&amp;quot;, even the database was skipped), but is was sufficient enough for me.&lt;/p&gt;
&lt;p&gt;Hope you like it, improvements very welcome!&lt;/p&gt;
&lt;/div&gt;</description><author>UweKeim</author><pubDate>Thu, 27 Dec 2012 07:33:58 GMT</pubDate><guid isPermaLink="false">New Post: Continue on Error in Stored Procedure 20121227073358A</guid></item><item><title>New Post: .Net version for expressmaint 2008</title><link>http://expressmaint.codeplex.com/discussions/400425</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I have server 2008 R2 and installed the expressmaint 2008 version but when&amp;nbsp;I run it, it initially complains about the runtime and since upgrading to .net 4.5 complains that &amp;quot;this application could not be started&amp;quot; which appears to be(from
&lt;a href="http://support.microsoft.com/kb/2715633?version=(null)&amp;processName=ExpressMaint.exe&amp;platform=0009&amp;osver=5&amp;isServer=1"&gt;
http://support.microsoft.com/kb/2715633?version=(null)&amp;amp;processName=ExpressMaint.exe&amp;amp;platform=0009&amp;amp;osver=5&amp;amp;isServer=1&lt;/a&gt;)&amp;nbsp;a shim error with .net and means:&lt;/p&gt;
&lt;p&gt;SHIM_NOVERSION_FOUND&lt;br&gt;
&lt;br&gt;
Message: &amp;quot;This application could not be started.&amp;quot;&lt;br&gt;
&lt;br&gt;
The app is not configured in a way that makes it possible to determine the appropriate version of the .NET Framework runtime. You can't fix the configuration problem yourself. Contact the app vendor to resolve the issue.&lt;/p&gt;
&lt;p&gt;so, my questions are:&lt;/p&gt;
&lt;p&gt;a) Which version of .Net is supported by expressmaint 2008&lt;/p&gt;
&lt;p&gt;b) I understood all versions of .Net framework to be conclusive&amp;nbsp; i.e. they have all the previous versions included, so why wouldnt this work if expressmaint is built for an earlier version?&lt;/p&gt;
&lt;p&gt;c) how do I go about getting this fixed?&amp;nbsp; I have other apps that actively use .net framework so dont really want to have to uninstall and reinstall it.&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
&lt;/div&gt;</description><author>robdevereux</author><pubDate>Tue, 23 Oct 2012 08:46:10 GMT</pubDate><guid isPermaLink="false">New Post: .Net version for expressmaint 2008 20121023084610A</guid></item><item><title>New Post: Expressmaint does not backup db</title><link>http://expressmaint.codeplex.com/discussions/350717</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have a little more info on this one. (I'm creating an issue in the issue tracker too.)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have a server with both the 32 bit version of sql server and the 64 bit version.&lt;/p&gt;
&lt;p&gt;Everything works perfect with the 32 bit instance.&lt;/p&gt;
&lt;p&gt;With the 64 bit instance, I get the:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Starting backup on 3/28/2012 5:47:29 PM&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;[1] Delete old Report files...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 file(s) deleted.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Expressmaint finished successfully at 3/28/2012 5:47:29 PM with Return Code(0)&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;messages.&lt;/div&gt;&lt;/div&gt;</description><author>paradxum</author><pubDate>Tue, 07 Aug 2012 13:57:00 GMT</pubDate><guid isPermaLink="false">New Post: Expressmaint does not backup db 20120807015700P</guid></item><item><title>New Post: Expressmaint does not backup db</title><link>http://expressmaint.codeplex.com/discussions/350717</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;I have having a problem getting database backups created.&amp;nbsp; The utility makes a connection with the db, but does not seem to either find a specific db, or does nothing with ALL_USER.&amp;nbsp; I am leveraging your example #1
 for a full backup of all databases to specific backup and report directories.&amp;nbsp; The databases certainly exist.&amp;nbsp; I wonder if I&amp;rsquo;m getting caught by not having full admin rights.&amp;nbsp; Any thoughts?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Here is my system info:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Windows Server 2008 R2 OS&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;MS SQL Server 2005 is installed&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;I have a user account, but do not have full admin rights else I&amp;rsquo;d use the Agent to do this for me&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;I have several databases that are enabled for my user account&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;The report file shows the following:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;----------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Expressmaint utility v2.0.0.0 , Logged on to SQL Server [wcosdbz1] as [et3]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Created by Jasper Smith (&lt;a href="http://www.sqldbatips.com/"&gt;www.sqldbatips.com&lt;/a&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Starting backup on 3/28/2012 5:47:29 PM&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;[1] Delete old Report files...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 file(s) deleted.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Expressmaint finished successfully at 3/28/2012 5:47:29 PM with Return Code(0)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;----------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;Or this:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;----------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;Expressmaint utility v2.0.0.0 , Logged on to SQL Server [wcosdbz1] as [et3]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Created by Jasper Smith (&lt;a href="http://www.sqldbatips.com/"&gt;www.sqldbatips.com&lt;/a&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Starting backup on 3/28/2012 6:00:52 PM&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Database ONLINE_LABS_QA not found&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Expressmaint finished unsuccessfully at 3/28/2012 6:00:52 PM with Return Code(-4)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;----------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>karlk123</author><pubDate>Sat, 31 Mar 2012 07:17:57 GMT</pubDate><guid isPermaLink="false">New Post: Expressmaint does not backup db 20120331071757A</guid></item><item><title>New Post: Schedule Task Fails</title><link>http://expressmaint.codeplex.com/discussions/267267</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi I am running Exp main on win 2008 R2 enterprise system. If i run the .cmd file manually it works fine but when trying to run under sch taks it fails. Do you know why? I tried as local admin and AD account.&lt;/p&gt;
&lt;/div&gt;</description><author>arcit</author><pubDate>Mon, 01 Aug 2011 08:49:39 GMT</pubDate><guid isPermaLink="false">New Post: Schedule Task Fails 20110801084939A</guid></item><item><title>New Post: Backup stopped working?</title><link>http://expressmaint.codeplex.com/discussions/247865</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Fixed it, had to run the script as administrator, windows 2008 R2 server...&lt;/p&gt;&lt;/div&gt;</description><author>davidlozzi</author><pubDate>Mon, 28 Feb 2011 21:31:09 GMT</pubDate><guid isPermaLink="false">New Post: Backup stopped working? 20110228093109P</guid></item><item><title>New Post: Backup stopped working?</title><link>http://expressmaint.codeplex.com/discussions/247865</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I am trying to run the following command&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;expressmaint -S \\.\pipe\mssql$microsoft##ssee\sql\query -D ALL_USER -T DB -B c:\SQLBackups -R c:\SQLBackups -BU DAYS -BV 3 -RU DAYS -RV 7 -V -DS -C

&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;and the log returns&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:#000000"&gt;Expressmaint utility v2.0.0.0 , Logged on to SQL Server [\\.\pipe\mssql$microsoft##ssee\sql\query] as [HAVERHILLPOLICE\DHQ]
Created by Jasper Smith (www.sqldbatips.com)

Starting backup on 2/28/2011 8:19:30 AM


[1] Delete old Report files...
    0 file(s) deleted.



Expressmaint finished successfully at 2/28/2011 8:19:30 AM with Return Code(0)
&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;This worked on Friday, today, nothing. Any pointers? I am able to log into the SQL server and databases using the same account.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;/div&gt;</description><author>davidlozzi</author><pubDate>Mon, 28 Feb 2011 13:28:31 GMT</pubDate><guid isPermaLink="false">New Post: Backup stopped working? 20110228012831P</guid></item><item><title>New Post: Errors Running SQLMaint</title><link>http://expressmaint.codeplex.com/Thread/View.aspx?ThreadId=238834</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I am having issues running the following command:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;C:\installs\expressmaint -S RSTSVR\GROUP -D cw &amp;nbsp;-T DB -R C:\sqlbackup\reports -RU WEEKS -RV 1 -B C:\sqlbackup\data -BU DAYS -BV 7 -V -C&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;Invalid object name 'sys.databases'.Invalid object name 'sys.master_files'.&lt;span&gt;
&lt;/span&gt;Object reference not set to an instance of an object.&lt;br&gt;
&lt;br&gt;
Expressmaint finished unsuccessfully at 12/18/2010 11:10:28 PM with Return Code(-4)&lt;/p&gt;
&lt;p&gt;If I run a query on the database and run the following formatted query it works perfectly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;backup database cw to disk = N'd:\db\cw.bak';&lt;/p&gt;
&lt;p&gt;It's SQL Express 2005 running 2.0.0.0 with Windows 2003 Std.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any assistance would be appreciated.&lt;/p&gt;
&lt;/div&gt;</description><author>networkn</author><pubDate>Sat, 18 Dec 2010 10:23:04 GMT</pubDate><guid isPermaLink="false">New Post: Errors Running SQLMaint 20101218102304A</guid></item><item><title>New Post: Create Event Log Entries</title><link>http://expressmaint.codeplex.com/Thread/View.aspx?ThreadId=235359</link><description>&lt;div style="line-height: normal;"&gt;This discussion has been copied to a work item. Click &lt;a href="http://expressmaint.codeplex.com/workitem/12543"&gt;here&lt;/a&gt; to go to the work item and continue the discussion.&lt;/div&gt;</description><author>jaspersmith</author><pubDate>Sun, 21 Nov 2010 15:25:20 GMT</pubDate><guid isPermaLink="false">New Post: Create Event Log Entries 20101121032520P</guid></item></channel></rss>