Viewing 15 posts - 2,026 through 2,040 (of 3,348 total)
sknox (9/6/2012)
Hugo Kornelis (9/6/2012)
FROM Table1 AS t CROSS APPLY (correlated subquery) AS s ON s.Col1 = t.Col1
FROM Table1 AS t CROSS APPLY dbo.MyFunction(t.SomeColumn) AS...
September 6, 2012 at 11:11 am
Rich Weissler (9/6/2012)
September 6, 2012 at 9:02 am
Narud (9/6/2012)
I think that is because CROSS APPLY is more like not use explicit joins, as in SQL ANSI '92.
I'd put it differently. The only difference between CROSS APPLY and...
September 6, 2012 at 9:01 am
Good, solid question, Ron. And on a subject that probably can use a bit more propaganda; I think many SQL Server people still don't really know what APPLY is and...
September 6, 2012 at 12:30 am
Raghavendra Mudugal (9/5/2012)
L' Eomot Inversé (9/5/2012)
Raghavendra Mudugal (9/5/2012)
September 5, 2012 at 3:34 am
bitbucket-25253 (8/31/2012)
sknox (8/31/2012)
bitbucket-25253 (8/30/2012)
Nice question on the basics...A better supporting document/respected DBA is this blog posting by Steve Jones
Agreed. Also, if you haven't voted on the Connect submission for...
August 31, 2012 at 7:10 am
DugyC (8/31/2012)
...giving the following output...
1SCREW
2SHOVEL
3SAW
...whereas if you use a permenant table 'tmp', the output is subtly different...
1SCREW
3SAW
2SHOVEL
Striclty speaking, since there is no ORDER BY on the SELECT statement, these two...
August 31, 2012 at 5:34 am
DugyC (8/30/2012)
Had to answer by process of elimination
Thanks, Dugy!
Frankly, I am a bit disappointed that the site moderators included the number of correct answers. I had included a note that...
August 30, 2012 at 4:03 am
Gazareth (8/30/2012)
Got 3 of the 4 - knew bitmap indexes were available on other DB software, thought it might have been introduced with 2012.
Thought 260 columns for...
August 30, 2012 at 3:17 am
Thanks, Koen! (EDIT: And Braindonor, who added a reply while I was typing)
I submitted this question quite a long time ago - and I found that I had to spend...
August 30, 2012 at 1:22 am
udayroy15 (8/29/2012)
Yes both script execute successfully, using SQL server version 9.0.5000 [Sql server 2005]With "Command(s) completed successfully".
Did you have the tables set up as described in the question text?
August 29, 2012 at 1:39 am
I've raised a documentation bug for this issue: https://connect.microsoft.com/SQLServer/feedback/details/759944/documentation-of-isdate-function-incorrect
@andrew: That part is not actually incorrect, but it is (in my opinion) badly phrased. I would personally prefer to use the...
August 28, 2012 at 3:15 am
An interesting question - especially because the correct answer (and it is correct, as can be easily proven by running the code) is not what the documentation predicts.
The documentation on...
August 28, 2012 at 2:57 am
Kenneth.Fisher (8/27/2012)
August 27, 2012 at 2:54 pm
Viewing 15 posts - 2,026 through 2,040 (of 3,348 total)