function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
maheshkovvadamaheshkovvada 

data loader

What is data loader ?What is the use of data loader?Where to use it?

ShamilShamil

Use it to import multiple records of data into Salesforce, such as Contacts, Accounts, or custom object records. 

Simplest way of using it is to import .csv files via tool's user interface. More sophisticated scenarios are: using command line interface, or importing data from a database.

 

Documentation:

http://www.salesforce.com/us/developer/docs/dataLoader/index.htm

jhansisridhar_2011jhansisridhar_2011

Hi Mahesh,

 

The Data Loader is an easy to use graphical tool that helps you to get your data into Force.com objects via insert and upsert operations. The Data Loader can also be used to export data from Force.com objects into any of the destinations mentioned above. You can even use the Data Loader to perform bulk deletions by exporting the ID fields for the data you wish to delete and using that source to specify deletions through the Data Loader.

The Apex Data Loader requires the use of the Force.com API (Enterprise, Unlimited and Developer Editions).

 

Features of the Data Loader include:

  • An easy-to-use wizard interface
  • An alternate command line interface
  • A batch mode interface with database connectivity
  • Support for large files with up to millions of rows
  • Drag-and-drop field mapping ( very flexible in mapping)
  • Support for all objects, including custom objects
  • Detailed success and error log files in CSV format
  • A built-in CSV file viewer.

 

Hope this information will clarify your dbt.

 

if this solution helped out , mark it as solution.

Ulas KutukUlas Kutuk

For more information pls check the wiki

http://wiki.developerforce.com/page/Data_Loader