Viewing 15 posts - 541 through 555 (of 1,271 total)
Forget DBCC TimeWarp. I just discovered DBCC PayIncrease.:-P
February 18, 2010 at 6:09 am
For a DWH, I would not put Analysis Services (Cubes) and the Datawarehouse on the same server. I'd go with 3 servers here.
February 18, 2010 at 6:00 am
The problem is clearly defined in the error message. You're not passing in the @user parameter which is a required parameter.
xp_findnextmsg: Procedure expects parameter @user, which was not supplied.
xp_readmail: Procedure...
February 18, 2010 at 5:51 am
Lynn Pettis (2/16/2010)
Servers are not principal, databases are. Database Mirroring is at the DATABASE level, not the SERVER level.
Actually, the terms "principal" and "mirror" are used to describe both...
February 18, 2010 at 5:30 am
The problem with this scenario isn't the load that the mirrors put on the server. The problem is what happens if you have to fail over all databases to the...
February 18, 2010 at 5:23 am
paul.knibbs (2/17/2010)
Wouldn't you be better off looking at some means of throttling the log shipping traffic if it's hogging all your bandwidth?
You can also upgrade to SQL Server 2008 and...
February 17, 2010 at 4:47 am
Occam's razor says that the obvious answer it ususally the correct one.
It's a simple fix. You simply need to schedule the process to occur more often. That's it. You don't...
February 15, 2010 at 11:36 pm
If your differential backup is almost the same size and takes almost the same amount of time, then almost your entire database is getting updated in between. If you are...
February 15, 2010 at 11:30 pm
Well said, SQLGuru!! I think many of us were thinking it and just not saying it.
February 15, 2010 at 11:22 pm
Using nolock is helpful, but using rowlock won't help.
SQL tries to use rowlocks for inserts, deletes, and updates. And if SQL thinks that it needs to escalate the lock, it...
February 15, 2010 at 4:35 pm
Whether it is a table problem or a query problem, the next step is the same. Like you said, identify the queries having problems and figure out why.
February 15, 2010 at 4:20 pm
Did you notice which database it is in? Using the above query, the database ID is the first number in the resource_description column. You can get the name of the...
February 15, 2010 at 4:00 pm
Also, what game is it? If it's one that some of play, someone may be willing to donate their time so that their game will run faster. 😀
February 15, 2010 at 3:47 pm
What database is experiencing the page latch waits? If it is in tempDB, then this could be a sign of tempDB contention, and I would not be surprised if your...
February 15, 2010 at 2:03 pm
You can switch to asynchronous using the Alter Database command on the principal server:
Alter Database <DB Name> Set Partner Safety Off;
And then to switch back:
Alter Database <DB Name> Set Partner...
January 29, 2010 at 12:30 pm
Viewing 15 posts - 541 through 555 (of 1,271 total)