You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, I am happy to report that pg_dbms_stats works fine on Windows (MSVC build), as far as I can tell, except as noted below.
The export scripts export_effective_stats-*.sql.samle and export_plain_stats-*.sql.sample doesn't work in Windows OS because of newline code difference. It causes the following error when importing.
I was able to avoid this error by writing TO 'server-side file path' instead of using \o and TO STDOUT in the scripts. I would suggest adding scripts like this for Windows.
The text was updated successfully, but these errors were encountered:
First, I am happy to report that pg_dbms_stats works fine on Windows (MSVC build), as far as I can tell, except as noted below.
The export scripts
export_effective_stats-*.sql.samle
andexport_plain_stats-*.sql.sample
doesn't work in Windows OS because of newline code difference. It causes the following error when importing.I was able to avoid this error by writing
TO 'server-side file path'
instead of using\o
andTO STDOUT
in the scripts. I would suggest adding scripts like this for Windows.The text was updated successfully, but these errors were encountered: