Viewing 15 posts - 1 through 15 (of 295 total)
Age is not persisted, so it is 312.
But there is the "+2" per variable length column.
So 316... but for the wrong reasons
April 9, 2008 at 12:03 am
...except on Windows 2003...
Isn't file initialisation immediate?
In BOL:
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/1ad468f5-4f75-480b-aac6-0b01b048bd67.htm
October 19, 2006 at 6:53 am
"For a dedicated database server, the default memory settings for SQL Server should suffice."
Not sure I agree with this (the context is having AWE enabled)
This means a SQL 2000 instance...
October 16, 2006 at 1:09 am
You can't "strip off" time unless you store it as varchar.
The first post said it is a datetime column, ergo, it must store time but as 00:00:00.000
July 17, 2006 at 4:40 am
What about this: http://support.microsoft.com/kb/891311/en-us
Searching the MSKB for 17882 gives this:
Looks like a patch is your only option
March 28, 2006 at 10:13 am
What is wrong with gaps in your ID sequence?
Excluding other peoples views on ID columns (Joe Celko etc), the fact that gaps are causing you problems means you have design...
February 17, 2006 at 6:54 am
Have you enabled AWE in MSSQL without setting max memory etc?
You could be generating a lot of swapping between RAM and page file...
February 17, 2006 at 6:49 am
For 4GB on the server:
Enable /3Gb and leave to settle at 2.8GB ish (see this KB http://support.microsoft.com/default.aspx?scid=kb;EN-US;316749, SQL leaves 384MB out of 2-3GB). Trying to increase beyond 3GB will...
February 17, 2006 at 6:48 am
You don't get this error if you use local system - it's to do with the domain user account not having rights to register SPNs in AD. It happens on...
January 31, 2006 at 1:03 am
There is a post SP3a hotfix to fix this. It may 818, but best really to install SP4...
January 30, 2006 at 2:50 am
This is nothing to do with DTC or builtin admins.
Check out "Security Account Delegation" in BOL - your linked srv is trying to pass through your NT credentials
Edit for 2 posts at...
January 27, 2006 at 8:15 am
I may be being simple:
MSSQL will cache data (as mentioned).
This means your database will be run out of memory if all the data can be cached.
If you write to the...
January 17, 2006 at 1:53 am
I'm also not sure what you are trying to do but if you have several records where RMSTRANCDE = '10' and you want to return 0 for zero records and...
January 12, 2006 at 6:42 am
SELECT a.KeyColumn
FROM @tablea As a
LEFT JOIN (SELECT * FROM @tableb WHERE b.SomeColumn = 'B') b
ON a.KeyColumn = b.KeyColumn OR b.KeyColumn IS NULL
Use this (I have no SQL box...
January 10, 2006 at 1:39 pm
From personal experience, outer joins mostly give better performance.
I can't recall where it has been worse - the same, yes, but not worse.
Indexing, output columns (from one table or both),...
January 10, 2006 at 8:49 am
Viewing 15 posts - 1 through 15 (of 295 total)