Forum Replies Created

Viewing 15 posts - 361 through 375 (of 921 total)

  • RE: Max Memory - Enterprise, W2K AS, W2003 EE

    quote:


    we've got way too much Compaq stuff and zero IBM in house, and way too little staff, to change right now.


  • RE: Max Memory - Enterprise, W2K AS, W2003 EE

    quote:


    Ok, if I spend the $ for SQL EE why not go with more memory? Is it because you think it...

  • RE: Alternative to NOT IN

    A self-join won't really help because you'd still need to exclude the rows with any IDFromTable1 where IDFromTable2 is excluded. If you don't already have one, try putting an...

  • RE: Max Memory - Enterprise, W2K AS, W2003 EE

    Again I'll be iconoclastic with my (gratuitous) advice. If you are ready to spend enough money to buy 32GB on a server, and this is not a mission-critical (i.e....

  • RE: Returning Null Results

    I'm going to guess that the query against the larger table exceeds the cost threshold for parallelism (while the smaller does not), causing this problem. Try using the MAXDOP...

  • RE: Why is Robert's topic (forum?) locked

    quote:


    What is NDA?


    That's the Nondisclosure Agreement that one must sign in order to get the...

  • RE: ANSI_NULLS

    quote:


    Why is the behavious different when comparing columns in a select statement, as oppose to comparing variables?


    December 6, 2003 at 12:35 pm

    #484998

  • RE: Rollback Transactions

    You're not doing anything wrong; that's how the identity property works. For this reason, one should not rely on the identity property always incrementing without gaps. Think of...

  • RE: Trigger

    quote:


    quote:


    Your two "answers" seem to be for a different question from that asked...

  • RE: Trigger

    quote:


    I think one ship_location can accept more than one shipper


    That's what...

  • RE: Tracking Blocking

    Have you read the relevant MS Knowledge Base articles, e.g. How to Monitor SQL Server 2000 Blocking?

    --Jonathan

  • RE: SCAN ALL TABLES FOR A FIELD NAME

    
    
    SELECT Table_Schema + '.' + Table_Name
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE OBJECTPROPERTY(OBJECT_ID(Table_Name),'IsUserTable') = 1
    AND Column_Name = 'YourColumnName'

    --Jonathan

  • RE: Trigger

    If this is SQL Server 2000, I'd use a UDF with a constraint, but if you've got to use a trigger, perhaps something like this:

    
    
    CREATE TRIGGER...
  • RE: Formated (Pretty) Decimal SELECTion

    
    
    CAST(LTRIM(STR(@Tax1,9,6-PATINDEX('%[^0]%',REVERSE(@Tax1)))) AS char(16))

    --Jonathan

  • RE: default date format

    quote:


    quote:


    Quick brainteaser for our beginning DBA's: what's the quickest method to strip out...

Viewing 15 posts - 361 through 375 (of 921 total)