Viewing 15 posts - 2,056 through 2,070 (of 8,760 total)
June 27, 2017 at 3:44 am
Quick look at this query will show that it uses the anti-pattern of feeding a high cardinality result set into the distinct operator, hence the high estimation in the plan....
June 27, 2017 at 2:39 am
June 26, 2017 at 10:04 am
Thank you for the feedback and if you have any further questions on XML then don't hesitate coming back here 😉
😎
Quick thought, you should use the...
June 26, 2017 at 9:56 am
June 26, 2017 at 6:13 am
June 26, 2017 at 6:08 am
Since the encoding in the header is marked as utf-8, you will have to convert the nvarchar to varchar before converting to XML, SQL Server cannot switch the encoding implicitly.
June 26, 2017 at 4:34 am
June 26, 2017 at 4:29 am
June 24, 2017 at 7:36 am
I have done some fairly extensive tests on the string splitting options and the JSON split methods and the STRING_SPLIT functions are by far the best performers if one is...
June 23, 2017 at 12:36 pm
Piling on, can you post a proper example of the XML data please, the data you've posted is ill-formed.
😎
June 23, 2017 at 9:34 am
If you are on SQL Server 2016 then use the new native STRING_SPLIT function.
😎
June 23, 2017 at 7:43 am
IF..ELSE are conditional batch execution directives, not a conditional evaluation like CASE, hence the former is not valid within a select statement which in it self is a...
June 22, 2017 at 9:02 am
June 22, 2017 at 8:20 am
Viewing 15 posts - 2,056 through 2,070 (of 8,760 total)