Viewing 4 posts - 16 through 19 (of 19 total)
Nearly...
You need to enable XP_cmdshell beforehand
I've also done a bit of tidying up
---- enable these jobs
---- show advanced options
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
---- enable xp_cmdshell
sp_configure 'xp_cmdshell', 1;
GO
RECONFIGURE;
GO
----...
December 18, 2012 at 6:02 am
I have a database where the initial size was larger than required at 1500Mb
I tried this code:
USE master;
GO
ALTER DATABASE [dbname]
MODIFY FILE
(NAME = [logicalfilename],
...
June 13, 2012 at 8:54 am
I entirely agree with Andy's original idea - build your network before you need it. It helps enormously when you need to change. Out of the blue in...
December 31, 2011 at 12:34 pm
When I started my current job, I had a single monitor. Company policy is for everyone to have a single monitor. But there was a spare monitor sitting...
October 28, 2011 at 2:15 pm
Viewing 4 posts - 16 through 19 (of 19 total)