Forum Replies Created

Viewing 15 posts - 286 through 300 (of 5,678 total)

  • RE: Update records separated by group

    I'm a little confused to your request. What do you mean 'by group'?


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: High Queue in Service Broker

    There's a number of reasons your queue could be overloading.

    Not enough processing, no activation proc (or error), endpoint not responsive, conversations not ending (as above), ...

    Service Broker is an on-hand...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Are the posted questions getting worse?

    Lynn Pettis (6/25/2014)


    Really? Just because SQL Server setup defaults to a CI collation that makes it the "DEFAULT" collation?

    I give up.

    I gotta say "Yes." to that one, Lynn. ...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Never Stop Learning

    I believe my current signature speaks for my opinion on this article. If you come later and I've changed it, I agree, thoroughly.

    Good editorial Andy.


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Are the posted questions getting worse?

    Sean Lange (6/25/2014)


    Lynn Pettis (6/25/2014)


    Sean Lange (6/25/2014)


    Ed Wagner (6/25/2014)


    Koen Verbeeck (6/25/2014)


    Ed Wagner (6/25/2014)


    SQLRNNR (6/25/2014)


    Koen Verbeeck (6/25/2014)


    SQLRNNR (6/25/2014)


    Koen Verbeeck (6/25/2014)


    ChrisM@Work (6/25/2014)


    djj (6/25/2014)


    Just saw a post (on another site) that the person...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: can SSIS package replace stored procedure

    raja.payani (6/25/2014)


    can u help me with clear steps to do...

    As soon as you provide clear steps as to what you're already doing rather than a vague description. I left...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (6/25/2014)


    Yeah. I had this happen once in the SSIS forums. Some guy posted a solution for refreshing the metadata of the data flow.

    At runtime?


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Optimizing ORDER BY query

    Arijit, from a high level view, do I understand what you're doing here correctly?

    SourceSystem Proc with order by on output

    -> OleDB Data Source in SSIS with advanced editing and...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Seacrh Criteria Parameter Value

    To clarify, you're looking for a catch-all query?

    Something like:

    WHERE ( ID = @ID or @ID IS NULL) AND (Somedate = @SomeDate OR @SomeDate IS NULL)

    If so, look here:

    http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Processing of XML with OPENROWSET gives out of memory exception

    Try delivering it to an xml or VARCHAR(MAX) datatype variable first (SELECT @xmlVar = Stuff FROM OPENQUERY...) before shipping it along to the webservice.

    If I'm right, you can get that...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Full text indexing not finding a phrase?

    jasona.work (6/20/2014)


    The catalog is configured for Automatic change tracking, but we don't do scheduled rebuilds / optimizations of the catalog. Should we be doing such things?

    Yes.

    As of right now,...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Running total error

    pwalter83 (6/20/2014)


    I am trying to calculate running total in sql as its not giving me the desired result on SSRS (on the fly calculation).

    What's happening in the SSRS that you're...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: How to get execution response from DTEXEC command line?

    shafirmubarak (6/20/2014)


    thanks for your response. I appreciate that.

    I am using the batch file not the SQL agent. The batch file will be executed using an ESP job, so i have...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Job wasn't as described

    Does this location have strict separation of DBA vs. Dev duties? If so, it's possible they want a senior on site for the one-off "HOLY CRAP ITS ON FIRE!"...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Staging Database Question

    The answer is probably yes to both. If you're going cross domain there may be enough advantage to moving the database locally for simple convenience. There's enough network...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

Viewing 15 posts - 286 through 300 (of 5,678 total)