Forum Replies Created

Viewing 15 posts - 1 through 15 (of 600 total)

  • Reply To: Really weird unexpected termination error from catalog

    Not exactly.  From the all executions report and other catalog messages I was able to determine that it was crashing on the data flow with all previous tasks ending successfully.

    There...

  • RE: Insert without a PK

    Steve Jones - SSC Editor (6/9/2015)


    Comments posted to this topic are about the item <A HREF="/questions/T-SQL/126632/">Insert without a PK</A>

    Yeah, um, i still may have been wrong, but if the question...

  • RE: Derived Column Transformation not converting to NULL

    First, stupid question but why does your SQL have < 9 and your expression < 8?

    Second, what happens when you replace the null function with a default string like "Null...

  • RE: SSIS performance issue when using IP addresses in connection strings

    Yeah this sounds like more of a network set up issue than an SSIS issue.

    Is there a reason you want to use the IP though? Its like the old...

  • RE: Phantom SSIS crash/fail converting DT_NEXT to DT_TEXT

    Now 99% sure this is a windows update issue. Now just have to figure out which update.

    Thanks, Microsoft!

  • RE: Phantom SSIS crash/fail converting DT_NEXT to DT_TEXT

    Seems to be causing an APPCRASH on Kernelbase.dll when run from VS

  • RE: Add business days to a date using a Calendar table

    SELECT A. Date, MIN(B.DatePlus3BusinessDays) DatePlus3BusinessDays

    FROM TableA A

    LEFT JOIN (Select DateKey, LEAD(DateKey,3) OVER (PARTITION BY IsBusinessDay ORDER BY datekey) AS DatePlus3BusinessDays FROM Calendar WHERE IsBusinessDay = 1) B ON A.DateKey <=...

  • RE: Combine the functionality of IN and LIKE in a WHERE clause

    I mostly agree with the above.

    You can't do an IN and LIKE with that Syntax.

    If you could, it would not really be better than the OR solution, as neither is...

  • RE: T-SQL Result Table Values From Query

    Well he does reference T2 twice which is likely why he bothered (it is in the correlated subquery).

    Then again, he probably shouldn't be doing it that way anyway (or at...

  • RE: T-SQL Result Table Values From Query

    EDIT: disregard original solution. This is actually far messier than I first thought.

    It would really help if you gave us DDL for the tables, sample data and an explanation of...

  • RE: Setting Transaction Isolation Level

    AER (5/6/2015)


    By setting the TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; is this automatically sets all the joined tables to NOLOCK?

    In effect, yes.

    After you set the isolation level, a query will not...

  • RE: SQL query help

    Yes, it does take extra CPU power.

    Parsing a string according to some flexible rules depending on variable environment parameters is not a cheap process.

    It's better to do it once and...

  • RE: SQL query help

    Sergiy (5/6/2015)


    Hmmm... what does it take exactly?

    Too much of extra memory? Extra CPU power? I don't think so.

    But parsing one string before dialling a number takes "Too much of extra...

  • RE: SQL query help

    Sergiy (5/6/2015)


    So, we have 2 options here.

    1. Parse the entered string once when it's being saved into predefined components and store those components in the class.

    2. Parse the entered string...

  • RE: SQL query help

    Sergiy (5/5/2015)


    Google's common Java, C++ and JavaScript library for parsing, formatting, storing and validating international phone numbers. The Java version is optimized for running on smartphones, and is used by...

Viewing 15 posts - 1 through 15 (of 600 total)