Viewing 15 posts - 931 through 945 (of 8,731 total)
October 5, 2017 at 6:44 am
For those who don't understand the addition of dates.
Datetime is stored internally as 2 integers: one for the date and one for the time. Each date has an...
October 5, 2017 at 6:41 am
Maybe something like this:
IF NOT EXISTS( SELECT * FROM @EntryPoint WHERE name IN( '<ALL>' , '<NONE>'))
DELETE FROM #AllCases
WHERE ISNULL(ColumnEntryPointName, '') NOT IN...
October 4, 2017 at 1:24 pm
This is what I tried.
CREATE TABLE #Dates( SomeDate datetime2)
DECLARE @n int = 0;
WHILE @n < 10000
BEGIN
INSERT INTO #Dates VALUES(SYSDATETIME())
October 4, 2017 at 12:15 pm
October 4, 2017 at 12:03 pm
October 4, 2017 at 7:15 am
I want to look at the various characteristics of the tables in which...
October 3, 2017 at 12:18 pm
October 3, 2017 at 6:37 am
October 3, 2017 at 6:01 am
sipas - Tuesday, October 3, 2017 5:51 AMAmerican dates are weird.
American dates?
October 3, 2017 at 5:58 am
October 2, 2017 at 11:07 am
This appears to be a bug in SQL Server (or a feature?). It's easily corrected if you remove the derived table and use a direct query.
DECLARE...
October 2, 2017 at 11:02 am
Viewing 15 posts - 931 through 945 (of 8,731 total)