Viewing 15 posts - 226 through 240 (of 1,412 total)
I for one can not understand why people want to differentiate between tables and views using prefixes. They are not different! For instance, consider this common scenario:
You have a table...
October 5, 2005 at 7:36 am
If you look downt the FIX list for SQL2000 SP4 + the AWE cockup hot fix you will see that a number of fixes are for improving slow running queries.
I...
October 5, 2005 at 2:02 am
Because allowing dirty reads means the data integrity might be compromised. What if someone makes a decision based on incorrect data? Databases are used not for performance, but for protecting...
October 5, 2005 at 12:54 am
BOL does refer to "some exceptions", so it is not quite contradictory. I had not heard specifically that NOLOCK would need to be specified using WITH, just that table hints...
October 4, 2005 at 3:33 pm
I have also heard that, or at least something similar. However in September CTP it is possible to specify NOLOCK without WITH, although you must use parentheses. Like so:
SELECT foo,...
October 4, 2005 at 12:39 am
You are mostly right. Page sizes cannot be changed, and cache size cannot be changed directly (though indirectly by modifying the entire amount of memory available to SQL Server). The...
October 3, 2005 at 8:33 am
The answer to all these questions: CTP Madness
September 26, 2005 at 2:07 am
But you cannot trigger for reads. You will need to trace with Profiler or similar for this information.
September 26, 2005 at 2:03 am
What do you mean by used? There is no information created automatically about when the data in a table was read and/or modified.
September 25, 2005 at 12:20 pm
It was the awe setting that took you from 1.8 to 5.1 GB ram. That is for sure. Now, here is a guess: the /3GB switch might be a problem...
September 24, 2005 at 12:42 pm
Have you checked the -e startup parameter that SQL Server is started with? Maybe you are not looking at the path that SQL Server uses for it's error logs.
September 24, 2005 at 1:57 am
There was some Latin signatures earlier, so I guess I'll chip in with my favorite:
Quid quid latine dictum sit, altum viditur
And the one I live by:
Docendo discimus
September 9, 2005 at 4:55 pm
There is no such thing as a specific order in a set of tuples (which is more or less what a table represents). If you need the data to be...
September 9, 2005 at 3:48 am
Just to clear myself: I am not saying you should never store files inside the database. Neither am I saying you should. It dpends.
September 9, 2005 at 3:46 am
The max size for blob data is 2GB. Whether you should store files that big or not is a different question.
September 9, 2005 at 1:42 am
Viewing 15 posts - 226 through 240 (of 1,412 total)