Forum Replies Created

Viewing 15 posts - 6,901 through 6,915 (of 7,164 total)

  • RE: combining XML tags

    I think the forum thread you referenced is referring to client-driver data access issue...that has nothing to do with the internal representations of the XML or NVARCHAR(MAX) types within SQL...

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

  • RE: combining XML tags

    rs80 (3/16/2011)


    I went down the road of trying to convert the xml to nvarchar(max) by following some google links, but when I set the xml to nvarchar(max) some of the...

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

  • RE: combining XML tags

    rs80 (3/16/2011)


    I went down the road of trying to convert the xml to nvarchar(max) by following some google links, but when I set the xml to nvarchar(max) some of the...

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

  • RE: combining XML tags

    OK, that's unfortunate. You're stuck either CONVERTing your XML to a Unicode string and pre-pending it with a declaration before it leaves the T-SQL context and delivering it to the...

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

  • RE: SQL Query Help after 13th row Dynamic and in 12th row static values with a formula

    Can you post the DDL for your tables, some DML to create test data and the query you're using now so we have a starting point?

    Please have a look at...

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

  • RE: Loop all the servers and get the query results

    OK, super-high-level design of an SSIS package that will do what you need to do...

    1. Add a Data Flow Task to your Control Flow. Inside your Data Flow add a...

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

  • RE: combining XML tags

    Since all XML is stored within SQL Server with utf-16 encoding the engine does not bother maintaining the XML declaration when you insert into an XML column (i.e. it drops...

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

  • RE: CDATA In TSQL Script

    Oh, a third thing...prefix all your string literals with N to denote they should be treated as Unicode strings (i.e. they contain 'N'ational characters).

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

  • RE: CDATA In TSQL Script

    XML in SQL Server only support UTF-16LE. Two things, change all instances of VARCHAR in your script to NVARCHAR and change utf-8 to utf-16 in your xml declaration.

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

  • RE: Login Fails when accessing other server thru SSIS/SQL Agent

    Chances are it has to do with the ProtectionLevel of the SSIS package. When you run it through BIDS it is running as you so has access to your user-key....

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

  • RE: SQL Server 2008 deadlocked transactions

    Gianluca Sartori (3/16/2011)


    That's nonsense.

    Indeed 😀


    Can you force them to be committed? ...no, that is indeed nonsense

    Can you force a blocking processes to rollback to keep your server healthy until you...

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

  • RE: Read Tablename from a file

    This sounds like an extremely strange architecture...are you sure you want to allow data in a text file to dynamically dictate the tables you reference in DML you apply to...

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

  • RE: Use sp_OACreate to connect to share drive ..

    DZN (3/16/2011)


    2. What would be the code to retrieve folder contents?

    Time to hit the books...getting the contents of a folder is a trivial task in C# but it's a learning...

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

  • RE: convert Datetype(in flat file) to SQL datetime using derived column in SSIS

    It may be possible with expressions, but my limited knowledge of them has me imaging an extermely ugly and complex one.

    So, instead of using Derived Column you can do...

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

  • RE: can't connect to sql 2000 from ssms 2008

    SQL 2000 does not have a SQL Browser service like 2005+. Accessing it by IP address should work for you.

    *I think* if you register the server name as a System...

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

Viewing 15 posts - 6,901 through 6,915 (of 7,164 total)