Viewing 15 posts - 91 through 105 (of 562 total)
The one thing that's still missing is the...
March 20, 2019 at 8:30 am
March 20, 2019 at 8:20 am
DECLARE @T VARCHAR(300) = 'A_Table_Name' ; DECLARE @C NVARCHAR(4000) = '''--''' SELECT @C = @C + '
,'+COLUMN_NAME FROM information_schema.COLUMNS where TABLE_NAME =...
March 18, 2019 at 8:29 am
Not a complete anwser/solution yet, but for readers of this thread and me this might help :
The OUTPUT Clause:
The OUTPUT Clause for UPDATE Statements
March 18, 2019 at 4:14 am
March 4, 2019 at 5:55 am
SELECT * FROM A_Table
JOIN B_table
ON A.something= B.something
All columns of A_table and of B_table are used. If there are...
March 4, 2019 at 5:50 am
SELECT * FROM A
WHERE
EXISTS (SELECT * FROM B)
AND
EXISTS (SELECT * FROM C)
Selects all rows from table...
March 4, 2019 at 5:31 am
February 14, 2019 at 2:32 am
I was just asked for a job. And was asked if I could help with an overview of some info. Told how I would solve the problem with a simple...
February 14, 2019 at 2:05 am
Thanks all, I'll give this a go tomorrow.
I used an auxiliary calendar and picked up all combinations of days of the 28 of February and the 1st of march.
This would...
February 6, 2019 at 11:52 am
Is 2014 similar to 1990 because Germany won the FIFA World Cup both years?
Yeah that is ok, your choice.
More obvious would be: Dates fall om the same...
February 5, 2019 at 3:06 am
What is the size of the index ?
How many rows are in each index page ? (Average).
For Clustered indexes there are some 'methods' to obtain the position...
February 5, 2019 at 2:58 am
--
-- Convert dd/mm/yyyy to a datetime format independend of regional and language settings.
--
declare @datestring varchar(200) = '24/01/2019'
select substring(@datestring,7,4)+substring(@datestring,4,2)+substring(@datestring,1,2)
select CONVERT(datetime,substring(@datestring,7,4)+substring(@datestring,4,2)+substring(@datestring,1,2))
When sure that...
January 31, 2019 at 7:49 am
This looks like the same problem :
No solutions, but some workarounds are suggested there,
Ben
January 24, 2019 at 8:02 am
Viewing 15 posts - 91 through 105 (of 562 total)