Data Integration
- Data Integration
- All Products
Create a mapping to extract data from Account table in Salesforce connection and write it to a new table in Snowflake connection. Get the accounts where created year is 2025 and route the accounts in “USA” to one table and the remaining accounts to another table.
|
|
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Create a mapping to read data from Account table using Salesforce connection and write it to a new table in Snowflake connection. Join the Account and Orders tables on AccountId. Trim all except the last 6 characters from the ID field and filter only for Accounts where Ownership is 2. Find total employees for each Type by counting account IDs. Route the rows where Type is "Customer - Direct" to one table, ones where Type is "Customer - Channel" to a different table, and the remaining to a third table.
|
|
---|---|
|
|
|
|
|
|
|
|
|
|
Combine and extract data from table EMPLOYEE_DETAILS and EMPLOYEE_SALES using the connection SnowflakeAnalytics2. Lookup the region name from the REGION_MASTER table based on region id. Filter only for employees in North America region. Aggregate the records by summing up the sales for each quarter for each Employee. Then create a full name for each employee and sort the data by Region. Route Q1, Q2, Q3 and Q4 records to new tables Q1_sales, Q2_sales, Q3_sales and Q4_sales respectively using the SnowflakeAnalytics2 connection.