Viewing 15 posts - 91 through 105 (of 133 total)
Interesting. For me, using sp_help_revlogins did not work going from 2000 to 2008.. But then, I was actually going from 2008 to 2008 R2. Still, it didn't work for me...
November 24, 2010 at 8:04 am
Just out of curiosity, I'd love to hear how many VLFs your database has. Run DBCC LOGINFO(0) in the database. The number of rows returned equals the number of VLFs...
November 24, 2010 at 7:58 am
You may also want to check the number of virtual log files in your transaction log. If there are many (meaning your transaction log has autogrown many times), restores will...
November 24, 2010 at 7:55 am
Temp tables are created and stored in the temdb system database, so look for bottlenecks there. Is tempdb on its own drive and not on the same drive as the...
November 24, 2010 at 7:47 am
Still trying to figure out what is causing these. It seems related to mirroring. I've got DDL logging on the server and I see lots of CREATE_EVENT_NOTIFICATION events happening, all...
November 23, 2010 at 8:23 am
I choose the "None of the above" option for a reason I haven't seen mentioned yet: snapshots are an Enterprise/Developer edition only feature. Therefore, on lower versions of SQL Server,...
November 15, 2010 at 12:42 pm
Nevermind.. I think I figured it out.. The constraints are ANDed, so Step 3 was never executing because the precedents from both Step 1 and Step 2 were never true...
November 9, 2010 at 8:41 am
I should also add there is nothing in the SQL logs at the same time these errors show up.
November 4, 2010 at 11:09 am
alen teplitsky (11/1/2010)
1. separation of duties. no devs can access production. IT can't access the development environment.
...
November 1, 2010 at 8:27 am
I've updated the Powershell portion of this routine to collect the total disk free space amount for the drives SQL Server uses. this also requires adding one column to the...
November 1, 2010 at 7:53 am
I gotta say, the best perks I ever had was when I worked for a company that made video games. We closed down between Christmas and New Years (and got...
October 27, 2010 at 2:06 pm
Trey - you in Arizona? I might have interviewed for your company about a year ago. I interviewed for two companies - one next to the Cold Stone building and...
October 27, 2010 at 9:42 am
I've done this fairly recently and will be doing it again in a couple weeks. As previously suggested, the upgrade adviser is really handy.
There are two things I would watch...
October 21, 2010 at 9:49 am
Ah.. the first error is, as it says, a foreign key violation. Change your entries in the ServersToCheckDiskStats table to have square brackets around the server names.
The second error was...
October 12, 2010 at 1:29 pm
Try changing the first part of the prodcedure to this:
/* Get a list of the servers to gather data from and their SQL version */
DECLAREServersCursor CURSOR FOR
SELECT'[' + ServerName +...
October 12, 2010 at 12:03 pm
Viewing 15 posts - 91 through 105 (of 133 total)