Viewing 15 posts - 556 through 570 (of 8,731 total)
May 3, 2018 at 8:11 am
May 2, 2018 at 12:39 pm
May 2, 2018 at 11:44 am
May 1, 2018 at 12:38 pm
I haven't tested, but this should work.
CREATE FUNCTION dbo.fn_ck_newBidIsHigher(@auction int, @bid numeric(8,2))
RETURNS bit
BEGIN
RETURN (SELECT CAST(CASE WHEN EXISTS( SELECT 1 FROM Bid WHERE...
May 1, 2018 at 10:39 am
It's great that you found a solution and posted it on here. Thank you very much for doing it.
April 30, 2018 at 7:36 am
I can post a solution for this but it would work on SQL Server. You're working with Oracle, so you should check on an Oracle forum or http://stackoverflow.com/
April 26, 2018 at 10:09 am
I've always find simpler to use cross-tabs instead of the pivot operator. It's more flexible and it can become simpler and faster.
SELECT BookType,
SUM( CASE...
April 26, 2018 at 10:00 am
WITH (SORT_IN_TEMPDB = ON, ONLINE...
April 26, 2018 at 9:54 am
April 26, 2018 at 9:53 am
Steve Jones - SSC Editor - Thursday, April 26, 2018 9:26 AMPower BI
One more vote for this.
April 26, 2018 at 9:45 am
April 26, 2018 at 9:29 am
April 24, 2018 at 10:56 am
I'm very new to SSAS.
Where would I change the format?
I've looked around the...
April 23, 2018 at 2:58 pm
Viewing 15 posts - 556 through 570 (of 8,731 total)