Forum Replies Created

Viewing 15 posts - 8,641 through 8,655 (of 8,753 total)

  • RE: SSIS Teradata package

    If I remember correctly, you should re-configure the connections which before the protection level changes, where using the users credentials.

    If you are using a SSIS configuration settings, walk through...

  • RE: SSIS Data Flow Items tab missing in the SSDT 2010 for SSIS 2012

    Did you try to expand the Favorites (first on the list in the toolbox)?

    😎

  • RE: SSIS Teradata package

    Looks like the protection level is set to "encrypt with user key", if moved to another scope, it will fail.

    😎

  • RE: T-SQL Equivalent for PL-SQL

    Jeff Moden (4/3/2014)


    What is it supposed to do?

    It is a simple base36 to base10 number conversion.

    01Z(base36) == 71 (base10)

    😎

  • RE: Raspberry PI as test box

    bugmesh (4/3/2014)


    Woke up and sprained my brain this morning. That's the only reason I can think of as to why this popped into my head.

    Has anyone used a Raspberry for...

  • RE: XSLT sum and xpath

    One small change needed

    <td><xsl:value-of select="sum(../../*/*/costs)" /></td>

    😎

  • RE: Third Party Component on different server

    todor.belchev (4/3/2014)


    Hi,

    I want to use a third party component in my SSIS package but I don't want to install it on the SQL server. This component is installed on a...

  • RE: T-SQL Equivalent for PL-SQL

    Quick translation (Google Translate style 😀 )

    ;WITH NUMS(level) AS

    (SELECT N FROM (VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10)) AS NM(N))

    select sum(C.position_value) from

    (

    select

    power(36,B.position-1)...

  • RE: Nesting xml

    Jeff Moden (4/1/2014)


    Eirikur Eiriksson (4/1/2014)


    Please post proper DDL and enough data, the problem is straight forward from there.

    If you're going to tell people that, then you need to tell them...

  • RE: LINQ vs SQL Questions

    Sean Lange (4/2/2014)


    JoshDBGuy (4/2/2014)


    I've run into issues in the past dealing with extremely poorly written queries with LINQ.

    Ditto 😎

    Using stored procedures is a good practice, a) how it retrieves the...

  • RE: DBCC CHECKDB fails to run

    First thing that comes to mind is a disk space or (EDIT) VM max size config kind of problem.

  • RE: Database and its Objects Naming Standards

    MY_TWO_CENTS

    Naming conventions are primarily to enforce consistency, readability and prevent ambiguity. A good solid naming convention is worth hundreds of pages of documentation on a large system.

    😎

  • RE: How do I select all or multiple rows from a typed xml variable?

    This should work on 2K5

    DECLARE @XML XML = N'<DetailRows>

    <DetailRow>

    <MonthNumber>1</MonthNumber>

    <Amount>1000</Amount>

    </DetailRow>

    <DetailRow>

    <MonthNumber>11</MonthNumber>

    ...

  • RE: The new 3D Joins in SQL Server 2014

    Koen Verbeeck (4/2/2014)


    I believe this is a late April Fools topic...

    Correct 😛 found everything about it on BOL under AFD....

  • RE: Are cursors hard on servers?

    Luis Cazares (4/1/2014)


    I'm not sure that I agree with Eirikur about saying "it depends". I'm sure that cursors are always hard on servers, but some methods can be worse (e.g....

Viewing 15 posts - 8,641 through 8,655 (of 8,753 total)