Viewing 5 posts - 1 through 6 (of 6 total)
There was also problem, that some columns were names as USER so I need to do it like this [ + ColumnName ]
And the results are: 23s,17s, 16s, 16s,...
September 25, 2017 at 8:51 am
September 25, 2017 at 7:20 am
Complete procedure below.
But I will try to concat the SQL statement a run it in one EXEC, we will see.
ALTER PROCEDURE [ctr].[ColumnVariabilityCheck]
@withOutput INT...
September 25, 2017 at 6:21 am
I made the same solution.
1st load all my necessary tables and columns
WITH
DimTables AS (
SELECT
t.[name] AS TableName
...
September 22, 2017 at 8:54 am
Viewing 5 posts - 1 through 6 (of 6 total)