Forum Replies Created

Viewing 15 posts - 2,341 through 2,355 (of 2,458 total)

  • RE: Recursion with a Twist

    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...

  • RE: Recursion with a Twist

    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...

  • RE: Recursion with a Twist

    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...

  • RE: How can I generate XML and apply a style sheet in t-sql?

    By "apply a style sheet" are you talking about applying an XML transform using XSLT or apply CSS formatting?

  • RE: Not sure why PIVOT returns a single row?

    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'...

  • RE: Configuring Replication in 2012

    No problem.

  • RE: Replication Issue

    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...

  • RE: Convert rows to columns

    Edit: I misunderstood your question... What's with the NULLS?

  • RE: Is DBA a limited Profession ?

    Is DBA a limited Profession? Short answer: No. Long answer: Nope.

  • RE: XML DOM

    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...

  • RE: Embedding Report on webpage

    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.

  • RE: Exercises in t-SQL

    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...

  • RE: html from sql server 2K8R2

    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...

  • RE: Configuring Replication in 2012

    jjolk (11/21/2012)


    I know I'm missing something obvious, but I'm trying to learn about Replication and all the documentation I read says to right click on the "Replication" node in SSMS...

  • RE: html from sql server 2K8R2

    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...

Viewing 15 posts - 2,341 through 2,355 (of 2,458 total)