table.schemaName = "0TEACHMEHANA"; table.tableType = COLUMNSTORE; // ROWSTORE is an alternative value table.columns = [ {name = "CUST_ID"; sqlType = NVARCHAR; length = 10;comment = "Customer ID" ;}, {name = "FIRST_NAME"; sqlType = NVARCHAR; length = 20; comment = "Customer First Name" ;}, {name = "LAST_NAME"; sqlType = NVARCHAR; length = 20; comment = "Customer Last Name"; }, {name = "REVENUE_USD"; sqlType = INTEGER ;comment = "Revenue generated in USD";} ]; table.primaryKey.pkcolumns = ["CUST_ID"];