Viewing 15 posts - 1 through 15 (of 19 total)
Great catch SSC.
SELECT
ProductID,
SUM(LineTotal) OVER (PARTITION BY ProductID) [ProductTotal]
FROM Sales.SalesOrderDetail
WHERE ModifiedDate = '07/31/2008'
December 5, 2013 at 11:51 am
Hi,
I ended up using PowerShell to create the DTC and was able to name it.
# Create MSDTC Resource
Get-ClusterGroup 'SQLServer(DB01)' | Add-ClusterResource -Name 'MSDTC-SQLServer(DB01)' -ResourceType "Distributed Transaction Coordinator"
Also, someone suggested...
May 1, 2013 at 10:11 am
Since you're on XP and using SSMS 2008, here's the file you should be looking for:
C:\Documents and Settings\<user>\Application Data\Microsoft\Microsoft SQL Server\100\Tools\Shell\SqlStudio.bin
September 3, 2010 at 10:02 am
To find the version of SSMS, open SSMS, go to Help, then About.
September 3, 2010 at 9:52 am
What version/edition of SQL Server Management Studio are you using?
September 3, 2010 at 9:44 am
If you are using Vista or Windows 7, it will be located here:
C:\Users\<username>\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell
Unfortunately, it's an all or nothing solution. Here's a reference:
September 2, 2010 at 2:12 pm
Unfortunately, yes. I've been a victim of this.
April 17, 2008 at 3:11 pm
Also, make sure you get a RAID Controller with Write Cache.
April 17, 2008 at 2:59 pm
Enable Trace Flag 1204:
DBCC TRACEON (3605,1204,-1)
This will enable all deadlocking info to be written to the SQL Server Error Log which should provide you with the info you...
March 7, 2007 at 10:55 am
Actually, SP1 is 9.0.2047.
9.0.2153 is SP1 + K918222 Hotfix.
March 1, 2007 at 4:30 pm
But, you can manage your SQL 2000 Instances in SS Management Studio.
Tim
February 28, 2007 at 11:30 am
January 11, 2007 at 3:38 pm
Got it to work. Thanks for your help.
Tim
November 8, 2006 at 11:36 am
It may be easier to not bother trying to restore master.
Just script out your user databases on your Cluster, then create the databases on your DR Instance (make changes to...
October 20, 2006 at 9:52 am
Wow. Works great. Thanks.
October 3, 2006 at 10:44 am
Viewing 15 posts - 1 through 15 (of 19 total)