Viewing 15 posts - 4,186 through 4,200 (of 11,678 total)
nipu_ro (11/20/2013)
I found this articol.Read my first post:
"The option "Save changes to open documents only" is not good."
What about the undo button?
November 20, 2013 at 5:44 am
steve.jacobs (11/20/2013)
I thought I had put in the answer "the format indicated in the question is a determination of my regional \ language settings (en-us \ short datetime: M\d\yyyy h:mm:ss...
November 20, 2013 at 5:43 am
arkiboys (11/20/2013)
yayomayn (11/20/2013)
November 20, 2013 at 4:27 am
sunil.mvs (11/20/2013)
SQL server 2008R2
You cannot use windowing functions (SQL Server 2012), and it is possible set-based solutions are not linearly scalable (in the sense that they get slower and slower...
November 20, 2013 at 2:15 am
sqlsurfing (11/20/2013)
Thanks for pointing that out, I haven't experienced that before- didn't know that's possible. Ill have to practice/read more on query plans. Ill give that a try tommorow.
I've...
November 20, 2013 at 2:07 am
Which version of SQL Server?
November 20, 2013 at 1:34 am
Is it possible to post some sample data and desired output?
November 20, 2013 at 1:04 am
sunil.mvs (11/20/2013)
BusnameBusType(No column name)(No column name)
A AC ...
November 20, 2013 at 12:26 am
The intention of the question is very good and it is a nice question, but there are some minor flaws.
I was tempted to select "None of the above", as with...
November 20, 2013 at 12:10 am
SELECT
Busname
,BusType
,MIN(StartDateKey)
,CASE WHEN MAX(ISNULL(EndDateKey,99991231)) = 99991231
THEN NULL
ELSE MAX(EndDateKey)
END
FROM @temp
GROUP BY Busname, BusType
November 19, 2013 at 11:59 pm
November 19, 2013 at 11:54 pm
Please do not crosspost. It wastes peoples time and fragments replies.
Original thread can be found here:
http://www.sqlservercentral.com/Forums/Topic1515541-21-1.aspx
November 19, 2013 at 7:44 am
This one will probably be a good start:
November 19, 2013 at 7:43 am
dastagiri16 (11/19/2013)
hi,i need the text like "TOTAL" ...rollup wont give it...
Please advice
You'll need to add it yourself. SQL Server is not a magic box where everything rolls out exactly how...
November 19, 2013 at 6:54 am
November 19, 2013 at 6:09 am
Viewing 15 posts - 4,186 through 4,200 (of 11,678 total)