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
Categories
- 10.6K All Categories
- 1 APAC User Group
- 12 Welcome
- 36 Domo News
- 9.6K Using Domo
- 1.9K Dataflows
- 2.4K Card Building
- 2.2K Ideas Exchange
- 1.2K Connectors
- 339 Workbench
- 252 Domo Best Practices
- 11 Domo Certification
- 461 Domo Developer
- 47 Domo Everywhere
- 100 Apps
- 703 New to Domo
- 84 Dojo
- Domopalooza
- 1.1K 日本支部
- 4 道場-日本支部へようこそ
- 22 お知らせ
- 63 Kowaza
- 296 仲間に相談
- 649 ひらめき共有