Viewing 15 posts - 196 through 210 (of 819 total)
Koen Verbeeck (4/20/2016)
Still 100% correct answers after all this time 😀
I will not be surprised if someone is able to get it wrong!
There is no limit to the jinx!
April 20, 2016 at 6:19 am
Steve, the right event is "DROP TABLE" instead of "DELETE TABLE".
April 11, 2016 at 12:56 am
The correct answer works with numeric column, but it doesn't with other types.
April 7, 2016 at 6:17 am
Stewart "Arturius" Campbell (4/6/2016)
Interesting, never thought of doing it that wayNice question, thanks Horia
+1
April 7, 2016 at 1:53 am
Good question!
I revised some features of temp tables.
April 6, 2016 at 1:27 am
Iulian -207023 (3/30/2016)
But why 2 on this assignment?
SELECT @SelectVariable = ID
FROM @Table
Since they were inserted in as 0,2,1 the last value would be expected to be 1, like...
March 31, 2016 at 12:56 am
Bob JH Cullen (3/17/2016)
March 17, 2016 at 4:23 am
I think there's a typo:
CREATE SECURITY POLICY rls_CustomerFilter
ADD FILTER PREDICATE dbo.rls_customer_check(customerid)
ON dbo.CustomerAccessList;
GO
"customerid" instead of "username" passed as parameter to the inline function.
Anyway, the typo doesn't change the...
March 17, 2016 at 3:09 am
Rich Mechaber (3/14/2016)
Scratched my head a bit at that first ORDER BY (on the INSERT). Was that just smoke to trip us up?🙂
Rich
No, the ORDER BY in the SELECT...
March 14, 2016 at 9:20 am
Kaye Cahs (3/11/2016)
I'm not arguing that the answer is incorrect....
March 11, 2016 at 7:41 am
When execute below code then error message come, not * (star).
SELECT TRY_CONVERT(VARCHAR(1), 234523)
An error
Msg 195, Level 15, State 10, Line 1
'VARCHAR' is not a recognized built-in function name.
When execute below...
March 2, 2016 at 3:13 am
The strange thing is that this code returns NULL using NVARCHAR(1)
SELECT TRY_CONVERT(NVARCHAR(1), 234523)
March 2, 2016 at 1:32 am
Hugo Kornelis (2/18/2016)
Carlo Romagnano (2/18/2016)
That's easy!But, try to answer this:
"What's the resut?"
SELECT TRY_CONVERT(VARCHAR(1), {D'2011-MAY-01'})
:-D:-D:-D
The correct answer to this question is "it depends".
Now my question to you is if you can...
February 18, 2016 at 3:27 am
Viewing 15 posts - 196 through 210 (of 819 total)