Viewing 15 posts - 706 through 720 (of 5,504 total)
@jack-2: referring to your current avatar:
you might need to put the guitar aside for a moment. Looks like it would make typing a little complicated 😀
Or do you expect to...
January 9, 2012 at 2:43 pm
To expand on Gus solution:
(please note I added employee_code to the internal table variable since I think it might be helpful to know what row the change refers to ;-)...
January 9, 2012 at 1:51 pm
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
Viewing 15 posts - 706 through 720 (of 5,504 total)