Skip to main content

Database Migration Tool for Aras Innovator

Introduction

Aras regularly provides "some" open release for updated platform, but they don't provide any tool to upgrade or migrate the database.
Using official "Aras Package Utility" would be the best and easist way to transfer customized content. But in reality, bundle all content to package might be very difficult, or it is too complex to arrange.
This application try to provide an efficient way to migrate database, and to reduce complexity of migration work.

PAY ATTETION
(1) No one is responsible for any damages, losses or consequences, please use it carefully.
(2) After migration, you must review all functions by yourself, something may not transfer perfectly.
(3) This tool only work on database, you need to arrange physical files by yourself, such as client files, libraries, vault.
(4) This tool only design for upgrade process, please do not use in downgrade.
(5) This is not official tool, if you have any doubt, please contact Aras to get their professional support to prevent unexpected problems.

Features

  • All data, including instantiated and customized Items, could be fully migrated.
  • Method and Workflow Map will only migrate the latest version.
  • When configuration conflicts, primitive data will be retained.
  • In principle, this tool is only applicable for Aras Innovator 11.



Download

ArasMigrationTool.zip

Change Log

Version Released
Date
Description
1.00 2021/6/26
  1. First release

Comments

  1. Hello, I have a question regarding your tool. Can it be used to migrate from ARAS 11 to ARAS 12 ?
    Thank you,
    Pratik

    ReplyDelete
  2. I'm sorry about the previous question I seem to ask the wrong question.
    The question I want ask is will you be updating the tool, so that it can be used in ARAS 12
    thank you
    Pratik

    ReplyDelete
    Replies
    1. Thanks for your comments. I mainly work on 11 due to I consider it is a stable version. Therefore, I need additional times to check if this tool can compatible to 12. I believe some modifications are necessary to satisfy differences between 11 and 12.

      Delete
    2. thank you for your reply, really appreciate it :)
      Pratik

      Delete
  3. Hi CyL,
    I try to design my current Innovator 12 to be ready for the next open release (which is not available yet). I always try to keep an eye on recent changes. I work as full time Aras admin and started to work on ways to do own updates. I already have done a self-update on my second instance (including Innovator customizations, own apps and some codetree mods) but I want to extend my current toolset so I am also able to update our heavy customized main database one day. Is it possible to join your project? If yes, how can I contact you?

    Angela (find me at plm-underground . com)

    ReplyDelete
    Replies
    1. Thanks for your comments. But sorry, there is no open project for public.

      Delete
  4. I'm having trouble connecting to V12 database. I get the error "The remote server returned an error: (401) Unauthorized

    ReplyDelete
    Replies
    1. Thanks for your comments. I mainly work on 11 due to I consider it is a stable version. Therefore, this applicaiton was only validated with V11.

      Delete

Post a Comment

Popular posts from this blog

Trigger Sequence of Promotion Events in Aras Innovator

There are several Server Event could trigger Method during item promotion: ItemType: OnBeforePromote, OnAfterPromote; Life Cycle: Transition Pre, Transition Post. Trigger sequence of above events is shown in below figure: It's important to note that "Transition Post" cannot rollback while exception throws because item promotion is finished after "OnAfterPromote" That means even if throwing exception, the life cycle will still stay at promoted state. Please note, all above events will not be triggered when "OnPromote" event exists (due to this will overwrite original system process).

aras.uiShowItemEx Method (aras Object)

aras.uiShowItemEx Method Shows Item with Item node. Syntax aras.uiShowItem( itemNd , viewMode , isOpenInTearOff ) Parameters Name Type Description itemNd Object Required. Item node. viewMode String Optional. Unknown purpose but only supports the following values: tab view (Default) openFile new ※Each supported value will get same result. Therefore, call method and pass undefined for this parameter is OK. isOpenInTearOff Boolean Optional. Specifies whether show Item with tear-off window. true - open in a tear-off window. false - open in a tab. (Default) Return Value An AsyncResult object or a Boolean. Returns AsyncResult object if the Item winodw is opened successfully, otherwise returns false. See Also aras Object Aras Innovator Client Framework

Account and Password Policy in Aras Innovator

Aras Innovator has prepared security policy for account and password and very simple to set up. Account Policy There are two system variables could handle account policy: AccountLockoutThreshold_triesNum: The maximum trying number of login, user account will be locked if exceed. AccountLockoutDuration_minutes: User account locking duration after reach maximum trying number. ※Account policy will only be effective when values of above two variables are greater than zero. Password Policy There are two system variables could handle password policy: User_pwd_symbols_min_number: The minimum characters that must be contained when user set new password. User_pwd_digits_min_number: The minimum digits that must be contained when user set new password.