Viewing 15 posts - 1,201 through 1,215 (of 1,518 total)
coastliner (5/13/2008)
BTW I was always told of a 4GB limit on 32bit...
May 13, 2008 at 9:56 am
If you had AWE enabled, then it's no different than sql 2000.
Thanks for clarifying.
May 13, 2008 at 9:49 am
jim.powers (5/13/2008)
No, it was a 32-bit machine.
Unless you enabled AWE, that's mathematically impossible.
The 32-bit address space simply does not have the capacity to reach that kind of memory...
May 13, 2008 at 9:42 am
As Steve mentioned, it looks like long transactions are the main culprit here.
It may also be that the SQL code in your instance needs tuning.
Internal objects generated during query processing...
May 13, 2008 at 9:38 am
jim.powers (5/13/2008)
May 13, 2008 at 9:28 am
coastliner (5/13/2008)
May 13, 2008 at 9:20 am
Animal Magic (5/13/2008)
May 13, 2008 at 9:06 am
coastliner (5/13/2008)
Does it mean over 2 Billion...
May 13, 2008 at 8:48 am
I have managed to replicate SQLCLR objects using an SSIS package. A config table on the central db containing the SQLCLR objects is populated with the server instances and local...
May 12, 2008 at 3:02 pm
Aaron Nelson (5/12/2008)
It didn't eat up much CPU or I/O for us and virtually completely cleaned up our blocking issues.
I hoped that...
May 12, 2008 at 9:09 am
I had the exact same issue yesterday. 🙂
Run the following. I bet your schema is not "dbo".
SELECT TABLE_SCHEMA
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = 'yourTableName'
AND TABLE_TYPE = 'BASE TABLE'
May 10, 2008 at 5:57 am
Owner is probably not dbo.
What is the owner/schema of the table?
May 9, 2008 at 2:13 pm
george sibbald (5/9/2008)
I think your mistake was physically moving the tempdb files manually. Just ensure the new directory structure exists (actually if they don't alter database will fail), run alter...
May 9, 2008 at 2:04 pm
TheSQLGuru (5/9/2008)
Marios Philippopoulos (5/8/2008)
Also tempdb data files need to be on their own dedicated physical...
May 9, 2008 at 9:52 am
Microsoft best practices dictate that tempdb data files be made of equal size, on no autogrowth, in a separate physical device from other files. Also there should be (roughly) as...
May 9, 2008 at 9:02 am
Viewing 15 posts - 1,201 through 1,215 (of 1,518 total)