I will keep adding more as and when I come across more issues
- 1IE behaves differently from Firefox when I put a rowspanAppaerntly IE disregards 'rowspan' as it expects the 's' in rowspan to be in upper case.So something that would work on both IE and Firefox is 'rowSpan'
- 2When I put html in blogger html editor, for some reason it puts huge amount of spaces/breaks in itConvert line breaks is set to 'Yes'Go to Settings >> Formatting and make sure 'Convert line breaks' is set to 'No'
- 3 When I try to use xml.query in SQL for an attribute i keep getting the error "XQuery [query()]: Attribute may not appear outside of an element"There are certain limitations with accessing XML data type in SQL and the errors thrown are not really helpful in identifying what is the real issue. There are different ways to access value from a node and attribute.Use data() instead. I looked up on google and Matija Lah's post helped me resolve this. To access attributes use
Select .query('data(@PubDate)').value('.','datetime') as PublishDate
thanks for your useful post.
ReplyDelete