Forum Replies Created

Viewing 15 posts - 1,666 through 1,680 (of 5,502 total)

  • RE: Are the posted questions getting worse?

    Greg Edwards-268690 (4/20/2011)


    Brandie Tarvin (4/20/2011)


    LutzM (4/20/2011)


    bitbucket-25253 (4/19/2011)


    opc.three

    The SSMS Tools Pack rocks! and so do RAR files

    Care to share the link for the Tools Pack?

    Is there anything wrong with...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: can't use column in aggregate or group by - but need it to calc qty

    I'm a little bit confused...

    You need "the per row value not an aggregated value", but you're using SUM(i.QTY).

    Additionally, i.QTY is included in the GROUP BY clause.

    Would it help if you'd...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: Are the posted questions getting worse?

    bitbucket-25253 (4/19/2011)


    opc.three

    The SSMS Tools Pack rocks! and so do RAR files

    Care to share the link for the Tools Pack?

    Is there anything wrong with the link I posted originally?...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (4/19/2011)


    I'm going to violate the rule and add a "technical" question to The Thread under the caveat that I don't really need an answer for a problem so...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: unable to configure reporting service(SQL 2005)

    duplicate post. please continue here.



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: Unable to configure Reporting service

    duplicate post. please continue here.



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: a question about simple sp

    You cannot have two ORDER BY statements in a single UNION query.

    select Top 1

    from News

    where GeneralSport=1 and Type_ID=1

    order by News_ID

    UNION

    select Top 1 *

    from News

    where GeneralSport=1 and Type_ID=1

    order by News_ID...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: SQL Newbie needs help retrieving data from xml

    Since it's a typed xml document you need to use a namespace declaration.

    Instead of using OpenXml, I'd recommend using XQuery instead:

    DECLARE @xml XML

    SELECT @xml='

    <OTA_HotelDescriptiveContentNotifRQ xmlns="http://www.opentravel.org/OTA/2005/12" EchoToken="E384570476" TimeStamp="2011-03-14T18:50:45.014+01:00" Target="Production" Version="2005" PrimaryLangID="en">

    <HotelDescriptiveContents...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: Limiting a stored procedure

    Change the

    SELECT * FROM @temptable

    ORDER BY OnCall_start

    section to return the columns you need by explicitly naming the columns instead of *.

    Furthermore, you should reduce the...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: The Job Posting - Do I really have to be the SQL God?

    Tom.Thomson (4/15/2011)


    LutzM (4/14/2011)


    Nachdem ich den Artikel und die Kommentare bzgl. der Grammatikfehler gelesen habe, habe ich mich entschieden, ab sofort nur noch in einer Sprache zu schreiben, bei der meine...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: The Job Posting - Do I really have to be the SQL God?

    Craig Farrell (4/14/2011)


    LutzM (4/14/2011)


    Nachdem ich den Artikel und die Kommentare bzgl. der Grammatikfehler gelesen habe, habe ich mich entschieden, ab sofort nur noch in einer Sprache zu schreiben, bei der...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: The Job Posting - Do I really have to be the SQL God?

    Nachdem ich den Artikel und die Kommentare bzgl. der Grammatikfehler gelesen habe, habe ich mich entschieden, ab sofort nur noch in einer Sprache zu schreiben, bei der meine grammatikalische Fehlerquote...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: XML is Killing me!!! Help!!!!!

    Please ask your tutor if the update should be done using the extracted data or the XML structure. It will influence the solution.

    As a side note: most of us already...



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: Help with MAX/TOP (Not sure)

    You could either use a subquery to get the max effective date per code and join it back to the original table or you could use the ROW_NUMBER approach.



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

  • RE: RowSet Tilt Query...

    You'd need to UNPIVOT your data followed by a PIVOT (either traditional using CrossTab or the PIVOT operator).



    Lutz
    A pessimist is an optimist with experience.

    How to get fast answers to your question[/url]
    How to post performance related questions[/url]
    Links for Tally Table [/url] , Cross Tabs [/url] and Dynamic Cross Tabs [/url], Delimited Split Function[/url]

Viewing 15 posts - 1,666 through 1,680 (of 5,502 total)