Viewing 15 posts - 4,276 through 4,290 (of 7,168 total)
NaCl (4/27/2012)
not so sure i agree with setting all DB owners to SA.
This is a discussion Forum, all opinions are welcome. Care to share why not?
April 27, 2012 at 12:49 pm
Both are used for comparisons.
This makes no sense:
= (@maxdate = null)
And neither does what you tried to do:
like (@maxdate = null)
April 27, 2012 at 12:45 pm
Creating a 2 Node SQL Server 2008 Virtual Cluster Part 1[/url]
Creating a 2 Node SQL Server 2008 Virtual Cluster Part 2[/url]
April 27, 2012 at 12:13 pm
It should be painless, should be. I have installed SQL 2005 SP4 many times and never had an issue, but know that it is not uninstallable, so your rollback plan...
April 27, 2012 at 11:48 am
jitendra.padhiyar (4/27/2012)
For testing purpose I have Windows server 2008 Standard version too on my virtual machine with SP1. And I think it also does not support clustering. Bcos...
April 27, 2012 at 11:38 am
Your Version (Windows Server 2003) supports Clustering, but your Edition (Standard) does not:
Comparison of Windows Server 2003 Editions
If you stay with Server 2003 you would need to upgrade to the...
April 27, 2012 at 11:13 am
My guess is the VIEW is defined WITH SCHEMABINDING, meaning it has a link to the referenced table in the metadata and SQL Server ensures you cannot drop the underlying...
April 27, 2012 at 11:07 am
Sean Lange (4/27/2012)
April 27, 2012 at 10:57 am
Tripz (4/27/2012)
Thank You for the suggestion of using AND instead of WHERE in the LEFT JOIN, I updated my sp with those changes and the stored proc execution time reduced...
April 27, 2012 at 10:17 am
These three give the same result:
USE AdventureWorks2008R2
GO
SELECT sp.BusinessEntityID AS BusinessEntityID,
CASE WHEN sp.TerritoryID IS NOT NULL THEN e.OrganizationLevel
...
April 27, 2012 at 9:59 am
:w00t: yikes! Are you just writing this code and are done with the project, or do you also have to support the system after it is in production? Rethink, redesign!
April 27, 2012 at 8:25 am
mark.tait (4/27/2012)
April 27, 2012 at 8:18 am
dwilliscp (4/27/2012)
"Allowing SQL Server to use memory dynamically is recommended; however, you can set the memory options manually and restrict the amount of...
April 27, 2012 at 8:06 am
From msdn
Use max server memory to prevent the SQL Server buffer pool from using more than the specified amount of memory, thus leaving remaining memory available to start...
April 27, 2012 at 7:44 am
dwilliscp (4/27/2012)
April 27, 2012 at 7:40 am
Viewing 15 posts - 4,276 through 4,290 (of 7,168 total)