Forum Replies Created

Viewing 15 posts - 5,806 through 5,820 (of 7,164 total)

  • RE: XQuery and syntax of either query or value method to pull data from xml column

    You're welcome 🙂

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Database compatibility level(s) - log/history

    They missed the boat.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: PGP Encryption in SSIS

    Like I said, not arguing anything you said. Compliance was not the issue at hand in my scenario.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: PGP Encryption in SSIS

    Nadrek (6/27/2011)


    opc.three (6/27/2011)


    Elliott Whitlow (6/27/2011)


    Agreed. It was not specifically for the benefit OP, but for me 😀 I would not implement the component as an Enterprise solution unless it could...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Database compatibility level(s) - log/history

    Lowell (6/27/2011)


    yeah, when i look at powershell at first, i have no idea what it does or what it can do.

    Seriously, WTF is that? 😛

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: create table through cursor

    If you're using the # prefix SQL Server will ignore it and use tempdb anyway. This:

    CREATE TABLE AdventureWorks.dbo.#tbl (a INT);

    Results in a table being created in tempdb and this warning...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Ceate a Table from inside view

    seftest_09 (6/27/2011)


    Hello, Thanks for the reply. Can you give me an example of how to use Multi-statement table valued function.

    Thanks,

    Ratan

    The function ufnGetContactInformation in this Books Online article is a mTVF...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Send an XML from SQL to a specific port!!!

    I don't know of antyhing in native T-SQL that can do what you're asking. SQLCLR could provide the illusion of native T-SQL, or you could shell out to a cmd...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: XQuery and syntax of either query or value method to pull data from xml column

    Barret-330682 (6/27/2011)


    What should the proper syntax be to pull the data back where value2 is yo5?

    SELECT AdditionalData.value('

    declare namespace C="test";

    (/C:DocumentElement/C:AdditionalData/C:Value2)[1]', 'VARCHAR(12)') AS answer

    from table

    I am trying to pull data from an...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Send an XML from SQL to a specific port!!!

    Boooo 🙂 Poor design. Please save yourself the trouble and do not do this work in a trigger. Save your "work to do" request to a table and have another...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Eliminating duplicates of a pair

    You're welcome 🙂

    PS You did a nice job posting the problem and expected results in your initial post, but I would not have posted a solution had you not provided...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Microsoft.ACE.OLEDB.12.0" for linked server "(null)" reported an error

    No, not in your scenario.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: returns 1 row from date range rows

    Do you mind posting some sample DDL and DML so we can build tables on our side, as well as the query(ies) you have tried so far?

    http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Microsoft.ACE.OLEDB.12.0" for linked server "(null)" reported an error

    You're on the right track, you need to find the right balance between your max memory setting and MemToLeave.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Send an XML from SQL to a specific port!!!

    You could look at using SQLCLR to call out to the service, but that would open a whole can of worms regarding security.

    Why can't the service retrieve the XML from...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 5,806 through 5,820 (of 7,164 total)