JDaniel
JDaniel

Reputation: 102

Installing temporal_tables and cyanaudit extensions in PostgreSQL for Windows

I have an auditing and slowly changing dimensions (SCD) use case that requires the installation of the PostgreSQL temporal_tables and cyanaudit extensions.

However my PostgreSQL server is on Windows and after searching high and low, I still haven't found a way to install these extensions in PostgreSQL for Windows.

Has anyone succeeded in installing these extensions in the Windows environment and can you please share your methodology?

Thanks a million,

JDaniel

Upvotes: 0

Views: 300

Answers (1)

pifor
pifor

Reputation: 7882

I have not tried to install these extensions on Windows but I suggest you have a look on the related source code repositories.

temporal_tables is stored on GitHub: if you search in open and closed issues about Windows installation, I have found: https://github.com/arkhipov/temporal_tables/issues/19.

cyanaudit is stored on bitbucket and I have not found anything related to Windows. However installation should be easier because it is mainly SQL and PL/PGSQL code: you need to be able to use tar and perl because the installer is using Perl.

Upvotes: 0

Related Questions