Viewing 15 posts - 886 through 900 (of 4,745 total)
Brandie Tarvin (11/6/2012)
Anyone have any suggestions for me to...
November 6, 2012 at 6:43 am
Arthur Kirchner (11/6/2012)
Sometimes the is simply a need to quickly shink the log file without being able...
November 6, 2012 at 6:26 am
unlimited growth is ok when your database growth is fairly stable, again when you are keeping an eye on the database itself just check the free space on the drive.
size...
November 6, 2012 at 2:25 am
sqladmin 45377 (11/4/2012)
I'll have to brush up on how to best...
November 5, 2012 at 4:52 am
the shrink will be running but is probably unable to acheive much on the data file as your database is unlikely to have much free space, the log file could...
November 3, 2012 at 10:16 am
shrinking does not break the log chain.
Make the shrink a one off operation, do not repeatedly shrink it. Be sure first of all the log does not need to be...
October 24, 2012 at 4:07 pm
sounds like aliases have been set up
October 18, 2012 at 6:43 am
yogi123 (10/16/2012)
george sibbald (10/16/2012)
correct. Restricted size needs to be >= to the size you want to increase to.
Ok, so that means
if i set up Initial size to 119.644 MB. then...
October 16, 2012 at 2:20 pm
correct. Restricted size needs to be >= to the size you want to increase to.
October 16, 2012 at 12:26 pm
USE master;
GO
ALTER DATABASE yourdb
MODIFY FILE
(NAME = logical file name,
SIZE = size you wantMB);
GO
see http://technet.microsoft.com/en-us/library/bb522469(v=sql.100).aspx
you can also do it via SSMS, right click...
October 16, 2012 at 12:11 pm
you will need to record the users in database on server B before you restore over it. There is a script here [/url]to do that, read the discussion attached as...
October 16, 2012 at 11:57 am
I think you need to enable remote SSIS connections via DCOM. see
http://msdn.microsoft.com/en-us/library/aa337083(v=sql.100).aspx
October 16, 2012 at 9:48 am
backing up to local disk should be quicker.
Experiment with striping the backups, you could see improvements, or if you run your database backups consecutively, run some in parallel to try...
October 13, 2012 at 10:36 am
patch the passive node, then failover to it. On failover the patching process for that node is completed as SQL goes into update script mode as it comes up. That...
October 13, 2012 at 10:26 am
October 5, 2012 at 7:17 am
Viewing 15 posts - 886 through 900 (of 4,745 total)