Forum Replies Created

Viewing 15 posts - 24,916 through 24,930 (of 26,490 total)

  • RE: Help with Execute Process Task

    We use an Execute Process Task to zip a set of txt files before they are transferred to a MSP. The attached document shows how we have setup the...

  • RE: Database Mail Reply To account

    Jack Corbett (4/7/2008)


    Accroding to Wikipedia:

    A software development acronym for Quick Fix Engineering. This is the Microsoft and Intel term for a hotfix

    ASP - Active Server Pages

    Yes it means that there...

  • RE: Database Mail Reply To account

    Okay, I'm old and really tired of all the TLA's everyone throws around under the assumtion that we all remember what they are (for example what is ASP, and there...

  • RE: Automatic execution of a query

    Sounds like a scheduled job to me. I'd encapsulate the process in a stored proc, and then execute the proc in a scheduled job.

    😎

  • RE: best way to detect locking

    Earlier today my BufferHitCacheRation was down to an average 75 for a good 30 minutes, and the alert never fired.

    We did find the solution to our slow PO performance issue;...

  • RE: Largest Unit

    I'd actually have to agree that all 4 are correct. I left out 10^24 as I didn't realize that 10^24 = 1000^8. I based my answer on the...

  • RE: best way to detect locking

    Jack,

    you said:

    U have it configured to respond via email at 5 minute intervals and it is. I actually modified it to rises about 40 and I just got another....

  • RE: Mutually contradicting where clause

    No, No, really, this would be good:

    Are these two queries equivalent?

    select

    *

    from

    dbo.MyTable

    and

    select

    *

    from

    dbo.MyTable

    where

    ...

  • RE: Mutually contradicting where clause

    GSquared (4/3/2008)


    Don't feel stupid. The computer version of "and/or" throws a lot of people. Takes a while to get used to.

    And just wait until you start having to...

  • RE: Mutually contradicting where clause

    Matt Miller (4/3/2008)


    Lynn Pettis (4/3/2008)


    If your table had 10 rows whaere ID = 1 and 10 rows where ID != 1, your query would be thus

    select * from MyTable

    if you...

  • RE: SQL help

    Here is some test code I threw together. Take it and play!

    create table #MyTable1 (

    BeginRange decimal(18,0),

    EndRange decimal(18,0),

    RangeDescription...

  • RE: Looking for COMPLETE guide/manual on basic SSIS Package Creation

    As I said, that is the book I used when I wrote my first SSIS package. I had no experience or training using SSIS prior to that, just my...

  • RE: best way to detect locking

    Jack,

    Okay, I'll have to reverify how I have it setup tomorrow. I'm not at work today due to car problems (darned thing was running fine last night, but this...

  • RE: Looking for COMPLETE guide/manual on basic SSIS Package Creation

    A good book I'd recommend is Professional SQL Server 2005 Integration Services published by Wroks. I found that book extremely useful when writing my first SSIS package, and both...

  • RE: Mutually contradicting where clause

    where ID = 1 and ID != 1

    Okay, let's put this query into words. I want all rows where the ID equals 1 AND the ID does not equal...

Viewing 15 posts - 24,916 through 24,930 (of 26,490 total)