Viewing 5 posts - 1 through 5 (of 5 total)
You can never work from home the same as you can work from work. And as far as working remotely goes with regards to COVID 19 the fact remains you...
March 12, 2020 at 1:00 pm
(38, 1) seems to work. (38,0) only works when mantissa < 5. Apologies.
November 18, 2019 at 4:55 pm
declare @num decimal
set @num = 28.6 --28.7
select case when (@num * 10) % 10 >= 7
then
ceiling(@num)
else
floor(@num)
end
November 18, 2019 at 1:41 pm
The issue of HADR used to be difficult to set up in previous versions of SQL Server and Windows. However the multitude of new HADR configuration set ups are always...
September 11, 2019 at 1:32 pm
Viewing 5 posts - 1 through 5 (of 5 total)