⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upgrade.bat

📁 PostgreSQL 是一种对象-关系型数据库管理系统(ORDBMS),也是目前功能最强大、特性最丰富和最复杂的自由软件数据库系统.它起源于伯克利(BSD)的数据库研究计划,目前是最重要的开源数据库产
💻 BAT
字号:
@echo off
cls
echo This file will upgrade your PostgreSQL installation.
echo.
echo You must have PostgreSQL 8.3.x installed from the official
echo MSI installation to use this upgrade path.
echo.
echo If the PostgreSQL server or any client applications are running,
echo a reboot will be required once the upgrade is completed.
echo.
echo.
echo Press Ctrl-C to abort the upgrade or
pause

REM Parameters described:
REM  /i postgresql-8.3-int.msi - pick MSI file to install. All properties
REM                              will be read from existing installation.
REM  REINSTALLMODE=vamus       - reinstall all files, regardless of version.
REM                              This makes sure documentation and other
REM                              non-versioned files are updated.
REM  REINSTALL=ALL             - Reinstall all features that were previously
REM                              installed with the new version.

echo Upgrading Microsoft VC++ 2005 runtime libraries...
vcredist_x86.exe /q:a /c:"msiexec /i vcredist.msi /qb!"

echo Upgrading PostgreSQL...
msiexec /i postgresql-8.3-int.msi REINSTALLMODE=vamus REINSTALL=ALL /qr

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -