Viewing 15 posts - 226 through 240 (of 253 total)
Thanks for the quick reply.
It says that OpenRowset is an alternative to accessing tables in a linked server and is a one-time, ad hoc method of connecting and accessing remote...
February 21, 2011 at 10:04 am
Interesting article, but I have a question, which hopefully will save me a lot of hours:
In Oracle 10 I do it in one select statement, using START WITH and CONNECT...
December 10, 2010 at 7:14 am
Fantastic!
Thanks a lot!
October 1, 2010 at 6:04 am
Before I will test it, I have a query, please:
I understood from Twitter that they have just changed (September 2010) their authentication flow to use oAuth authentication method (it points...
September 29, 2010 at 2:17 am
Nice article, but I wonder, what would be a performance using this PREV and NEXT join statements, as well as to ask
if there is any faster way to implement Oracle's...
August 21, 2010 at 10:23 am
Second one is the correct result.
I have just managed to do it using SUM OVER and ROW_NUMBER OVER and CASE on their result.
It is too ugly, so any aesthetic way...
April 28, 2009 at 1:26 am
Thanks, but adding of
UNION ALL
SELECT 1,6,100,1,100,15
my example will return zero duration for this Top record. This is a place to fix my explanation's mistake - in case of Top...
April 27, 2009 at 1:24 pm
Using of a CASE shall slow you down. Why not to use UNION ALL instead?
If I understand correctly, there're might be different cases which you can manage in the follow...
April 27, 2009 at 1:10 pm
FIFO is fine - the first you get.In my example I have find the first Commercials by there sequence
ROW_NUMBER() OVER (PARTITION BY commercial_break_id, commercial_id ORDER BY commercial_break_id,com_break_line)
April 27, 2009 at 8:13 am
Wayne,
Thanks for the reply. There's an automatic booking process which works OK.
But the normal situation in TV business is that the Sales department can decide on the fly,
close to the...
April 27, 2009 at 7:57 am
Hi Bob,
Thanks for the quick reply of yours. The result set I expect to have is as follow:
commercial_break_id commercial_id duration
1 ...
April 27, 2009 at 6:42 am
Jeff,
Instead of talking and talking and talking and talking and talking
just copy, paste and run my code... You'lll find out that it works like a charm
December 11, 2008 at 11:57 pm
Here is a working idea, as you have asked.
Tested on SQL2005 : took it from Oracle, removed FROM DUAL and changed allias from dates to date (DATE is...
December 11, 2008 at 1:07 pm
Because
All I want to put City and State information in front of Project
means for me that all the calculations should be done for the group of those three, in...
December 11, 2008 at 12:17 am
Viewing 15 posts - 226 through 240 (of 253 total)