К
Size: a a a
К
ДС
create procedure t1?
as
begin
create table #tab (i int PRIMARY KEY)
insert into #tab values (1)
declare @i int = 0
while @i < 100000
begin
if ((select try_cast(i as int) from #tab) <> 1)
return 1
set @i += 1
end
return 0
end
go
LOADED LIST, REC COUNT 10000
MSG: ALL DONE. Time: 762750 ms. Record per sec: 13,11. Total DB: 0,21 hour. Pool(10 threads): 0 executing / 0 queued
gotcha
------
(0 rows affected)
Completion time: 2021-02-18T00:56:04.4667391+08:00
F
А
F
А