I use PostgreSQL 9.6 on a Windows 7 laptop that is tightly managed by enterprise IT. I do not have administrator rights on this laptop, but you can do a lot of things, including installing software, through the elevated rights granted through BeyondTrust.
I use this database to import several medium-sized datasets from different sources and to conduct in-depth analysis and reporting. These datasets have crazy coding and formatting variations, which creates import issues. For a single dataset, I first import it into MySQL, breaking the data characters, exporting it back to CSV, and finally importing this cleared data into PostgreSQL.
As an experiment, I installed PostgreSQL 9.6 and pg_loader on my home iMac running macOS 10.12, and it can import all data sets without problems.
Given all this as a background, I need to use pg_loader to import various data sets. However, the website does not offer a Windows installer or instructions for compiling it in Windows.
Can someone point me in the direction of one of the following options: the list will be from the desired to the least desired?
- Windows Installer pg_loader
- Windows Installer comparable alternative to pg_loader
- Detailed instructions for compiling pg_loader on Windows
- Suggestions for using Python to clear data before importing (caveat: I have very little experience with Python)
source share