Viewing 15 posts - 1 through 15 (of 63 total)
Hmm, not sure I can explain this behaviour but how are you creating (and what it actually is) "index value"?
If it is some number I suggest to use sequence instead...
October 22, 2010 at 2:18 am
TOP also is SQL Server specific construction and not allowed in Oracle.
October 20, 2010 at 6:47 am
Yep the problem is "it seems so". I don't like the word "seems". I would like to find exact place in docs where it is written.
In official description about "contains"...
May 14, 2010 at 8:01 am
See also
Difference between predicates in ON clause vs. predicates in WHERE clause
with description how outer joins theoretically are created.
January 15, 2010 at 4:39 am
mctaff (1/13/2010)
row 351 has a average of rows 1 to 350row 352 an average of rows 2 to 351
As soon as SQL Server will implement full windowing clause (including sliding...
January 15, 2010 at 2:08 am
For more info about SQL set operators read this.
December 19, 2009 at 10:00 am
Suppose I have interval from 100 days back till today (sysdate).
The query then is as follows:
SQL> select to_char(sysdate - rownum, 'D'), count(*)
2 from dual
3 ...
March 4, 2009 at 3:23 pm
Just a small addition for:
"I've heard various answers, but the answer given by one of the panelists, that there hasn't been a widespread adoption of RAC, so why should Microsoft...
March 4, 2009 at 8:18 am
Lynn Pettis (2/18/2009)
I'm pretty sure SQL Server suported the *=* full outer join,
At least it is not in SQL Server docs
http://msdn.microsoft.com/en-us/library/ms177634(SQL.90).aspx
The outer join operators (*= and =*) are...
February 18, 2009 at 1:58 pm
LEFT JOIN and RIGHT JOIN are completely the same, if tables are switched.
Just the same for *= and =* in case the columns/variables/constants are switched for the old syntax.
February 18, 2009 at 8:31 am
Jeff Moden (2/16/2009)
Roy Ernest (2/16/2009)
Calm down people ... Calm down...:D It is a Monday afternoon...:D Not the best day to have arguments.... 😉
It's a GREAT day for arguments! :P...
February 16, 2009 at 2:11 pm
Perry Whittle (2/16/2009)
Jeff Moden (2/15/2009)
February 16, 2009 at 1:35 pm
Bruce W Cassidy (2/16/2009)
[font="Verdana"]I have yet to see a business judge an RDBMS on "which is easier to program in?"
[/font]
At least on 2006 the business chose Oracle 😉
Cannot find anything...
February 16, 2009 at 1:31 pm
There is difference between join condition and where condition for outer joins. Briefly if join condition is not satisfied then rows from base table are kept and values for outer...
February 16, 2009 at 12:46 pm
jgrubb (2/12/2009)
Wow. That page is wildly wrong in many cases. It's written by an Oracle User group, and really doesn't know all SQL Servers capabilities, and...
February 12, 2009 at 8:01 am
Viewing 15 posts - 1 through 15 (of 63 total)