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
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 656 Datasets
- 115 SQL DataFlows
- 2.2K Magic ETL
- 813 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 81 App Studio
- 45 Variables
- 771 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 77 Workflows
- 23 Code Engine
- 36 AI and Machine Learning
- 19 AI Chat
- AI Playground
- AI Projects and Models
- 17 Jupyter Workspaces
- 410 Distribute
- 120 Domo Everywhere
- 280 Scheduled Reports
- 10 Software Integrations
- 142 Manage
- 138 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive