· 6 years ago · Aug 06, 2019, 07:18 AM
1Deployment failed with Deployment failed with exception 'Failed to deploy DDL script, SDK helper app return failure '-1'' -> Failed to deploy DDL script, SDK helper app return failure '-1'
2
3*** Error : (9,59) 'Type 'DatabaseProject1.dbo.MyTableType' does not exist.'
4*** Compile failed !
5
6CREATE TYPE IF NOT EXISTS [dbo].[MyTableType]
7 AS TABLE
8 (
9 [id] string,
10 [name] string
11 );
12
13CREATE PROCEDURE IF NOT EXISTS [dbo].[MyProcedure](@table dbo.MyTableType)
14AS
15BEGIN
16 OUTPUT @table
17 TO "/Output/ReferenceGuide/DDL/Procedure/MyTable.csv"
18 USING Outputters.Csv();
19END;
20
21*** Error : (9,59) 'Type 'DatabaseProject1.dbo.MyTableType' does not exist.'
22*** Compile failed !