Forum Replies Created

Viewing 15 posts - 31 through 45 (of 92 total)

  • RE: SQL Server VS. Oracle - Making the Argument...

    AS a DBA who uses SQL 7, and SQL 2000 as well as Oracle 8i for our ERP system, I can only say that I find that there is not much...

    Nigel Moore
    ======================

  • RE: Can some one suggest

    When you have worked out what indexes you need if at all possible place them on a different disk to your datafiles, with your log files on yet another disk...

    Nigel Moore
    ======================

  • RE: TCP Listener

    ListenOn connection '1433' is already in use..

    was recorded in log.

    Nigel Moore
    ======================

  • RE: Removing Duplicates

    Firstly you need a unique row identifier for each row add an identity field

    
    
    SELECT *
    From yourTable
    WHERE Operating_System = '2000'
    AND Processor_Speed >=500
    AND Location <>...

    Nigel Moore
    ======================

  • RE: Access Massivly faster than SQL Server [Long Post]

    I'm not sure where you are getting your list of postcodes from but could you not use DTS to import the list into a table ??

    Nigel Moore
    ======================

  • RE: Object Level Permissions

    You could use SQL DMO.

    Nigel Moore
    ======================

  • RE: Dumb Question...but I'm stuck!!!

    BOL is Books Online (SQL Help files)

    Nigel Moore
    ======================

  • RE: Access Massivly faster than SQL Server [Long Post]

    IN should only be used for short lists. It is not very efficient. Put the list of postcodes into a table and inner join to your indexed postcode column on...

    Nigel Moore
    ======================

  • RE: Output to file

    Bill is right DTS is the way to go.

    Very powerful, yet simple to use. Its always my first port of call for any SQL import/export issues.

    Nigel Moore
    ======================

  • RE: How to pronounce SQL

    Life is short, too short too worry about the pronounciation of SQL.

    Nigel Moore
    ======================

  • RE: preventive question

    This should be part of your disaster recovery planning.

    A database will be marked as suspect if any of the following conditions is true:

    ƒÞ If one or more database files is...

    Nigel Moore
    ======================

  • RE: Too large diffrential bacup file

    Strange... but if the Differential backup is so large does it take a long time to do (longer then a full) and likewise with the restore?? If so why not...

    Nigel Moore
    ======================

  • RE: Worst Practice - Bad Comments

    Version control?

    I've seen production servers where retrieving an older veriosn of stored proc. would mean getting the backup of the night before and recreating the database.

    Nigel Moore
    ======================

  • RE: Enable SQL Mail on ss2k & Lotus Notes

    BE 100% sure to test sending emails with Lotus while logged on as the account that SQLServer will use to send mail before going near the actual SQL Server configuration....

    Nigel Moore
    ======================

  • RE: Setting transaction isolation level inside SP

    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

    This is the least restrictive available. You may see locks still in Enterprise manager Management -> Current activity -> lock/process Id but that is too...

    Nigel Moore
    ======================

Viewing 15 posts - 31 through 45 (of 92 total)