relates to IID 10211
Ivan mentioned he was aware this was the case but resolving it will be very time consuming. Discuss with him how you want him to proceed.
ADS 14.0.8-3
Types are defined as follows:
CREATE TYPE dm_QueriesWithIdentityId AS TABLE (Id BIGINT NOT NULL IDENTITY(1,1), Query NVARCHAR(MAX) NOT NULL, PRIMARY KEY CLUSTERED (Id ASC))
ADS generates it as:
CREATE TYPE [dbo].[dm_QueriesWithIdentityId] AS TABLE (Id bigint NOT NULL, Query nvarchar(max) NOT NULL);
The parts missing is the Identity & Primary Key
New Extraction/Scripting methods create for this. Need to test and back port to version 14 for customer.
Issue #11659 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build 15.0.0-dev-99 |
No time estimate |
1 issue link |
relates to #10211
Issue #10211User Defined Data Types with multiple column is not extracted correctly |
New Extraction/Scripting methods create for this. Need to test and back port to version 14 for customer.