Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : JLt/QzPbxnS5oiWsKDxKiw
Microsoft Dynamics CRM (Archived)

export tool

Like (0) ShareShare
ReportReport
Posted on 16 Apr 2017 09:31:04 by

Hi,

can someone point me at a stable tool for exporting entity data to  csv?

I have been using Hiren Solanki's data extractor v 1.0 which I found on codeplex, but it is not reliable - works on entities with simple structures but if there is anything  with as large amount of linking data - notes and activities for example - it always produces memory buffer errors.

anyone know of something better?

thanks

Jamie Lexton

*This post is locked for comments

  • Goloknath Profile Picture
    on 18 Apr 2017 at 13:04:57
    RE: export tool

    just for clarification, let me explain what I'm trying to achieve. I need to export a spreadsheet showing various bits of entity info (notes/activities), including the account, lead or opportunity that they relate to. I can create a view within crm no problem and then export the xml which I then use in xrm toolbox, using a plugin called export to excel.

    my problem is you can specifically request the owning entity's guid when setting up the view, and it appears that editing the xml within the export to excel plugin makes no difference....

  • Goloknath Profile Picture
    on 18 Apr 2017 at 12:31:31
    RE: export tool

    could it be something to di with the visible=false?

    I've tried substituting true but it doesn't work...

    <link-entity name="account" from="accountid" to="objectid" visible="false" link-type="outer"

  • Goloknath Profile Picture
    on 18 Apr 2017 at 12:29:20
    RE: export tool

    I thought that too but it doesn't display the guid....

  • Waqar Sohail Profile Picture
    on 18 Apr 2017 at 12:20:17
    RE: export tool

    ID attribute.

    <link-entity name="account" from="accountid" to="objectid" visible="false" link-type="outer" alias="a_57512d8cb06d477eb28a0e7fa4d77cf8">

          <attribute name="name" />

       <attribute name="accountid" />

        </link-entity>

  • Goloknath Profile Picture
    on 18 Apr 2017 at 12:07:52
    RE: export tool

    hi, 

    need a hand with getting a guid to display in an xml query

    I need the account or lead guid to display but not sure what I need to add to the following (you see I can get the account name itself, but not the guid)

    <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">

      <entity name="annotation">

        <attribute name="subject" />

        <attribute name="notetext" />

        <attribute name="filename" />

        <attribute name="annotationid" />

        <attribute name="overriddencreatedon" />

        <attribute name="ownerid" />

        <attribute name="annotationid" />

        <attribute name="modifiedon" />

        <attribute name="modifiedonbehalfby" />

        <attribute name="modifiedby" />

        <attribute name="isdocument" />

        <attribute name="filesize" />

        <attribute name="createdon" />

        <attribute name="createdonbehalfby" />

        <attribute name="createdby" />

        <order attribute="subject" descending="false" />

        <link-entity name="account" from="accountid" to="objectid" visible="false" link-type="outer" alias="a_57512d8cb06d477eb28a0e7fa4d77cf8">

          <attribute name="name" />

        </link-entity>

        <link-entity name="lead" from="leadid" to="objectid" visible="false" link-type="outer" alias="a_41f694ecac854ddd9e16b58511ab4b83">

          <attribute name="companyname" />

        </link-entity>

        <link-entity name="opportunity" from="opportunityid" to="objectid" visible="false" link-type="outer" alias="a_ed276e7f2280455aa448fdc6d4a6dc4a">

          <attribute name="parentaccountid" />

        </link-entity>

      </entity>

    </fetch>

  • Goloknath Profile Picture
    on 18 Apr 2017 at 12:06:58
    RE: export tool

    hi, 

    need a hand with getting a guid to display in an xml query

    I need the account or lead guid to display but not sure what I need to add to the following (you see I can get the account name itself, but not the guid)

    <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
      <entity name="annotation">
        <attribute name="subject" />
        <attribute name="notetext" />
        <attribute name="filename" />
        <attribute name="annotationid" />
        <attribute name="overriddencreatedon" />
        <attribute name="ownerid" />
        <attribute name="annotationid" />
        <attribute name="modifiedon" />
        <attribute name="modifiedonbehalfby" />
        <attribute name="modifiedby" />
        <attribute name="isdocument" />
        <attribute name="filesize" />
        <attribute name="createdon" />
        <attribute name="createdonbehalfby" />
        <attribute name="createdby" />
        <order attribute="subject" descending="false" />
        <link-entity name="account" from="accountid" to="objectid" visible="false" link-type="outer" alias="a_57512d8cb06d477eb28a0e7fa4d77cf8">
          <attribute name="name" />
        </link-entity>
        <link-entity name="lead" from="leadid" to="objectid" visible="false" link-type="outer" alias="a_41f694ecac854ddd9e16b58511ab4b83">
          <attribute name="companyname" />
        </link-entity>
        <link-entity name="opportunity" from="opportunityid" to="objectid" visible="false" link-type="outer" alias="a_ed276e7f2280455aa448fdc6d4a6dc4a">
          <attribute name="parentaccountid" />
        </link-entity>
      </entity>
    </fetch>

  • M I Mostafa Profile Picture
    4,257 on 16 Apr 2017 at 14:42:21
    RE: export tool

    Excellent. Good to hear. Stick to XRM Toolkit if it does the job.

  • Goloknath Profile Picture
    on 16 Apr 2017 at 12:39:20
    RE: export tool

    just to let all know I am using xrm toolkit and it seems to be doing the trick

    just doing one of the tricky entities now (activities) and will post back if I need to look elsewhere. FYI I have already got crm toolkit but it doesn't provide exactly what I need (not the way I've configured it anyway) and I've installed scribe insight but it will end up being too expensive (as Mohamed suggested)

  • Verified answer
    Gopalan Bhuvanesh Profile Picture
    11,401 on 16 Apr 2017 at 12:33:39
    RE: export tool

    If you come across memory buffer error, find out how the ETL application utilizes the memory.

    You can consider XRMToolbox, Scribe, SSIS depends upon the size of data and flexibility needed.

    Configuration Data Migration Tool is available in the recent SDKs, but I never used with CRM 2011, so not sure whether it would be able to create schema for CRM 2011.

  • Waqar Sohail Profile Picture
    on 16 Apr 2017 at 11:33:45
    RE: export tool

    Have to Tried MS CRM toolkit?  mscrmtoolkit.codeplex.com

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,707 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,679 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans
Loading complete