Viewing 15 posts - 1 through 15 (of 122 total)
I was the original poster of this thread and with help from others here, I have had continued success. I have had success with querying AD on SQL 2000...
December 8, 2012 at 7:23 pm
I think I found the solution:
SELECT Model.col.value('./@model, 'varchar(20)') [Model],
Model.col.value('./color[1]', 'varchar(20)') [Color],
Model.col.value('./sunroof[1]', 'varchar(20)') [Sunroof],
Model.col.value('./spoiler[1]', 'varchar(20)') [Spoiler],
Model.col.valu('./quantity[1]/@shop_location' ,'varchar(20)') [ShopName1],
Model.col.valu('./quantity[1]/@qty_avail' ,'varchar(20)') [QtyAvail1],
Model.col.valu('./quantity[2]/@shop_location' ,'varchar(20)') [ShopName2],
Model.col.valu('./quantity[2]/@qty_avail' ,'varchar(20)') [QtyAvail2],
FROM #tmpGridXml
CROSS APPLY Results.nodes('//model') as Model(col)
I'm validating the...
April 2, 2010 at 10:24 am
Nevermind, I found the simple resolution.
February 4, 2010 at 12:22 pm
That's great, thank you very much!!
January 5, 2010 at 10:22 am
Thank you very much for all the information. This is very helpul!
I cannot exactly recall where I heard that costs for SQL Standard 32-bit vs SQL Standard 64-bit was...
October 5, 2009 at 3:52 pm
Thank you for the replies. I understand this maybe out of the ordinary and that itself raises concerns.
The primary reason is for scalability without the SQL 64bit costs for...
October 5, 2009 at 2:01 pm
Thanks all for the responses. We typically run in the mode of give what they want (sometimes too far) so that's not completely out of the question. However,...
August 4, 2009 at 11:59 am
Thank you to both of you. I appreciate the input. I've downloaded QueryExpress and it looks quite simple and light. I need to expose the requirements of...
July 30, 2009 at 9:22 am
Well, the server processes many records a second. 5 minutes should fill up a 5mb file no problem so a roll_over would probably be expected. The problem is...
May 8, 2009 at 10:49 am
Thanks, Lynn. I initially had this set to 2, but same results. The script I built from Profiler actually uses 0, so I tried that next which is...
May 7, 2009 at 3:10 pm
Thank you much, George! But first the most tricky part, apparently... finding that Resource CD!
January 26, 2009 at 4:48 pm
Thank you very much for all the suggestions and recommendations here! Much more information than I had hoped for so this is great!
January 6, 2009 at 9:57 am
Thank you. This may be appropriate on another board, but what options are available? I have a stored proc that relies on a list of files within a...
January 5, 2009 at 5:07 pm
Great information, thank you!
December 16, 2008 at 10:02 am
I also wanted to add that I have tried the following, which is my preferred method if it could work.
EXEC sp_xml_preparedocument @hdoc OUT,
...
August 19, 2008 at 11:28 am
Viewing 15 posts - 1 through 15 (of 122 total)