-
Interactive DashboardsCreate interactive BI dashboards with dynamic visuals.
-
End-User BI ReportsCreate and deploy enterprise BI reports for use in any vertical.
-
Wyn AlertsSet up always-on threshold notifications and alerts.
-
Localization SupportChange titles, labels, text explanations, and more.
-
Wyn ArchitectureA lightweight server offers flexible deployment.
-
Wyn Enterprise 7.1 is ReleasedThis release emphasizes Wyn document embedding and enhanced analytical express...
-
Choosing an Embedded BI Solution for SaaS ProvidersAdding BI features to your applications will improve your products, better serve your customers, and more. But where to start? In this guide, we discuss the many options.
-
Embedded BIEmbed reporting & analytics within your own custom apps.
-
Self-ServiceEnable users to create custom ad hoc reports and dashboards.
-
MultitenancyEnhance your SaaS apps with a multitenant BI platform.
-
Data Governance and ModelingTransform raw data into insights quickly to reveal trends.
-
Scheduled DistributionSend data insights via scheduled email and chat notifications.
-
Extensible SecurityWyn delivers extensible security for your access control needs.
-
Visual GalleryInteractive sample dashboards and reports.
-
BlogExplore Wyn, BI trends, and more.
-
WebinarsDiscover live and on-demand webinars.
-
Customer SuccessVisualize operational efficiency and streamline manufacturing processes.
-
Knowledge BaseGet quick answers with articles and guides.
-
VideosVideo tutorials, trends and best practices.
-
WhitepapersDetailed reports on the latest trends in BI.
-
Choosing an Embedded BI Solution for SaaS ProvidersAdding BI features to your applications will impr...
-
How to Backup and Restore your Wyn Database
This article walks through the process of how to backup your Wyn Database and then how to restore to it.
The Wyn Database is hosted on one of 4 different options of database providers:
- PostgreSQL (Default installation uses this)
- SQLServer
- MySQL
- Oracle
The steps for all of these follow the same process, but the visuals are going to walk through the Postgres version.
What is the Database?
The Wyn Database is where the information that Wyn runs off of is stored. It is configured by your installation and configuration of Wyn.
There are two types of implementations of the database.
Standard databases set up:
There are three standard Wyn Databases; the Identity Server, the Data Cache, and the Server Data.

These are split between their relative information sector.
- The Identity Server or IS is used for the identity services.
- The Data Cache is what stores the information that Wyn has for embedded data sources such as excel, csv, etc.
- The Server Data contains all the documents, categories, and the other information that Wyn contains and runs on.
Single database and the standard set up.
Single database will have all the same information in a partitioned database. The only performance concerns around this deployment are when it comes to the number of interactions that the single database can have rather than the split standard set up.
You can not transition from one configuration to another.
How to back up the server:
For the standard Wyn installation with default settings, your server will be using an internal Postgres server running on 5444.
The connection string can be found on the Wyn.conf in the following section.
Note: It is always a good idea to back up or save the Wyn.conf file when backing up the database before upgrading to a newer version.
<DataExtraction>
<StorageType>Postgres</StorageType>
<ConnectionString>Host=localhost;Port=5444;UserName=wyn-enterprise;Password=**********;Database=wyndatacache;</ConnectionString>
</DataExtraction>
<Storage>
<StorageType>Postgres</StorageType>
<ConnectionString>Host=localhost;Port=5444;UserName=wyn-enterprise;Password=**********;Database=wynserverdata;</ConnectionString>
</Storage>
<IdentityServer>
<StorageType>Postgres</StorageType>
<ConnectionString>Host=localhost;Port=5444;UserName=wyn-enterprise;Password=**********;Database=wynis;</ConnectionString>
</IdentityServer>
You will need to use these connection strings, or what you set up to access a database management tool.
With the use of the tool you will need to select at the specific databases/database, and then select the back up option.
Save in your preferred file extension to a location of your choice.


After they are saved you will be able to restore with them in the case of needing to rollback or restore your current Wyn documents as we describe in several of the other articles.
