Viewing 15 posts - 2,341 through 2,355 (of 2,458 total)
Evil Kraig F (11/28/2012)
Alan.B (11/28/2012)
Evil Kraig F (11/28/2012)
This is NOT pretty, but it IS functional.
I am trying to understand why went with a loop vs a set-based approach. I posted...
November 28, 2012 at 3:20 pm
Evil Kraig F (11/28/2012)
This is NOT pretty, but it IS functional.
I am trying to understand why went with a loop vs a set-based approach. I posted a more set based...
November 28, 2012 at 3:00 pm
This is a bit tricky and I am still working on this. Here's what I have thusfar...
--Create temp table to hold the dummy data
if object_id('tempdb..#IDs') is not null
drop table #IDs
CREATE...
November 28, 2012 at 2:11 pm
By "apply a style sheet" are you talking about applying an XML transform using XSLT or apply CSS formatting?
November 28, 2012 at 9:57 am
You can also do this (I'm just showing another way to pivot):
;WITH sourceData ([RowID],[Region], [Factor])
AS
(
SELECT '1','Capitol',' Text1' UNION ALL
SELECT '2','Capitol',' Text2' UNION ALL
SELECT '3','Capitol',' Text3' UNION ALL
SELECT '1','Central',' Text4'...
November 28, 2012 at 9:47 am
Just wanted to know whether it is correct because i will doing it on the production and have to be very sure before doing and don't have any test...
November 27, 2012 at 10:00 pm
Edit: I misunderstood your question... What's with the NULLS?
November 27, 2012 at 8:40 pm
Is DBA a limited Profession? Short answer: No. Long answer: Nope.
November 27, 2012 at 4:03 pm
nsrikanth.seo (11/26/2012)
The XML DOM defines a standard way for accessing and manipulating XML documents.The XML DOM views an XML document as a tree-structure.
Thank u,
Regards
Srikanth
rxonlineshopee.com:-)
The DOM presents an XML document as...
November 27, 2012 at 3:58 pm
I have seen it done with Sharepoint 2010 and using the Microsoft Report Viewer Redistributable. I have never done it though nor am I a Sharepoint guy.
November 27, 2012 at 3:44 pm
For the crowd you describe I think the SQL tutorial at W3Schools is a good start (my 2¢). Like Jeff mentioned they have a "Try it yourself" section and they...
November 27, 2012 at 3:05 pm
eugene.pipko (11/27/2012)
Thanks, what if I need to change font-weight at <tr> level?How do I access <tr>?
The top row (the first instance of the TR tag) you could add any attributes...
November 27, 2012 at 1:38 pm
jjolk (11/21/2012)
November 27, 2012 at 10:46 am
eugene.pipko (11/19/2012)
Thank you for reply,So, for every <td>, if I need to change an attribute, I'd need to select 'td/@style' = ......?
Thanks,
Yes.
P.S. W3Schools is the best place to go...
November 26, 2012 at 4:15 pm
Viewing 15 posts - 2,341 through 2,355 (of 2,458 total)