Forum Replies Created

Viewing 15 posts - 196 through 210 (of 926 total)

  • RE: JOIN HINTS

    good question. thanks for sharing

  • RE: Finding Stored Procedures

    Nice question thanks for sharing.

  • RE: Time Keeping

    Well, Following is the solution after the understanding i get from your answers.

    Please note that i have shared you SQL SERVER 2000 solution as this question is in ...

  • RE: Time Keeping

    Well well well, a person start on 6 Am an end of next date 7 am. Gosh he worked to much. be very careful of Labor law my friend :-P.

    Joke...

  • RE: Shortening a column

    Nice question Steve. Thanks for sharing

  • RE: Best solution for compounded update?

    Here is another solution, i borrowed 1st part of the solution from J Livingston SQL

    i hope he don't mind it. For the sake of keeping it simple and all following...

  • RE: Best solution for compounded update?

    autoexcrement (1/5/2016)


    J Livingston, how are you able to reference "cte" from within the definition of cte?

    inner join cte on b.IncreaseId = cte.IncreaseId +1

    This will give you some understanding. Check...

  • RE: Where to start...

    Well there are plenty of thing available here.

    you can start with Stairways they are the best start from very basic and step by step they get to complex thing very...

  • RE: The R Language

    Koen Verbeeck (1/5/2016)


    Arrrr, the R ranguage. 😀 Only for pirates!

    Ayee !!!! 😀

  • RE: Time Keeping

    You can achieve it using MIN() AND MAX() function for each person. Something like this

    SELECT Name, MIN(LogDateTime) AS Min_LogDateTime, MAX(LogDateTime) AS Max_LogDateTime

    FROM [YourTable]

    GROUP BY Name

    But question didnt state that you...

  • RE: How can I rewrite this statement?

    Glad to help and thanks for your feedback.

  • RE: How can I rewrite this statement?

    Well well well, you are using OPENQUERY so the temporary tables are thrown out of the window. I will not ask you to create a SP on each database, as...

  • RE: How can I rewrite this statement?

    Charmer (1/3/2016)


    Thanks for the suggestion. I informed to my colleague and he said he is executing this script in an OPENROWSET. And it is going to execute in different servers....

  • RE: It's the end of the year

    Lets not make another issue here guys. C'mon ... Its the End of the year 😛 Celebrate it.

    Keep up the good works and Thanks for 7 points Steve...

  • RE: How can I rewrite this statement?

    Charmer (12/30/2015)


    I have attached the execution plan here...Please take a look at that.

    For the 1st part of the query, we suggestion have already been given, So i would be moving...

Viewing 15 posts - 196 through 210 (of 926 total)