Viewing 15 posts - 1 through 15 (of 16 total)
Lynn Pettis (10/7/2009)
You might want to look at using a Linked Server.
Still wants a mapped drive.
October 7, 2009 at 2:42 pm
Been there, done that, got the t-shirt. Run into a number of apps that "think" they need sa. Every time, we've managed to cut their permissions to db_owner at most...
August 18, 2009 at 9:09 am
Steve (8/11/2009)
August 11, 2009 at 12:24 pm
Issuing a RECONFIGURE will make the memory settings take effect.
August 11, 2009 at 11:00 am
This takes one table in master, two stored procedures, and one job that is set to execute on startup and calls the first stored procedure ([master].[dbo].[auto_MemoryReconfigure]). I set the...
August 11, 2009 at 10:30 am
If anybody's interested, I figured out how to rebalance the memory on a cluster. I can use almost all the memory on each node, and still handle a failover. I've...
August 11, 2009 at 9:32 am
Steve (7/23/2009)
July 23, 2009 at 11:08 am
We're running 2 instances on each node in a cluster (and I wish we weren't). Between trying to balance the disk space (no SAN either) and the memory, its...
July 23, 2009 at 9:26 am
Yes, you can add another virtual disk. I had to build it "outside" the cluster group that SQL was in, then add it in as a cluster group resource. Once...
March 18, 2009 at 7:36 am
Ok, here's the recovery procedure we use. It does make use of some custom scripts to restore. Some of the scripts are run during the every day backup and maintenance...
February 9, 2009 at 7:07 am
We've got a full document that starts from the point of a loss of the cluster. I'll have to see if it can be posted. Basically, the document starts from...
February 2, 2009 at 7:09 am
TheSQLGuru (5/12/2008)
The first statement is a wive's tale. ...
May 13, 2008 at 7:30 am
HOLY CRAP! :w00t::w00t::w00t::w00t: I rewrote the query based on Jeff's Running Total post, and it went from 8 hours to 6 seconds! Jeff, I bow down before you! THANKS!!!!!!!
--===== Build...
May 2, 2008 at 1:20 pm
rbarryyoung (4/30/2008)
...
SELECT @@fetch_status
WHILE @@fetch_status = 0
BEGIN
IF @ChkItem <> @CumItem
BEGIN
Set @ChkItem = @CumItem
Set @mCid...
May 1, 2008 at 9:57 am
Ok, my bad. I was in a hurry last night, and didn't get everything in the shape it should have been. Here's a full script end to end that will...
May 1, 2008 at 9:53 am
Viewing 15 posts - 1 through 15 (of 16 total)