Viewing 15 posts - 46 through 60 (of 390 total)
Interesting one.Thanks for question.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 30, 2014 at 2:50 am
pmadhavapeddi22 (6/30/2014)
Why this question is worth 4 points ?:hehe:
+1
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 30, 2014 at 2:50 am
Thanks Andy for the question.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 27, 2014 at 2:13 am
Thanks Nenad for question.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2014 at 2:06 am
Very interesting question. Never used Escape.Thanks Andy.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2014 at 2:02 am
very interesting question.Thanks Barry.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 26, 2014 at 1:32 am
Thanks for question Andy.
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 20, 2014 at 12:31 am
Try this .DATEPART
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 19, 2014 at 5:03 am
Stuart Davies (6/19/2014)
BWFC (6/19/2014)
MethodTechnique
Procedure
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 19, 2014 at 1:29 am
Another confusing question 🙁
A newly hired developer who works remotely has asked for permission to run Profiler so he can see the reads/writes used by his queries
Permission to run...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 19, 2014 at 12:59 am
mattech06 (6/18/2014)
So a better example would be using a table with ..
CREATE TABLE...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 18, 2014 at 8:03 am
mattech06 (6/18/2014)
(b.TransType IN ('') OR '' =...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 18, 2014 at 7:59 am
what about "None of these" 😉
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 18, 2014 at 6:31 am
mattech06 (6/18/2014)
WHERE q.Description = 'Bob'
I'd want the q.Description to be the description of row number 1 as I can't hard code 'Bob' into the...
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 18, 2014 at 6:22 am
what about this 😉
;with qry
as
(select [amount],[Description], row_number() over (order by amount) as RN from #question)
select q.[description],sum(q1.amount) from qry q, #Question q1
where RN = 1
group by q.[description]
--rhythmk
------------------------------------------------------------------
To post your question use below link
https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help
🙂
June 18, 2014 at 5:45 am
Viewing 15 posts - 46 through 60 (of 390 total)