Forum Replies Created

Viewing 15 posts - 226 through 240 (of 1,412 total)

  • RE: Object naming

    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...

  • RE: Justifying 2005 purchase

    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...

  • RE: Help with SQL Server 2005 Isolation Hint Info

    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...

  • RE: Help with SQL Server 2005 Isolation Hint Info

    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...

  • RE: Help with SQL Server 2005 Isolation Hint Info

    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,...

  • RE: Tuning of the SQL Server database page sizes and cache sizes

    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...

  • RE: SQL Server 2005 Sept CTP

    The answer to all these questions: CTP Madness

  • RE: Table usage history

    But you cannot trigger for reads. You will need to trace with Profiler or similar for this information.

  • RE: Table usage history

    What do you mean by used? There is no information created automatically about when the data in a table was read and/or modified.

  • RE: SQL Server not using all of its memory.

    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...

  • RE: sql log

    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.

  • RE: Memorable Signatures

    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

  • RE: insert - select not ordering data properly

    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...

  • RE: Maximum file size for SQL db

    Just to clear myself: I am not saying you should never store files inside the database. Neither am I saying you should. It dpends.

  • RE: Maximum file size for SQL db

    The max size for blob data is 2GB. Whether you should store files that big or not is a different question.

Viewing 15 posts - 226 through 240 (of 1,412 total)