Forum Replies Created

Viewing 15 posts - 1,411 through 1,425 (of 5,678 total)

  • RE: Assistance On Reporting with some Dirty Data

    matthew.brown-746365 (6/29/2012)


    Wow, I did everything I'm NOT supposed to do. I'm sorry Craig, thank you for your patience!

    Not a problem. It's hard to know what to do when 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: T-SQL text manipulation and recordset iteration

    Sorry, duplicate post.


    - 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: T-SQL text manipulation and recordset iteration

    rjbirkett (6/29/2012)


    Craig,

    I don't know what to say. Brilliant explanation. If you could see my code you would know why I understand RBAR:-) There are really only two...


    - 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: Read locks and write locks

    GilaMonster (6/29/2012)


    Order they are requested in. Otherwise it would be possible to have a 'lock starvation' condition where newly requested locks jump in front of older requests due to the...


    - 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: Read locks and write locks

    At the 50,000 foot view without digging into a ton of details, they basically queue up behind each other, with the internals allowing for expected short shared locks (read) to...


    - 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: T-SQL text manipulation and recordset iteration

    rjbirkett (6/29/2012)


    Lynn,

    How am I going to process each record without looping through? For/Next? Next n? you have to iterate somehow, right?

    Rob

    In case Lynn's busy, the nature of the...


    - 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: while loop?

    dwain.c (6/27/2012)


    Wouldn't another option to be create a VIEW (or CTE) in front of each of the 3 statements that display results with a ROW_NUMBER() and then process in a...


    - 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: Assistance On Reporting with some Dirty Data

    Yikes, alright, that's complex and I kinda understand the issue.

    For starters, can you take a quick breeze-through on the first link in my signature? It'll walk you through what's...


    - 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 number of executions in execution plan

    sqldba_newbie (6/27/2012)


    Is there general guide line on how to reduce number of executions on a portion of query? I will try to post the actual query also.

    I assume you're seeing...


    - 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: Execute SSIS package in production from Dev

    MrReddy (6/27/2012)


    Here my problem is the data is coming from an Oracle source and is loading into a SQL table.

    The Oracle data is updated at anytime , so I need...


    - 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: while loop?

    achen9291 (6/27/2012)


    I would have to say the first option. Multiple datasets. I'm confused myself :/

    Alright, it's not pretty but if you actually need multiple unique datasets returned what you want...


    - 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: Service Broker

    amanmeet.mehta 46966 (6/26/2012)


    Hey Craig,

    For doing audit trails asynchronousally we need to use service broker right?

    regards,

    aman

    Usually, yes. There are alternatives but that's your best internal bet if you're trying...


    - 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: while loop?

    Are you trying to get it to return multiple datasets back to the calling component or are you trying to find a way to perform this loop so a single...


    - 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: Uncommitted transactions

    Can you describe exactly how you have the transactions organized and in what kind of containers? Also, what are your settings for the different connections (in particular Keep same...


    - 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: Execute SSIS package in production from Dev

    MrReddy (6/27/2012)


    Hello All,

    is there any way to run an SSIS package that is in production from other servers????

    Thanks,

    Can you, yes. Should you, no. It makes management a nightmare...


    - 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 - 1,411 through 1,425 (of 5,678 total)