Viewing 15 posts - 151 through 165 (of 294 total)
I've used this http://www.sqlservercentral.com/scripts/Index+Management/30721/ before to log reindexing, I think it works on SQL 2005 as well you'd need to try it.
December 2, 2008 at 8:46 am
Thats great news glad you've got it working.
November 30, 2008 at 2:01 pm
Try adding some logging on the job when it runs to get some more information its a bit difficult without seeing the job you've set up to tell what's happening
November 28, 2008 at 1:24 pm
There is absolutely no reason why this shouldn't work, have you double checked all the variables and connections?
November 27, 2008 at 2:52 pm
Thanks
We now have it on 90% of servers with no issues as yet.....
November 12, 2008 at 7:31 am
Can you post the command you are running?
November 10, 2008 at 3:25 pm
Is there any more information in the maintenance plan log, when the job runs.
October 27, 2008 at 1:02 pm
I had similar happen, to debug I usually go to the maintenance plan and get the script of the job that runs, and run it manually in Management Studio. It...
October 27, 2008 at 12:15 pm
It could be that a SQL Agent job is being run by the user account still, it may just his windows account has been removed. Check if that user account...
October 27, 2008 at 9:59 am
piet_dj
M Chabot is correct here the instructions you download with 7 zip will give you the syntax to password protect the file if this is needed.
I find it useful ...
October 11, 2008 at 8:40 am
Shouldn't it also be possible to use native Windows functions to compress and uncompress groups of files into .zip-compatible archives? NOT "compress" like the command line .exe or operating...
September 22, 2008 at 10:43 am
I think its up to 4GB, using 7 zip, but you should really check on the 7 zip site http://www.7-zip.org/. If the files you want to zip are bigger than...
September 22, 2008 at 9:09 am
To find the service account:-
SET NOCOUNT ON
USE MASTER;
DECLARE @serviceaccount varchar(100),
@agentaccount varchar(100)
--Retrieve the Service account from registry
EXECUTE master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',
N'ObjectName',
@ServiceAccount OUTPUT,
N'no_output'
--Display the Service Account
SELECT @Serviceaccount
--Retrieve the Agent account from registry
EXECUTE master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'SYSTEM\CurrentControlSet\Services\SQLSERVERAGENT',
N'ObjectName',
@agentaccount OUTPUT,
N'no_output';
SELECT @agentaccount
September 19, 2008 at 8:50 am
Can you post the formula you are using at the moment and tell us the rounding you are trying to achieve?
September 18, 2008 at 7:06 am
Reporting Services ticks all the boxes for your requirements. It also has some similarities with Access so it shouldn't be too hard to figure out. The interface to email reports...
September 10, 2008 at 7:47 am
Viewing 15 posts - 151 through 165 (of 294 total)