Viewing 15 posts - 1 through 15 (of 19 total)
February 21, 2018 at 2:49 am
This code is interesting but seems to be completly bugged :/
I ran the first sample : exec sp_sudoku_solve_simple '023780460000620000060304080001000534280000097439000100010205040000036000056018370'
the exposed solution is completly false, and almost alls initals...
February 20, 2018 at 6:06 am
vk-kirov (12/17/2009)
To those people who answered '1,3,4': is the condition 'all active tasks have stopped referencing them' sufficient for dropping the table? The answer is 'No, it is not'. If...
December 17, 2009 at 8:16 am
I totally disagree !
This ("When the session that created it ends") unchanged and without further explanation is false, because if there is another connection that accesses this global table it...
December 17, 2009 at 7:08 am
One more time (as usual ? as often ? ) , "all of these apply".
December 10, 2009 at 2:11 am
"doubly linked lists".
Well, i learn something today 🙂
I thought it was B-Tree.
I don't like questions where all answers are right, it don't learn us the limits, it makes me confusing,...
December 10, 2009 at 1:55 am
i d'ont understand...
I selected 'national character varying', told me is wrong and that the answer was ... 'national character varying' :blink:
December 5, 2009 at 6:11 am
Well, i'm surprising by the answer (thought about char(1) or nchar(1), and the answer is nvarchar(1) ?
MMmmmm... and what about the 2 bytes added in header ?
I can't agree !...
December 4, 2009 at 7:53 pm
declare
@d1 decimal(38,10),
@d2 decimal(38,10)
SELECT
@d1 = 1.67574,
@d2 = 10000
SELECT
d1 = @d1,
d2 = @d2,
d1_div_d2 = @d1 / @d2,
cast_div = CAST(@d1 / @d2 AS DECIMAL(38,10)),
num_div = 1.67574 / 10000.0,
cast_num_div = CAST(1.67574 / 10000.0 AS...
December 4, 2009 at 5:05 am
just study through them and learn the answers
well... i can't agree this one.
study through them, yes, learn throught them also, understanding, learning mechanisms is right.
Learning answers and become a parrot......
December 4, 2009 at 2:02 am
Yes, you knew Datetime.
But Sql Server 2008 provides new datatypes to store -between others - or only a date or only a time.
In the answer, you have a link to...
December 1, 2009 at 10:14 am
Lynn Pettis (11/30/2009)
Dude76 (11/30/2009)
I will personaly prefer to do something like cast(cast(getdate() as int) as datetime) to obtain de date of the day at midnight rather using datediff+dateadd functions.
There has...
November 30, 2009 at 7:21 am
I will personaly prefer to do something like cast(cast(getdate() as int) as datetime) to obtain de date of the day at midnight rather using datediff+dateadd functions.
November 30, 2009 at 3:15 am
So, it seems i'm not alone being trapped by create/schedule a job for the 2008 Express Edition 😀
November 26, 2009 at 8:04 am
Not an every day problem for us (hi from France ^^ ), but as we have to communicate in english for international, it is an usual question 😀
November 24, 2009 at 7:16 am
Viewing 15 posts - 1 through 15 (of 19 total)