Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- Apex Code Development
- :
- Can I update the IsDeleted field through Dataloade...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 01:43 AM
hi,
I have few deleted records in salesforce Object . I want to perform undelete Operation through datalaoder.
can I update IsDeleted = false through dataloader ?
thanks in advance.
Thanks
Ankit Khandelwal
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 02:27 AM
Hi,
How you are doing undelete operation?
Is it with command line or with UI Extract ?
Anil.B
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 02:29 AM
Through UI Extract
Thanks
Ankit Khandelwal
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 02:42 AM
Hi
If your are doing with UI then you get a CSV file of all deleted records just upsert all of those .
Then you dont need IsDeleted =false it automatically becomes false when you insert records.
Anil.B
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 02:46 AM
isDeleted has read-only access....if you want to set the value as false via dataloader, that call is by queryAll. Even it is also having read-only access to the field isDeleted
My Blog
Kiran
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 08:21 AM
You can use custom data loaders to (possibly) recover the data, but the Apex Data Loader has no function for "undelete" in its interface (as far as I can tell).
~ sfdcfox ~
I am a sandwich. That is all.
Re: Can I update the IsDeleted field through Dataloader ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-02-2013 08:33 AM
I agree with fox, rather you can go with this approach:
http://theenforcer.net/2011/08/mass-undeleting-rec
Thanks
Ankit Arora
Certified Developer | Twitter
Don't forget to give KUDOS if post helped you.
Latest Blog Posts : Streaming API- Easy Code AND Uploading Multiple Attachments into Salesforce - Simple Code
If a reply to a post answers your question or resolves your problem, please mark it as the solution to the post so that others may benefit.

