Forum Replies Created

Viewing 15 posts - 5,686 through 5,700 (of 6,104 total)

  • RE: Multi-protocol encryption

    Probably one of the easiest ways is by using NetMon or some similar network sniffer package. NetMon and Sniffer Pro can both understand and translate TDS packets (Tabular Data...

    K. Brian Kelley
    @kbriankelley

  • RE: AWE Memory and SQL Server 2000 Enterprise

    In addition to what Andy has said, there is some additional guidance in Books Online. Though I'm going to agree with Steve that unless there's a hard and fast...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2000 Log File Backup and Truncation

    In SQL Server 7, it depends where the active portion of the log is. If it's towards the end, there won't be much shrinkage. In SQL Server 2000,...

    K. Brian Kelley
    @kbriankelley

  • RE: Errors with NoLock

    There are 3 million records in the table, but:

    a) How often does "data movement" happen?

    b) How many rows are affected?

    c) What is the average duration?

    I've run into this problem at...

    K. Brian Kelley
    @kbriankelley

  • RE: Make sure your Host backs up SQL!!!

    You'll need to look very closely at your terms and agreements. In many cases they have clauses that waive all liability. A couple of our clients had this...

    K. Brian Kelley
    @kbriankelley

  • RE: how to upgrade DTS libraries on SQL 7

    8.00.194 SQL Server 2000 RTM

    8.00.384 SQL Server 2000 SP1

    8.00.532 SQL Server 2000 SP2

    K. Brian Kelley

    bkelley@sqlservercentral.com

    http://www.sqlservercentral.com/columnists/bkelley/

    K. Brian Kelley
    @kbriankelley

  • RE: how to upgrade DTS libraries on SQL 7

    Run a SELECT @@VERSION to verify. What you may need to do is reapply the service pack. One thing that did change between the various SP versions is...

    K. Brian Kelley
    @kbriankelley

  • RE: MacAddress network card

    If you need to know the MAC address of the SQL Server box, connect to it using Query Analyzer. Then run the query, putting in the name of the...

    K. Brian Kelley
    @kbriankelley

  • RE: Errorlog file

    The log files are there for your own protection, so it's generally not a good idea to turn logging off. With respect to dealing with the log files, you...

    K. Brian Kelley
    @kbriankelley

  • RE: MacAddress network card

    Neither does mine, but that's not a big deal. Just drop from the AND on... Try this:

    
    
    SELECT DISTINCT net_address
    FROM sysprocesses
    WHERE hostname = '[Your computer...

    K. Brian Kelley
    @kbriankelley

  • RE: how to upgrade DTS libraries on SQL 7

    Here are the versions that I have:

    SQL Server 7 RTM (7.00.623) - File Version 1998.11.13.0

    SQL Server 7 SP1 (7.00.699) - File Version 1999.5.15.0 (I think this one is right)

    SQL...

    K. Brian Kelley
    @kbriankelley

  • RE: Creating a default constraint

    The following works:

    
    
    DECLARE @Table sysname

    SET @Table = 'Customers'

    EXEC('Use Northwind; SELECT * FROM ' + @Table)

    But I admit I've...

    K. Brian Kelley
    @kbriankelley

  • RE: Binary & image columns and unused space

    DBCC SHRINKDATABASE and DBCCSHRINKFILE will shring the data files, but may not necessarily shrink the log files, because the active portion of the log may be at the end of...

    K. Brian Kelley
    @kbriankelley

  • RE: how to upgrade DTS libraries on SQL 7

    They didn't come from Visual Studio Service Pack 5. They aren't in the file list. Both versions are running the same service pack? Did you install the...

    K. Brian Kelley
    @kbriankelley

  • RE: Why did you decide to become a DBA/SQL Programmer?

    I think one of the factors is that there aren't a lot of DBA slots for entry level. I was doing a search for Oracle jobs in the DC...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 5,686 through 5,700 (of 6,104 total)