Viewing 15 posts - 211 through 225 (of 560 total)
John Mitchell-245523 (10/2/2014)
October 2, 2014 at 9:36 am
Hope this help someone. This is how I approached and fixed this problem:
--Declare variable that will contain set with databases over 100GB
DECLARE @DBList VARCHAR(MAX)
--Set and loop to grab db values
SELECT...
October 2, 2014 at 9:24 am
cygne17_2 77208 (9/24/2014)
thanks for your answer.
Can I use a domain account for the mirroring purpose only and stay with SQL Server Service run with NT Service\mssqlserver ?
Which privilege do I...
September 24, 2014 at 12:53 pm
adrian.buzila (9/24/2014)
I implemented you first solution with reseed max value....
September 24, 2014 at 11:29 am
cygne17_2 77208 (9/24/2014)
I am trying to configure database mirroring with sql server 2012.
My principal instance and my mirror instance are on different server.
Both SQL Server service run with NT SERVICE\MSSQLSERVER.
Now...
September 24, 2014 at 10:20 am
Yeah, my bad, forgot to post the query that lists the names of databases bigger than 100GB.
But I think I got an idea of how to do it without altering...
September 24, 2014 at 9:39 am
Johnny B (9/23/2014)
After observing brute force attacks on our VPS myhosting instance against the SA login, I change the SA login name....
September 23, 2014 at 2:35 pm
DBA From The Cold (9/23/2014)
Yes, you did.The database was 3TB in size, in a .MDF file and two .NDF files.
They must have thought each needed a .LDF
Wow! One of those...
September 23, 2014 at 2:21 pm
sqldriver (9/23/2014)
Yeah, I'm re-working the VLFs now. Doesn't help me with the current restore in process. Curse these SATA drives.
fyi
On some cases, you may find that it is better to...
September 23, 2014 at 2:17 pm
DBA From The Cold (9/23/2014)
I inherited a 3TB database with thousands of VLFs (in three .ldf files on...
September 23, 2014 at 1:29 pm
I've had good results with robocopy, which is included on Windows. It is really fast. It is smart enough to retry, and I can control what to copy depending of...
September 23, 2014 at 1:27 pm
Take a look on this article that Kimberly wrote: Transaction Log VLFs – too many or too few?
Attached the script I used. Please test 1st, on Dev environment. Adjust upper...
September 23, 2014 at 1:10 pm
Yes, VLFs count. Fix them. They can get out of control due improper auto-grow settings for your Tlog file. If you have thousands of them, it will take longer for...
September 23, 2014 at 1:05 pm
loading 1.5 million records into a temp table should not be the question to ask. The main thing is, do you really need the whole set there? With a properly...
September 23, 2014 at 1:01 pm
Viewing 15 posts - 211 through 225 (of 560 total)