Forum Replies Created

Viewing 12 posts - 31 through 43 (of 43 total)

  • RE: query timeout

    How are you connecting to the server? ADO?

    Here is an ADO connection that sets the timeout.

    Set cn = New ADODB.Connection

    cn.ConnectionTimeout = 60

    cn.CommandTimeout =...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: How can I do dirty reads??

    It should be faster if other concurrent accesses to the table(s) were getting locked out. The trade off is concurrency versus data integrity.

    By lowering the isolation level you are...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: Resume (Irvine, CA)

    (Cont. Part 2 of 2)

    1996-1998Olicon Imaging Products, Inc. Responsible for the design and implementation of MS-SQL database to track medical images for product under FDA approval. Designed and...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: The Dot Com Bust - Part 2

    Lee,

    As a programmer and a DBA let me acknowledge that there are some programmers that do know their way around a database from both a design and administrative viewpoint. ...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: The Dot Com Bust - Part 2

    1) LOL SQL# (Shouldn't that be SQL#.Net++)

    2) Ask any DBA worth their salt and they'll tell you that programmers don't understand databases. In particular, they don't understand the...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: Worst Practices - Objects Not Owned by DBO

    How to make sure that the objects created are owned by dbo:

    1) What we do - You can specify the owner name as part of the create statement. (e.g. CREATE...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: filegroups

    This link leads to a DMO based application that can be used to move indexes from various

    filegroups.

    http://www.ocsqlsug.org/

    Look under the Downloads section.

    HTH

    Steve Hendricks

    shendricks@afsconsulting.com


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: milliseconds datetime format in vb

    Why would you want to express millisecond, a three digit quantity, in six digits? The system clock only has a granularity of approximately three milliseconds. The extra digits...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: Location of indexes

    If you need to move a few indexes, Enterprise Manager will let you change the location. Bring the table up in Design mode, show the "Table and Index Properties",...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: Review: Microsoft Baseline Security Analyzer

    I have found that the tool will sometimes return a false negative. After using the tool to find the missing patches, I have applied the patch and re-run the...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: Getting the Most out of SQL Server 2000's Query Analyzer, Part I

    The preamble intrigued me because it mentioned new Query Analyzer features would be covered. Instead, we are covering SQL security modes (regardless of Query Analyzer) and how to resolve...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

  • RE: SQL-DMO Index vs Key

    Andy,

    Thank-you. This is useful information.

    The .GetIndexedColumnDESC is in the Object Browser (Surprise! Surprise!). I must have been blurry-eyed when I was trying to find this.

    It looks like the...


    Steve Hendricks
    MCSD, MCDBA
    Data Matrix

    shendricks@afsconsulting.com
    (949) 588-9800 x15

Viewing 12 posts - 31 through 43 (of 43 total)