Forum Replies Created

Viewing 15 posts - 16 through 30 (of 177 total)

  • RE: Database design question

    You're describing a many-to-many relationship.  As you suggest, you want three tables: Subtest, Program, and SubtextXProgram.  (Just an example, choose your own naming convention.)

    The last table you describe would be...

  • RE: DB Backup files

    how do SQL know which and how old the backup file is so it can delete?


    SQL Server keeps track of the backups in MSDB. 

    As for why the old backups...

  • RE: DB Backup files

    how do SQL know which and how old the backup file is so it can delete?


    SQL Server keeps track of the backups in MSDB. 

    As for why the old backups...

  • RE: Comments on SELECT "AliasName" = ColName vs. AS

    This sounds like it may be a religious issue. I guess it all depends on what you're used to. I've always used ColName as AliasName and I've found...

  • RE: SQL Server 2000 Developer Edition

    quote:


    I have not toyed around much with Analysis Services yet, but what features are not available?


  • RE: Copy Database

    How often do you need to copy the data? Will the database on the test server be updated?

  • RE: Alternative to Derived Tables

    Thanks Frank. However, I'm really asking, is there a way to write this query without utilizing a derived table.

  • RE: Sub-Select Wierdness

    What RonClarke said.

    When I said that the subquery returns all the values in table1, I meant all of the values for the column specified in...

  • RE: Sub-Select Wierdness

    Let me clarify.

    Since the subselect evaluates as select code from table1, table2, you get a cartesian product. In other words, you get all of the values from table1 repeated...

  • RE: SQL Server 2000 Developer Edition

    I'm currently running SQL Server 2000 Developer Edition on XP Pro.

    Not all of the features of Analysis Services are available, but that's about it.

  • RE: Sub-Select Wierdness

    ThomasH, you are correct in that the subselect will evaluate to

    select code from table1, table2.

    That query returns no rows. Thus, including it in the main query will result in...

  • RE: Update table hangs

    We definately need more info as Frank Kalis and whoteegan point out. However, here's a shot in the dark. If the SP works well once or twice and...

  • RE: Record Size Limitation

    What is the structure of your table?

  • RE: QOD 12/31

    I was thrown by the same thing. None of the answers looked correct to me.

  • RE: Connecting to SQL Server Using a 'trusted id'

    I agree with whoteegan.

    Also, you can't use Windows authentication in this manner if there is a domain involved.

Viewing 15 posts - 16 through 30 (of 177 total)