Forum Replies Created

Viewing 15 posts - 56,026 through 56,040 (of 59,078 total)

  • RE: sorting an alphanumeric field

    Correct... in a properly designed database, the assemblies and sub-assemblies would not only be separated, but they would be "normalized" as well.  Separate table would also be present to identify...

  • RE: Database structure question

    That's why I'm saying you've gotta normalize it... you can submit the answers to the questions all at the same time, just not all in one row.  Your current design...

  • RE: Locking question

    I guess I should explain the other reasons why this is gonna "suck" and why I don't think this resembles a relational database... you're using RBAR (pronounced "ree-bar" and is...

  • RE: Locking question

    Heh... we had something similar that a 3rd party built into their part of our database... 640 average deadlocks per day with spikes to 4,000

  • RE: Database structure question

    Even though SQL Server 2000 doesn't have a pivot function, it's pretty darned easy to make one.  So, don't let the lack of a pivot function make you do something...

  • RE: group by period of time

    Heh... it wouldn't be just me that gets annoyed... some folks get downright rude about cross posting.

    Anyway, glad to help and thanks for the feedback.

  • RE: sorting an alphanumeric field

    Thanks for the example of what this type of sort might be used by... brought back some memories of how the Navy designates assemblies and sub-assemblies (A4A1A13CR5).  Also, might need...

  • RE: group by period of time

    First, it really ticks folks off when you double post like you did... this is one place where you do need to put all your eggs in one basket... keeps...

  • RE: Dates between two dates

    A bit late with a response... but you do understand that temp tables are automatically dropped when the session that created it ends?

  • RE: Indentifying Recovery Mode via Query Analyzer

    Just to add to the above... In SQL Server 7.0...

    If neither Item 4 or 8 are set, that's the equivelent to FULL recovery.

    IF Item 4 is set and Item 8...

  • RE: Data type for Credit Card

    Ah... got it... sorry, Remi... thought you lost your mind for a minute   I should have known better.

  • RE: sorting an alphanumeric field

    Bill,

    Slight "lull" in the action here so I thought I'd check... was your question answered or did you have something else in mind?  And, I didn't get the chance to...

  • RE: Date Conversion

    Heh... thanks for the feedback, David.

  • RE: Date Conversion

    Substitute your date column or date variable for GETDATE() in the following...

     SELECT DATEADD(yy,DATEDIFF(yy,0,GETDATE()),0)

Viewing 15 posts - 56,026 through 56,040 (of 59,078 total)