Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: F5 Problem

    Do you have a keyboard with an "F-Lock" key? If F-Lock is off, the default for F5 is the open file dialog.

  • RE: Authentication Mode

    Using Enterprise Manager, right click on the server, select properties, then select Security Tab.

     

    Hal

  • RE: Design Dilemma

    Actually simple. I just union the current log table and the history log table in any select that needs information from the complete history. BOL has good examples of Union.

     

    Hal

  • RE: Design Dilemma

    Actually, yes this log can grow quite large depending on the volume. We archived the log file monthly by appending it to a table on our data warehouse (it generaed about 50k records...

  • RE: Design Dilemma

    I didn't include any foreign keys to this table. I of course used foreign keys in the user tables but for this log table I wanted exactly what was changed...

  • RE: Design Dilemma

    I worked in a situation where knowing in detail what was changed in a database was critical. I used a single log table to capture all inserts and updates to...

  • RE: Database with no visible name

    Look up -

    system tables, direct updates

    in BOL. This will show you how to alter system tables

     

  • RE: script showing users

    If you change the set statement from:

      SET @sql=N'SELECT name FROM '

    to:

      SET @sql=N'SELECT name as ' + @db + ' FROM '

    it makes it easier to distingush the...

Viewing 8 posts - 1 through 8 (of 8 total)