Forum Replies Created

Viewing 15 posts - 316 through 330 (of 388 total)

  • RE: Passing a Table to A Stored Procedure

    sergiotorres (12/8/2007)


    Very helpful, Jacob. Thanks.

    Is it possible to pass the datatable as an xml variable? I tried datatable.writexml, but couldn't make it...

    I think there should be no problem doing this....

  • RE: Passing a Table to A Stored Procedure

    Hi

    I do not think it is a good idea to run a DTS package continuously. Probably you should look for REPLICATION options. I never got a chance to work...

  • RE: Passing a Table to A Stored Procedure

    I have not done a "MAXIMUM" test yet. I do not recommend this as an option for BULK INSERT/UPDATE operation. There are other utilities for that. This approach might be...

  • RE: XML Workshop XII - Parsing a delimited string

    I dont think this approach is good for Large Chunks of data. It is handy when you have a small piece of delimited string and you want to break it...

  • RE: XML Workshop XII - Parsing a delimited string

    I understand the problem now. A schema will validate an entire document. I do not think that a schema can be used to filter "bad records" and process the...

  • RE: XML Workshop XII - Parsing a delimited string

    I agree with you on the first point. Wherever I used the XML approach in our applications, it just worked well. However, I have read some posts where people complained...

  • RE: TSQL Lab I - Playing around with ROW_NUMBER

    KB is right. The function ROW_NUMBER() itself is specific to SQL Server 2005. SQL Server 2000 does not support this.

  • RE: XML Workshop X - Working with namespaces

    Ryan Riley (11/7/2007)


    Great article, Jacob. I think you might have mentioned this previously, but is there a limit to the number of characters an XML query will return? Also, is...

  • RE: Advanced XML Processing

    Excellent!

    Ryan's code is much simpler than the two options I presented. This is really good and easy to understand.

    one small note: we need to make sure that the OrderHeader will...

  • RE: Advanced XML Processing

    flurk118 (10/25/2007)


    Nice article.

    Has anyone got any examples of similar XML output but with header information included.

    Following on from Jacobs article and presuming the existence of an OrderHeader table, the output...

  • RE: Partitioning - Part 2

    Very interesting stuff, and I am glad that I found it right at the moment when we were thinking about partitioning a couple of our databases. Waiting for the next...

  • RE: Passing a Table to A Stored Procedure

    Carlos Shoji (23/09/2007)


    Very good article!

    Is there any way to do a similar thing with SQL Server 2000?

    Thanks.

     

    Hi Carlos,

    You can do this in SQL Server 2000 too....

  • RE: XML Workshop - FOR XML PATH

    Ryan,

    run this query:

    (excuse the bad formatting)

     

    WITH

    XMLNAMESPACES (

    DEFAULT 'http://www.namespace.net/yourschema.xsd'

    )

    SELECT

  • RE: XML Workshop - FOR XML PATH

    Hi Ryan,

    please post a sample xml structure that you need. I will then try to write a query for that.

  • RE: XML Workshop VII - Validating values with SCHEMA

    Hi Herit,

    There is an article in this series which explains the enumeration in detail.

    I am not sure what is the scheduled date. But I guess it will be out in a...

Viewing 15 posts - 316 through 330 (of 388 total)