Forum Replies Created

Viewing 15 posts - 1 through 15 (of 19 total)

  • RE: Managing Max Degree of Parallelism

    I do have one question that I never resolved in my own mind - how does MAXDOP work with HyperThreaded CPU's?

    If, for instance, on a Dual-Xeon/P-IV system, SQL Server thinks...

  • RE: Index Creation Guidelines

    I think rather than everyone chipping in there, somebody should make that the next article topic!

    I remember in the MCP study guide for SQL database & design, there was a...

  • RE: Anyone running SQL Clusters on NAS?

    One article I read on this topic (quite some time ago) is regarding the latency of the connection.  Even though you may be connected through a Gigabit LAN, with a...

  • RE: Index Creation Guidelines

    A good article.  I think one small oversight is the use of "Covering Indexes" - if I am using the correct term.

    The concept is using a composite index to return columns...

  • RE: Max number of rows for a table

    and then you can create a compound key of two bigint fields.  that's a lot of unique values, but i'm sure you've already considered that!

  • RE: Server Upgrade / Migration

    Yep again, I attempted a single user mode restore and it went belly up because it didn't like the fact that the user database weren't where they were expected. ...

  • RE: Server Upgrade / Migration

    Yep, they'll both have the same name. In the event of disaster recovery I would plan for Server B to have the same name as Server A.

    I just had...

  • RE: TIMESTAMP not unique! help!

    Microsoft to the rescue!

    After modifying my script to determine the maximum Timestamp value in the database, I ran

    Select @@DBTS

    to show what the current timestamp value is for the database. ...

  • RE: TIMESTAMP not unique! help!

    I seem to have isolated the problem. One of the other developers said the problem came up again so I checked it out in more detail... this time with...

  • RE: TIMESTAMP not unique! help!

    Timestamps are unique across an entire database, that I'm quite sure of.

    *scratches head*

    To be honest I can't remember the database having to be restored at any point in the last...

  • RE: TIMESTAMP not unique! help!

    I've managed to pull an old backup.

    I'm a little disappointed I didn't get more commment on this issue.

    It's actually quite interesting, since the two records in question were written around...

  • RE: TIMESTAMP not unique! help!

    Shame it happened on a production system, as I couldn't resolve it at my leisure. We had to manually update the record to force the Timestamp value to update...

  • RE: Cursors - Are they always the wrong way

    Remember the 90-10 rule. 90% of the code runs only 10% of the time, and 10% of the code runs 90% of the time.

    Why sacrifice readability for a piece...

  • RE: Scalability Requirements

    I didn't realise that SQL Standard couldn't handle 2GB properly? I was always under the impression that it could easily address up to 4GB?

    And what in particular regarding SAN's...

  • RE: SET vs SELECT

    One thing to note in using Set RowCount is that I have seen a lot of examples where people set it at the top of a stored procedure and then...

Viewing 15 posts - 1 through 15 (of 19 total)