How to add multiple commands in one Transform inside a dataflow?

How do I make so I can insert multiple commands in one Transform box. For example, I am adding multiple indexes and don't want to have to create them in multiple transforms.
create index SO1 on tech_salesorders(Sales_Order_ID)
create index SO2 on tech_salesorders(Customer_Organization_ID)
create index SOL1 on tech_salesorderlines(Sales_Order_ID)
create index SOL2 on tech_salesorderlines(Sales_Order_Line_ID)
create index ARI1 on tech_arinvoices(AR_Invoice_ID)
create index ARIL1 on tech_arinvoicelines(AR_Invoice_ID)
create index ARIL2 on tech_arinvoicelines(AR_Invoice_Line_ID)
create index ARIL3 on tech_arinvoicelines(Sales_Order_ID)
create index ARIL4 on tech_arinvoicelines(Sales_Order_Line_ID)
create index ORG1 on tech_organizations(organization_ID)
Best Answer
-
I wasn't able to do it in 1 dataflow but in 2.
Transform 1
create procedure indexing()
begin
alter table tech_salesorders add index(`Sales_Order_ID`, `Customer_Organization_ID`);
alter table tech_salesorderlines add index (`Sales_Order_ID`, `Sales_Order_Line_ID`);
alter table tech_arinvoices add index (`AR_Invoice_ID`);
alter table tech_arinvoicelines add index (`AR_Invoice_ID`, `AR_Invoice_Line_ID`, `Sales_Order_ID`, `Sales_Order_Line_ID`);
alter table tech_organizations add index (`Organization_ID`);
End
Transform 2
Call indexing()
2
Answers
-
I wasn't able to do it in 1 dataflow but in 2.
Transform 1
create procedure indexing()
begin
alter table tech_salesorders add index(`Sales_Order_ID`, `Customer_Organization_ID`);
alter table tech_salesorderlines add index (`Sales_Order_ID`, `Sales_Order_Line_ID`);
alter table tech_arinvoices add index (`AR_Invoice_ID`);
alter table tech_arinvoicelines add index (`AR_Invoice_ID`, `AR_Invoice_Line_ID`, `Sales_Order_ID`, `Sales_Order_Line_ID`);
alter table tech_organizations add index (`Organization_ID`);
End
Transform 2
Call indexing()
2
Categories
- 10.5K All Categories
- 6 Connect
- 916 Connectors
- 250 Workbench
- 460 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 476 Datasets
- 188 Visualize
- 251 Beast Mode
- 2.1K Charting
- 11 Variables
- 16 Automate
- 354 APIs & Domo Developer
- 88 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 245 Distribute
- 62 Domo Everywhere
- 242 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 170 Product Ideas
- 1.2K Ideas Exchange
- 10 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive