Building Applications with Force.com and VisualForce(Dev401)(十七):Data Management: Data management Tools
ev401-018:Data Management: Data management Tools
Module Objectives
1.List objects exposed in the import wizards.
2.List some objects not exposed in the import wizards.
3.List some capabilities of API-based tools that the import wizards do not have.
4.State hoe to obtain the Data loader.
5.List the capabilities of the Data loader.
Tools for Executing a Data Migration
1.Via Application Import wizards:Account/Contact/leads/Solutions/custom Objects
2.Via Web Service API:Data Loader/Partner Tools/Custom-built Tools/Open Source Tools
Import Wizards
1.Import Wizards
- Easy to use tool to load Accounts,Contacts,Leads,Solutions, or Custom Objects.
- Load 50,000 records or less.
- Prevent duplicates:
.Account Name and Site;Account IDs
.Contact Email Address;Contact name;Contact ID
.Lead Email Address;lead IDs.
Overview of API-Based Tools
1.Load any object support by the API.
2.Load more that 50,000 records.
3.Schedule regular data loads such as nightly feeds.
4.Export data for backup.
5.Mass delete supported objects
Apex Data Loader
1.The Apex Data Loader :
- Is a fully supported salesforce.com product.
- Supports import from CSV or export to CSV.
- Supports loading from or exporting to a database via JDBC.
- Supports custom relationships for upsert.
- Can be run from command line.
Obtaining the Data Loader
1.Available in:UE,EE and DE Orgs
2.System Administrators download through the application
-.Setup|Data Management|data Loader
- Download the Data Loader link and save
- Launch the Install Shield wizard
3.Open Source Project
- SourceFreoge.net
- Not supported by salesforce.com
Which Tool Do You Use?
1.Wizard vs API is the essential question
2.Depends on operations you want to perform
3.Depends on the objects involved
4.Depends on your scheduling needs
5.Depends on your de-dupling needs
6.Depends on the number of records involved
7.Depends on the data sources/destinations involved
Review
1.Can you import data into custom objects using the Salesforce Import Wizard?
Yes
2.How do you decide which import tool to use?
3.True or False:An External ID field is always unique.
False
Dev401-019:Data Management: Practical Application
Module Objectives
1.Configure the Data loader to run via the command line interface.
2.Encrypt a password using the encrypt.bat utility
3.Create maping files via the Data Loader GUI to support upsert with relationship use case.
4.Run the Data loader via the command line to upsert data
Building Applications with Force.com and VisualForce(Dev401)(十七):Data Management: Data management Tools的更多相关文章
- Building Applications with Force.com and VisualForce (DEV401) (二) : Application Essentials:Designing Application on the Force.com Platform
Dev 401-002:Application Essentials:Designing Application on the Force.com Platform Course Objectives ...
- Building Applications with Force.com and VisualForce(Dev401)(十八):Visualforce Pages: Introduction to Visualforce
Dev401-020:Visualforce Pages: Introduction to Visualforce Course Objectives1.Understand the benefits ...
- Building Applications with Force.com and VisualForce (DEV401) (二二):Visualforce Componets (Tags) Library Part II
Dev401-023:Visualforce Pages: Visualforce Componets (Tags) Library Part II Apex:pageBlockTable1.A ...
- Building Applications with Force.com and VisualForce(Dev401)(十五):Data Management: Data management Overview
Dev401-016:Data Management: Data management Overview Course Objectives1.List typical data management ...
- Building Applications with Force.com and VisualForce(Dev401)(十):Designing Applications for Multiple Users: Building Business Processes that You Want
Dev401-011: Building Business Processes that You Want Course Objectives1.Describe the capabilities o ...
- Building Applications with Force.com and VisualForce (DEV401) (四):Building Your user Interface
Dev 401-004:Application essential:Building Your user Interface: Module Agenda1.Custom Applications2. ...
- Building Applications with Force.com and VisualForce (DEV401) (三):Application Essential:Building Your Data Model
Dev 401-003:Application Essential:Building Your Data Model Object Relationships1.Link two objects- P ...
- Building Applications with Force.com and VisualForce(Dev401)(七):Designing Applications for Multiple users:Managing your users' experience I
Dev 401-007 Designing Applications for Multiple users: Managing your users' experience part 1 Module ...
- Building Applications with Force.com and VisualForce (DEV401) (二五):Visualforce Controller
Dev401-026:Visualforce Pages: Visualforce Controller Module Objectives1.Identify the functionality ...
随机推荐
- Js对于数组去重提高效率一些心得
最近在找工作,好几次面试都问过数组去重的问题.虽然问的都不一样,但是核心思想是没有变的. 第一种是比较常规的方法 思路: 构建一个新的数组存放结果 for循环中每次从原数组中取出一个元素,用这个元素循 ...
- Microsoft Translator发布粤语文本翻译
今天,Microsoft Translator发布了粤语的文本翻译,新的语言增加将继续丰富微软翻译产品的生态系统*,让更多组织和个人能够快速且高效地实现翻译应用.在中国,大有约5500万人使用粤语(语 ...
- 创建SpringMVC项目过程
1.导入对应jar包 <properties> <spring.version>5.0.2.RELEASE</spring.version> </proper ...
- 什么是HDFS?算了,告诉你也不懂。
前言 只有光头才能变强. 文本已收录至我的GitHub精选文章,欢迎Star:https://github.com/ZhongFuCheng3y/3y 上一篇已经讲解了「大数据入门」的相关基础概念和知 ...
- p标签内不能嵌套块级标签
今天突然发现一个问题,那就是p标签内不能嵌套块级标签 例如: <p><p></p></p> 会被浏览器解析成 我又把 div 嵌套在里面,发现还是这样 ...
- 【技巧】歪脑筋优化flexbox瀑布流布局方案
效果先行 需求 在大量"不定宽"元素并排的布局模式下,上图是我们想要的最佳布局但是FlexBox布局虽然枪弹但并不能完全呈现以上布局,于是我们需要结合FlexBox作下小的改动即可 ...
- 原生js实现在表格用鼠标框选并有反选功能
今天应同学要求,需要写一个像Excel那样框选高亮,并且实现框选区域实现反选功能.要我用原生js写,由于没什么经验翻阅了很多资料,第一次写文章希望各位指出不足!! 上来先建表 <div clas ...
- 【Java】机考常用知识
基本操作 数组 声明数组 方法一: int a[] = null; //声明一维数组 //int[] a = null; 也行,个人习惯 a = new int[10];//分配内存给一维数组 方法二 ...
- 深入学习JAVA注解-Annotation(学习过程)
JAVA注解-Annotation学习 本文目的:项目开发过程中遇到自定义注解,想要弄清楚其原理,但是自己的基础知识不足以支撑自己去探索此问题,所以先记录问题,然后补充基础知识,然后解决其问题.记录此 ...
- JetBrains全系列产品2019.3.2注解教程
1.JetBrains官方网站 https://www.jetbrains.com/ JetBrains是一家捷克的软件开发公司 IDE工具: * IntelliJ IDEA 一套智慧型的Jav ...