Viewing 15 posts - 316 through 330 (of 469 total)
TRACEY (11/12/2008)
Oh someone changed it to FULL Recovery mode - oh that may do it if your not backing up logs every x minutes.
Why did someone do it :unsure:, if...
November 12, 2008 at 12:55 pm
DBCC increases the log file size, you need to watch for it. If your table size is too big then log will grow to a substantial amount. Better switch to...
November 12, 2008 at 11:50 am
Yes Gail..you are right with that, I mean to say use Shrink DB as a emergency measure only..like when the log file grows too large after a one off ...
November 12, 2008 at 11:37 am
Server collation change calls for re-installation.Instead change DB collation as
ALTER DATABASE MyDatabase COLLATE
Watch out if you use temporary tables a lot and do joins to your databases.....
November 12, 2008 at 11:34 am
Maybe you can Purge the historical data and also Update statistics with full scan.Shrinking a DB that needs to grow is a temporal solution. As said in the above post,...
November 12, 2008 at 11:25 am
Are you running low on disk space? if so then DB shrink is good. Your DBA's are right the reason being it increases fragmentation on your tables..
Thanks!!
November 12, 2008 at 11:21 am
This looks more of a bug. What version of SQL and Service pack are you on. I would suggest to go for a higher cumulative update.
Thanks!!
November 11, 2008 at 7:34 pm
No need to take DB offline...just do it on a maintenance window for the first time to note how long it takes to complete. From there you can schedule it...
November 11, 2008 at 7:27 pm
I was on 3042 (default SP2 version). I have a A/P cluster. I installed from the Active node..which works very well
November 11, 2008 at 7:18 pm
Mirroring is used as a High Availability technique, not risky I must say. But you cant configure it for high performance also.
Check DB Mirroring in BOL for more details.
Thanks!!
November 11, 2008 at 7:15 pm
Whats the size of the largest DB of the 4000 that are installed on this instance??
November 11, 2008 at 6:56 pm
I recently installed it on my server. Are there any known issues so far with SQL 2005 SP3...any comments and or views will he highly appreciated..hope there are not many...
November 11, 2008 at 6:54 pm
There is no harm in Defragmenting the SAN. The advantage of defragmentation would be reducing file system overhead before any physical disk IO occurs. Also the file would be in...
November 11, 2008 at 6:51 pm
shrinking operation disregards indexing..which degrades the performance. What calls for you to shrink the database.
If its only the log file that has grown too big then try thi
use UrDbName
Backup Log...
November 11, 2008 at 6:42 pm
Check for Replication in BOL. But unless it is unidirectional replication (as in snapshot or transactional) you lose the ability to control the changes that you would want to go...
November 11, 2008 at 6:30 pm
Viewing 15 posts - 316 through 330 (of 469 total)