Viewing 15 posts - 16 through 30 (of 32 total)
I would like to see a (T-)SQL function like normalize-space() from XPath, which I believe is slightly more useful than just TRIM, as it deals with all white space characters...
August 18, 2014 at 7:12 am
I was reading Chapter 1 of your interesting book and was a bit puzzled by the solution to the Defending Against Cases of Unintended Use example. If you do not...
August 5, 2014 at 8:48 am
[p]I am having some difficulty understanding the categorizations of roles used here.
[/p][p]My understanding of a database administration role is close to Wikipedia's, where a DBA looks after but does not...
June 12, 2014 at 8:43 am
Another way of building this functionality could be to:
1) add a BIT "email result to system admins" parameter to selected stored procedures;
2) put a conditional path in those queries to...
March 3, 2014 at 5:40 am
I think that you can use SQL stored procedures with Microsoft's entity framework if you choose. Although we do not use the entity framework at the moment, we are rewriting...
February 20, 2014 at 3:33 am
I see that you do not have to do RBAR to get row error details for BULK INSERT from a data file.
Is there a set-based/declarative/T-SQL way of getting row error...
January 9, 2014 at 8:59 am
Jeff Moden (12/11/2013)
January 9, 2014 at 7:58 am
The snoop bins look to me like crossing the line into illegality if you consider the ICO's Data Protection Technical Guidance: Determining what is personal data.
Even if you argue that...
August 19, 2013 at 2:56 am
Decomposing an XML document into relational tables, rows and columns is commonly called "shredding", and you can find various articles on this, although I have found some of them to...
March 19, 2013 at 4:06 am
You are welcome, Evil Kraig F 🙂
I did notice I made a mistake in naming the ID attribute, since XML ID attributes are specially reserved and should have a value...
March 6, 2013 at 2:52 pm
Here's one approach. I adapted some code from another XML generation solution, and it might be a little messy. One difference is that here you have more of a many-to-many...
March 6, 2013 at 3:36 am
Koen Verbeeck (1/23/2013)
Also, I would think the structure of your website is known, so a relational model is preferred.
Curious to see...
January 26, 2013 at 9:55 am
elham_azizi_62 (1/26/2013)
Dear Tavis.We need to have one dataset with more than 1 datatable in word mail merge .is it possible this?
You could start by creating a mock-up (example) Word...
January 26, 2013 at 9:32 am
I would agree with the views that (pending further investigation) the website data should probably be first modelled relationally based on the given entities, then augmented with XML structures.
A College...
January 25, 2013 at 2:12 am
You might want to look at the Office Open XML File Formats used by Word 2007 onwards, but they are complex.
You can read introductory articles such as Walkthrough: Word 2007...
January 23, 2013 at 9:41 am
Viewing 15 posts - 16 through 30 (of 32 total)