Forum Replies Created

Viewing 15 posts - 8,416 through 8,430 (of 8,753 total)

  • RE: SSIS tasks installation

    Chio, you could compare the installation logs from the different instances to track down the difference. I'll try out your component on a vanilla system and let you know the...

  • RE: Joining on views in queries instead of tables

    Hard to say without further knowledge, normally I would consider this a good and normal practice.

    ๐Ÿ˜Ž

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

    Eric M Russell (5/2/2014)


    Eirikur Eiriksson (4/1/2014)


    Has anyone tried out the new 3D joins in 2014?

    I can confirm that 3 dimensional joins work quite well; it's the 12 or 20 dimensional...

  • RE: Symmetrically encrypt a single node in XML field

    Lowell (5/2/2014)


    ... looked for lower hanging forum posts ๐Ÿ˜Ž

    Felt I could not leave this one hanging......:cool:

  • RE: Delete Table records with Bakup

    free_mascot (5/2/2014)


    Great Eirikur, is it possible to send this OUTPUT to excel using this T-sql?

    Use the output to insert the records into a table and export to excel/csv from there....

  • RE: Delete Table records with Bakup

    You can use the output clause with the delete

    ๐Ÿ˜Ž

    DECLARE @TTABLE TABLE

    (

    TT_ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED NOT NULL

    ,TT_VAL INT NOT NULL

    );

    INSERT INTO @TTABLE(TT_VAL)

    VALUES...

  • RE: SSIS Package Execution

    I would recommend a dynamic package or in other words, programmatically generated packages. This is fairly straightforward from a script task in a master package.

    ๐Ÿ˜Ž

  • RE: Symmetrically encrypt a single node in XML field

    Lowell (5/1/2014)


    i've tried sys.fn_cdc_hexstrtobin to convert the string to varbinary, but it truncates a large portion of the value.

    maybe someone else can take the ball and run with it form...

  • RE: Symmetrically encrypt a single node in XML field

    Lowell (5/1/2014)


    i've tried sys.fn_cdc_hexstrtobin to convert the string to varbinary, but it truncates a large portion of the value. maybe someone else can take the ball and run with it...

  • RE: Get 1st Word in the string

    A simple solution

    ๐Ÿ˜Ž

    with p as

    (

    select 'asdf1234' as Delivery_Site union all

    select 'asdf 1234' union all

    select ' asdf asdf ' union all

    select ''

    )

    ,TXT_INFO AS

    (

    SELECT

    ...

  • RE: Get 1st Word in the string

    Why not try Jeff Moden's splitter, pass space as delimiter?

    ๐Ÿ˜Ž

  • RE: SSIS Package Execution

    cvkk2010 (4/30/2014)


    Hi All,

    I need help to execute a taxk.

    I have text file which has SQL Statements something like

    Select top 10 * from Table 1

    Select top 10 * from Table 2

    Select...

  • RE: Hekaton - Origin

    On a mediocre laptop, 10000000 rows returned in 145 ms and 100000 inserts in 75 ms, I think version 1 is promising.

    ๐Ÿ˜Ž

  • RE: Changed behavior or am I missing something?

    mister.magoo (4/30/2014)


    Or I have a crappy 2012 install?

    Few weeks back, before upgrading the 2012 system Iยดm working on to 2014, I ran into a similar behavior when forgetting the filter/limit...

  • RE: Changed behavior or am I missing something?

    mister.magoo (4/30/2014)


    I get the same crappy performance on 2012 as 2014 for these...I haven't got a 2008 to test on right now.

    That means I might be missing something:-P

    Thanks!

Viewing 15 posts - 8,416 through 8,430 (of 8,753 total)