Forum Replies Created

Viewing 15 posts - 7,141 through 7,155 (of 8,753 total)

  • RE: xml

    sakthikarajen (9/7/2014)


    sql server enterprise edition 2008 r2

    Some options on the Enterprise edition, in case of a very large set, an option would be to export the content of the attribute...

  • RE: xml

    sakthikarajen (9/7/2014)


    whether it is optable for very large xml file?

    Depends on how large, system specs, tempdb configuration etc. A general answer given that it is an untyped XML would be...

  • RE: Unable to insert values into a column- insert fails with error message

    srikanth.baskaran (9/7/2014)


    Dear experts,

    Im new to sql server and got stuck in the following .

    Ive a stored procedure A which has data has a result of split function from a column...

  • RE: cost of clustered index insert is 100%

    charipg (9/7/2014)


    how to reduce the cost of clustered index insert ?

    any suggestions pls?

    Quick thought, it's likely that this is not a problem of any sort, if the action is...

  • RE: Acessing Unix files directly through SSIS

    lvbntapasvi (9/6/2014)


    Hello All,

    I am new to SSIS, and have started using it from the past 3 weeks. I have a task where in I am supposed to access the flat...

  • RE: xml

    sakthikarajen (9/7/2014)


    thank u...you helped me a lot..:-)

    one more query....

    now in case i want to update my xmlfile i.e i want to add an <result> after <abstract>...how do i perform?

    if i...

  • RE: Data from one Table to Two Columns

    There is a more efficient method of solving this problem by partitioning the set on the log-in-out action. When a driver is logged in, it increments the login sequence by...

  • RE: Concatenate fields and insert comma between: how to handle nulls

    mario17 (9/5/2014)


    Hi,

    I thought it's easy but somehow got lost, what is the good way to insert that bloody Comma intelligently, depending if any of var value is NULL.

    This is...

  • RE: Operator used tempdb to spill data during execution with spill level 1

    Here is another addition to the code, identifying the gaps more efficiently.

    😎

    USE TESTDB;

    GO

    ;WITH BASE_DATA AS

    (

    SELECT

    ST.STG_ID

    ...

  • RE: xml

    sakthikarajen (9/4/2014)


    Bunch of thanks for your fast reply....

    1.2008 r2

    2.don hav XSD file..

    suppose if we index an Xml data....how do we can view those indexes????

    There are few options and which is...

  • RE: Help with the query

    Not much of a change needed from last time, adding a second conditional in the last part to allow for missing HardDrink did the trick.;-)

    😎

    USE tempdb;

    GO

    CREATE TABLE #TEMP (UserName varchar(20),Drink...

  • RE: Adding a number to a string to create series

    ChrisM@Work (9/5/2014)


    Eirikur Eiriksson (9/5/2014)


    ChrisM@Work (9/5/2014)


    Meatloaf (9/3/2014)


    Hello,

    I trying to figure out the logic to add a number to the end of an ID to create a series.

    For example, I have an...

  • RE: My SQL vs SQL

    Grant Fritchey (9/5/2014)


    So, Eirikur, if you used DATE instead of DATETIME would that also solve the issue? Just asking. I don't know MySQL from MyElbow.

    It is more a question of...

  • RE: Need help with performance issue with a script

    Quick question, can you post the two execution plans?

    😎

  • RE: help parsing a text field

    More for fun, I'm tossing three more spanners in the works

    😎

    USE tempdb;

    GO

    /********************************************************************

    Sample data

    ********************************************************************/

    DECLARE @SAMPLE_DATA TABLE

    (

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

    ...

Viewing 15 posts - 7,141 through 7,155 (of 8,753 total)