Viewing 15 posts - 706 through 720 (of 5,502 total)
Please don't cross post. You're wasting resources by getting duplicate answers.
Original post: http://www.sqlservercentral.com/Forums/FindPost1231228.aspx
No further replies to this thread please!
January 8, 2012 at 4:29 pm
Jeff Moden (1/8/2012)
LutzM (1/7/2012)
January 8, 2012 at 2:55 pm
SQL Kiwi (1/8/2012)
LutzM (1/8/2012)
@paul-2: thank you for the reminder! I tend to forget that ( < node > /text())[1] usually makes quite a difference...
You're welcome (but removing the extra .query...
January 8, 2012 at 7:28 am
Combine the tweak Paul provided and the preload in a temp table and you should see a significant performance boost.
Based on that you should try whether an xml index will...
January 8, 2012 at 6:57 am
My first recommendation is to load the data from the file into a table before shredding it and then replace the OPENROWSET part in your query with that table reference....
January 8, 2012 at 5:02 am
There wasn't a missing part but rathe some confusion (there wasn't a table presented but two variables assigned with values and the first post did just include some plain values....)
Anyway,...
January 7, 2012 at 5:13 pm
Please either post the expected result based on the first sample or the source data of your expected second result set.
Remember: we don't know the business case you're dealing with...
January 7, 2012 at 3:51 pm
The xml structure has a declared namespace (xmlns="urn:schemas-microsoft-com:xml-analysis:rowset" ) that needs to be referenced in the query:
;
WITH XMLNAMESPACES
(DEFAULT 'urn:schemas-microsoft-com:xml-analysis:rowset')
INSERT INTO Unit_Test ([End User Name], [Country Code], Units)
SELECT
X.OBI.query('C0').value('.', 'nvarchar(100)') AS...
January 7, 2012 at 3:39 pm
The lack of responses might also be an indicator that we don't have enough information yet.
You're looking for a "resource group and associated teams" but neither is part of the...
January 7, 2012 at 9:27 am
Glad it finally worked out for you!! 🙂
And sorry for not getting there earlier... I've been on the wrong track at the beginning :blush:
January 6, 2012 at 3:20 pm
duplicate post. no replies please.
Original post: http://www.sqlservercentral.com/Forums/FindPost1231214.aspx
January 5, 2012 at 6:01 pm
You might find Buck Woody's blog helpful.
Hint: found using google search with "sql server schema change history report" 😉
January 5, 2012 at 2:18 pm
I'm not sure if a linked server will help here (assuming you're talking about using service broker across servers).
The best SSSB resource I know of is Rusanus blog[/url]. I'm confident...
January 5, 2012 at 2:12 pm
I'd rather use the CROSS APPLY approach to avoid "climbing up" two levels for each article node to get the name element. Performance impact can be significant depending on the...
January 5, 2012 at 1:43 pm
Koen Verbeeck (1/4/2012)
Did I miss anything...
January 5, 2012 at 10:22 am
Viewing 15 posts - 706 through 720 (of 5,502 total)