Forum Replies Created

Viewing 15 posts - 24,841 through 24,855 (of 26,484 total)

  • RE: Slow running Query

    I started looking at your query, and honestly, I gave up. You have a lot of subqueries that could be eliminated using joins in your FROM clause that would...

  • RE: Audit Table

    A trigger runs in the context of the transaction that fires it. If the trigger fails the whole transaction fails and rolls back.

  • RE: sql code

    I would have to agree with Steve.

    😎

  • RE: Boost TSQL query code

    Found another WHERE clause that should be changed:

    where year(ml.data)=2008

    to:

    where ml.data >= dateadd(yyyy,datediff(yyyy,0,ml.data),0) and ml.data < dateadd(yyyy,datediff(yyyy,0,ml.data) + 1,0)

    This would use the index I suggested in my previous post as well.

    😎

  • RE: Boost TSQL query code

    Here is my thoughts from a quick scan of your code:

    If the following index does not exist, I would create it:

    create index IDX_Balance on dbo.ml (

    data...

  • RE: Index Implementation Question

    Gail,

    Thanks for jumping in on this and doing some testing. I tried to set up a test myself, but my mind wasn't working right and the test data I...

  • RE: Index Implementation Question

    Steve F. (4/22/2008)


    For the sake of argument, suppose I have a 10-million-record table with no index at all. The fields in this table include DataWeek (a smalldatetime; 10 unique...

  • RE: Best file compression software?

    I agree, check out all the products, and select the best one based on price, performance, ease of use, support, and what ever other criteria management might throw in. ...

  • RE: Best file compression software?

    On the free side, we are using gzip. It works well also. we are using it to zip text files prior to being ftp'ed to a MSP.

    😎

  • RE: Best Price for 64bit 2005?

    Based on what I have read regarding Microsofts licensing, nope. With that number of users, per processor is the best way to go.

    😎

  • RE: Best Price for 64bit 2005?

    Not really, substitute the pricing for EE (approx $25K per processor), or for Oracle (I don't even feel like computing that).

    The key to deciding whether to purchase per processor or...

  • RE: Best Price for 64bit 2005?

    Looks good to me.

    😎

  • RE: Best Price for 64bit 2005?

    Microsoft goes by physical processor, not cores, so your server has 4 processors.

    😎

  • RE: CTE's are useless

    CTE's have the disadvantage that they need to be used in the statement immediately after they are declared after which they disappear.

    This is how they are designed to be used....

  • RE: Best Price for 64bit 2005?

    Microsoft doesn't use concurrent licensing anymore. The only options are per processor, user CAL's, or device CAL's. And, as was mentioned earlier, if you are using a middle...

Viewing 15 posts - 24,841 through 24,855 (of 26,484 total)