Skip to main content

Posts

NAV 2013 R2 - How to Restore Selected companies - Powershell (Using Service Tier)

Hi all, As discussed in earlier post, we will see how to take Restore backup in a new database. In this post we will list down the steps to restore the backup taken using powershell service commandlet. UPDATE - IF you face issues of Schema During This Process Please refer the Post Here for Issue Resolution. If you haven't read the Previous post, please refer Index Post here . Let's check the Content of Backup Taken Via Emport-NavData. Microsoft have provided a Commandlet for the same i.e  Get-NAVDataFile. This Commandlet takes file Location and Name as parameter and returns the details of Content of the backup File. Open Powershell and Let's check the two file content using Get-NAVDataFile = -------------------------------------------------------------- Get-NAVDataFile -FileName "c:\Two_Comapniesbackup_Service.navdata" --------------------------------------------------------------- So its clear from the Result of Commandlet that the above fi

NAV 2013 R2 - How to Restore Selected companies - Powershell (Using SQL Database).

Hi all, As discussed in earlier post, we will see how to take Restore backup in a new database. In this post we will list down the steps to restore the backup taken using Powershell. UPDATE - IF you face issues of Schema During This Process Please refer the Post Here for Issue Resolution. If you haven't read the Previous post, please refer Index Post here . From the Task Performed in Earlier Posts Backup From Powershell, i have below files as shown Below -

NAV 2013 R2 - How to Backup Selected companies - Windows / Web Client.

Hi all, In this post we will list down the steps to take backup using Windows Client. * Steps Remain Same for Web Client. UPDATE - IF you face issues of Schema During This Process Please refer the Post Here for Issue Resolution. If you haven't read the Previous post, please refer to Index of Posts . Pre-Requisites - To export or import data from a Microsoft Dynamics NAV database, you must be a user in the Microsoft Dynamics NAV database, and your user account must have a permission set that enables you to export or import data, such as the SUPER permission set.

NAV 2013 R2 - How to Backup Selected companies - Powershell (Using Service Tier).

Hi all, In this post we will list down the steps to take backup using power shell & Service Instance. If you haven't read the Previous post, please refer to Index of Posts . We will see usage of below listed 3 & 4 Commandlet options in this post. 3. UseNST_AllCompanies 4. UseNST_SomeCompanies Let's see how to use each of them.