Viewing 15 posts - 211 through 225 (of 1,412 total)
The /3GB switch alone would do this, but I guess you are saying that it is not set here?
October 6, 2005 at 3:56 am
Well don't quote me on it, but I think they are called row constructors in the ANSI-SQL standard. I can check it to confirm when I get home, unless someone...
October 6, 2005 at 3:06 am
Are you using 64-bit? How much memory do you have and recognise?
October 6, 2005 at 3:04 am
Jeff, yes that is exactly what I meant with being surprised to find an author more or less recommending people to use NOLOCK in all reads. I hope to cover...
October 6, 2005 at 2:51 am
How about there is simply a lot more data in production? But yes, it is of course possible that production is not optimized, but that is always a problem you...
October 6, 2005 at 2:48 am
The simple answer is no, this is not possible. You might try implementing some more or less badly working home-built solution for it, but I would not think it is...
October 6, 2005 at 2:47 am
You should still call BOL for BOL.
October 6, 2005 at 2:45 am
An .msi is installed by double-clicking it.
You could try downloading AdventureWorks from MSDN This download is for Express Edition, but I assume it is the same database and it...
October 6, 2005 at 2:44 am
A correlated subquery is a subquery that refers to the outer query. For instance:
SELECT *
FROM FOO<
WHERE EXISTS (
SELECT *
FROM BAR
WHERE BAR.x = FOO.y )
October 6, 2005 at 2:38 am
No, unfortunately SQL Server does not have row constructors. It is one of my top wished for items.
October 6, 2005 at 2:34 am
1. No, the latest version is September CTP, which will probably also be the final pre-RTM version.
2. Nov 7, 2005.
3. Dec 31, 2007.
October 5, 2005 at 5:02 pm
2. For historical logging of perfmon data you should save the file to a drive on the SQL Server.
In addition to that, remember that in XP and Server 2003 it...
October 5, 2005 at 5:00 pm
Remi is correct, and it is all in BOL. Start at http://msdn2.microsoft.com/en-us/library/ms245878
October 5, 2005 at 1:35 pm
Please do not crosspost. Continue this discussion in the other thread.
October 5, 2005 at 1:19 pm
What is the recovery interval set to?
EXEC sp_configure 'recovery interval'
October 5, 2005 at 1:17 pm
Viewing 15 posts - 211 through 225 (of 1,412 total)