Viewing 15 posts - 316 through 330 (of 388 total)
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....
December 8, 2007 at 7:01 pm
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...
December 8, 2007 at 1:50 am
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...
December 7, 2007 at 6:58 am
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...
December 5, 2007 at 6:14 am
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...
December 5, 2007 at 3:00 am
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...
December 5, 2007 at 2:24 am
KB is right. The function ROW_NUMBER() itself is specific to SQL Server 2005. SQL Server 2000 does not support this.
November 14, 2007 at 8:39 pm
Ryan Riley (11/7/2007)
November 7, 2007 at 11:37 pm
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...
October 26, 2007 at 4:11 am
flurk118 (10/25/2007)
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...
October 25, 2007 at 10:42 pm
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...
October 9, 2007 at 9:23 am
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....
September 23, 2007 at 7:25 am
Ryan,
run this query:
(excuse the bad formatting)
WITH
XMLNAMESPACES (
DEFAULT 'http://www.namespace.net/yourschema.xsd'
)
SELECT
September 21, 2007 at 11:42 pm
Hi Ryan,
please post a sample xml structure that you need. I will then try to write a query for that.
September 20, 2007 at 11:07 pm
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...
September 19, 2007 at 11:57 pm
Viewing 15 posts - 316 through 330 (of 388 total)