Forum Replies Created

Viewing 15 posts - 406 through 420 (of 479 total)

  • RE: Server Pricing - what the!?

    I must admit its a tricky one, the cost of downtime because you tried to have some money on the hardware would be difficult to explain to your manager on...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Fixing Your Identity

    Hi Steve

    Yep, just submitted it. Funny enough, a lot of SS developers seem to think that identities for EVERY table is a great solution because it means less coding...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Fixing Your Identity

    Hi there

    I use this before running my data migration scripts for the bazillionth time...

    SELECT 'DBCC CHECKIDENT (' + o.[name] + ', RESEED, 1)'

    FROM syscolumns c

    INNER JOIN sysobjects o ON o.[Id]...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Need help with Index basics

    Hi

    I take the following approach:

    a) P-keys are mandatory (dont cluster them unless they are cluster friendly and you will get the maximum benefit from them as its 1 per...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: SQL Server VS. Oracle

    Hi all

    Having come from the world of Oracle, SQL*Server 7 and 2k has been very impressive indeed. Under NT, I firmly believe SQL*Server is the only choice as Ive...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Some Useful UDFs for SQL Server 2000

    Hi there

    Coming form an Oracle world, UDF's are very restrictive and tend to be a half cocked effort. I have this sneaking feeling that MS is not expending much...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: DBCC pintable

    I use it quite a bit and have noticed a small benefit. I have a range of security lookup tables etc and various reference data tables that I pin...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Worst Practices - Depending on the GUI

    All I can say is... "dont make your life harder that it needs to be!"

    Anyone who thinks coding t-sql, dmo, pouring over scripts manually is FUN and its necessary to...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Worst Practices - Depending on the GUI

    Hi all

    Good article Steve. I come from the Oracle world where a decent GUI was something i longed for over many years (for the record, Oracle enterprise manager and...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: SQL Profiler - tracking only SELECT

    Steve

    Thanks steve, I swear I played around with this and didnt seem to pick up everything.

    I will give it another burl.

    Cheers

    Chris


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: SQL Processors & Full Text Catalogs

    Hi

    Are you sure its doing incremental updates? have you got a timestamp column?

    if not then incrementals will not work. On my server the disks get thrashed and CPU's...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Best Practices on the Web

    Hi guys

    We have the following in prod:

    internet

    |

    firewall

    |

    ssl box

    |

    webserver (163.232.x)

    |---------------domain controller (163.232.x)

    sqlserver (10.10.10.3 private network)

    |

    disk-farm

    we run a totally seperate domain for our prod environment, away from

    the existing domain...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Executing a script from SQL Server

    Steve

    Hi Steve, I ment something like this:

    truncate table infile_list

    set @v_commandline = 'dir /B ' + @v_processeddest + '*.unl'

    insert into infile_list

    exec @result = master..xp_cmdshell @v_commandline

    Where ive sent the output of the...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: (DTS) - multiple dynamic connections

    Hi

    Although all possible via DTS, I tend not to use it as a "solution for anything that needs to be scheduled", although this will (perhaps) slowly change over time. ...


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

  • RE: Using OPEN QUERY against ADS

    1000 rows is not only a limitation but a bug as far as im concerned 🙂

    any ideas on another way to expose AD via views to app users?


    Chris Kempster
    www.chriskempster.com
    Author of "SQL Server Backup, Recovery & Troubleshooting"
    Author of "SQL Server 2k for the Oracle DBA"

Viewing 15 posts - 406 through 420 (of 479 total)