在 Standard 或 Advanced 许可等级下可用。
升级企业级地理数据库的目标是更新地理数据库系统表、存储过程、类型和函数,以利用新功能和漏洞修复。 如果您使用的数据库版本在所用的 ArcGIS 客户端中不再受支持,则可能还需要对数据库进行升级。
安装新版本的 ArcGIS AllSource 或 ArcGIS Server,或将补丁包、修补程序或热修复程序应用到现有安装并升级地理数据库。
注:
即使不升级地理数据库,您所使用的数据库版本可能在当前的 ArcGIS 软件版本中也不再受支持。 如果数据库版本不再受支持,您可能需要升级地理数据库。 执行升级操作的间隔越长,升级过程所需的操作就越多。
如果使用 ArcGIS AllSource 3.3 升级地理数据库,则已升级的地理数据库版本为 11.3.0。
完成升级前的必需步骤,然后使用升级地理数据库地理处理工具或 Python 脚本升级地理数据库。
在升级之前
在对任何企业级系统(包括地理数据库)执行升级之前,必须事先进行规划。 在开发或测试服务器上测试新版本,以确保其能够与所有客户端应用程序配合使用。
当您确定新系统可如预期运行时,即可安排升级;请确保有必要员工可以执行升级,并且他们具有完成分配的任务所需的权限。
注意以下事项:
- 不支持对软件的测试版本或预发行版本进行升级。
- 如果要升级到的 ArcGIS 版本支持您的数据库版本,则可以直接从 10.7.x、10.8.x、10.9.x 或 11.x 版本的地理数据库进行升级。
如果 IBM Db2 数据库版本对于当前地理数据库版本而言不支持,则您可能必须多次升级数据库和地理数据库,才能将地理数据库升级到当前版本。 地理数据库升级间隔越长,要达到最新地理数据库版本所需的升级次数越多。
对于地理数据库的各个中间升级步骤,请按照该地理数据库版本的升级说明操作,并在版本更改后测试地理数据库。 同样,遵循数据库供应商提供的每个数据库版本升级说明,并在版本更改后测试数据库。
- 不提供将地理数据库降级到先前版本的正式机制。 升级到较新版本后,如果要降级地理数据库,则可以从包含较旧地理数据库版本的备份文件中恢复数据库。
以下是升级地理数据库之前需要完成的步骤清单:
- 请确保您要使用的 Db2 和 ArcGIS 版本组合受支持。 有关信息,请参阅针对 ArcGIS 的 IBM Db2 数据库要求。
升级地理数据库之前,必须采用支持的数据库版本且硬件必须符合最低系统要求。
- 确认地理数据库可以升级。 为此,需要在一台计算机上安装要升级至的 ArcGIS 客户端版本。 如果安装 ArcGIS Desktop,可连接至地理数据库并打开数据库属性对话框确定该地理数据库是否可以升级。 如果安装 ArcGIS Server(企业版)或 ArcGIS Engine Geodatabase Update 扩展模块,可使用 ArcPy Describe 函数来确定该地理数据库是否可以升级。 以下示例将创建到地理数据库的连接并检查该地理数据库是否可以升级:
# Open Python. cd /arcgis/server/tools ./python # Create a connection to the geodatabase. arcpy.CreateDatabaseConnection_management("/tmp/", "egdb_connection.sde", "DB2", "mydbgdb", "DATABASE_AUTH", "sde", "mysdepassword", "SAVE_USERNAME") # Import ArcPy and check the geodatabase release. import arcpy isCurrent = arcpy.Describe('/tmp/egdb_connection.sde').currentRelease print isCurrent
如果返回 false,则可升级地理数据库。 如果返回 true,则无需升级地理数据库。 请勿继续执行后续步骤。
- 创建数据库的备份。
- sde 用户必须运行 MON_GET_CONNECTION 函数才能从 PROCESS_INFORMATION 系统表中移除不需要的连接。 因此,将 MON_GET_CONNECTION 函数的 EXECUTE 权限授予 sde 用户。
GRANT EXECUTE ON MON_GET_CONNECTION TO SDE;
- 如果数据库管理员已撤消对 SYSIBM.SYSDUMMY1 目录视图的 SELECT 权限,则管理员必须将该权限授予连接到 Db2 中的地理数据库的所有用户。
此权限对于数据库的 SQL 查询是必需的。
如果用户没有对该目录视图的 SELECT 权限,则当其试图连接时会看见以下类似错误:
SQL0551N "SASHA" does not have the privilege to perform operation "SELECT" on object "SYSIBM.SYSDUMMY1". SQLSTATE=42501
要向 SELECT 授予对该视图的 PUBLIC 权限,请在数据库中以具有 DBADM 权限的用户身份登录时发出以下命令:
GRANT SELECT ON SYSIBM.SYSDUMMY1 TO PUBLIC;
- 在数据库中授予 sde 用户 DBADM 权限。
要升级地理数据库,此操作为必需项,并且可以在升级之后进行撤消。
- 移除任何已添加到 ArcGIS 外部的地理数据库系统表中的自定义功能,例如触发器或其他索引。
升级程序无法兼容对系统表的自定义修改。 如果类似的自定义修改禁止更改系统表方案,升级将失败。
- 此时,考虑创建数据库的第二个备份,以保留在之前步骤中所做的更改。
- 在能够连接到地理数据库的计算机上安装当前版本的 ArcGIS 客户端(ArcGIS AllSource Desktop Standard 或 Desktop Advanced,或者 ArcGIS Server(企业版))以执行升级。
- 确保没有与正在升级的地理数据库的连接。
要查看当前连接到地理数据库的用户列表,请转至 ArcGIS AllSource 中的地理数据库管理对话框。
您现在可以升级地理数据库。
升级地理数据
可以使用 ArcGIS AllSource 中的升级地理数据库工具或使用在 ArcGIS AllSource 或 ArcGIS Server 计算机上运行的 Python 脚本升级地理数据库。
注:
如果地理数据库包含分支版本化数据,则可能需要附加升级后步骤。 有关说明,请参阅升级地理数据库的工作原理。
使用升级地理数据库工具
可通过以下任一方式打开升级地理数据库地理处理工具:
- 数据管理工具箱中的地理数据库管理工具集
- ArcGIS AllSource 中数据库属性对话框内常规选项卡上的运行升级按钮
如果打开了数据库属性中的工具,则将使用地理数据库连接信息预填充输入地理数据库文本框。
Esri 建议选中先行检查和升级地理数据库选项。 这样,在继续地理数据库升级之前,该工具将确认是否满足升级的先决条件。
先行检查将检测到地理数据库的其他活动连接、确定连接用户是否具有升级地理数据库所需的足够权限、确保数据库可支持 XML 列、确保所有数据集均可打开,以及确认数据库与库的版本相同。 如果未满足任意先决条件,则工具将终止。 再次运行升级过程之前,必须修正所有问题。
此检查的结果在地理处理工具对话框中报告。 如果检查失败,则其结果还将写入 c:\Users\<user name>\AppData\Local\ESRI\<ArcGIS product> 文件夹的 GDBUpgrade.log 文件中。
如果通过了所有检查,该工具将继续进行升级。 先行检查和升级的状态将在地理处理工具进度对话框中显示。 如果升级失败,则信息将写入 GDBUpgrade.log 文件。 其他信息将写入用户 TEMP 目录的 sde_setup.log 文件中。 如果用户未配置临时目录,则将使用系统 TEMP 目录。
运行脚本
要使用 Python 脚本升级地理数据库,请将这些示例脚本中的一个脚本复制到文本编辑器中。 更改任何变量值来与您的站点信息相匹配。
- 如果具有作为 sde 用户身份进行连接的现有数据库连接文件,则应复制适用于您的操作系统的脚本,将其粘贴到文本编辑器中,并根据站点的具体信息来更改脚本,保存并关闭该文件,然后再运行:
# Name: upgradesdegdb_example.py # Description: Connect from a Windows computer # with an existing database connection file # and upgrade an enterprise geodatabase # Import arcpy module import arcpy # Local variables: Output_Workspace = "C:\\ArcGIS\connection_files\<Connection file>" Default_gdb = "C:\\ArcGIS\connection_files\<Connection file>" # Process: Upgrade Geodatabase arcpy.UpgradeGDB_management(Default_gdb, "PREREQUISITE_CHECK", "UPGRADE")
# Name: upgradesdegdb_example.py # Description: Connect from a Linux or UNIX computer # with an existing database connection file # and upgrade an enterprise geodatabase # Import arcpy module import arcpy # Local variables: Output_Workspace = "<user>/connections/<Connection_file>" Default_gdb = "<user>/connections/<Connection_file>" # Process: Upgrade Geodatabase arcpy.UpgradeGDB_management(Default_gdb, "PREREQUISITE_CHECK", "UPGRADE")
- 如果计算机上没有用于编写升级脚本的数据库连接文件,则可复制以下脚本并在命令行中提供特定于您的站点的信息:
例如,如果将文本文件保存为 gdbupgrade,且已编目的数据库为 mydbgdb,则应在命令提示符处输入以下内容:""" Name: upgrade_gdb.py Description: Provide connection information to an Enterprise geodatabase and upgrade the geodatabase Type upgrade_gdb.py -h or upgrade_gdb.py --help for usage """ # Import system modules import arcpy import os import optparse import sys # Define usage and version parser = optparse.OptionParser(usage = "usage: %prog [Options]", version="%prog 2.0; valid for 10.1 only") #Define help and options parser.add_option ("--DBMS", dest="Database_type", type="choice", choices=['SQLSERVER', 'ORACLE', 'POSTGRESQL', 'DB2','INFORMIX','DB2ZOS',''], default="", help="Type of enterprise DBMS: SQLSERVER, ORACLE, or POSTGRESQL.") parser.add_option ("-i", dest="Instance", type="string", default="", help="DBMS instance name") parser.add_option ("--auth", dest="account_authentication", type ="choice", choices=['DATABASE_AUTH', 'OPERATING_SYSTEM_AUTH'], default='DATABASE_AUTH', help="Authentication type options (case-sensitive): DATABASE_AUTH, OPERATING_SYSTEM_AUTH. Default=DATABASE_AUTH") parser.add_option ("-u", dest="User", type="string", default="", help="Geodatabase administrator user name") parser.add_option ("-p", dest="Password", type="string", default="", help="Geodatabase administrator password") parser.add_option ("--upgrade", dest="Upgrade", type="choice", choices=['TRUE', 'FALSE'], default="FALSE", help="Upgrade Options (case-sensitive): TRUE=Perform Pre-requisite check and upgrade geodatabase, FALSE=Perform Pre-requisite check only. Default=FALSE") parser.add_option ("-D", dest="Database", type="string", default="none", help="Database name: Not required for Oracle") # Check if value entered for option try: (options, args) = parser.parse_args() #Check if no system arguments (options) entered if len(sys.argv) == 1: print("%s: error: %s\n" % (sys.argv[0], "No command options given")) parser.print_help() sys.exit(3) #Usage parameters for spatial database connection to upgrade account_authentication = options.account_authentication.upper() username = options.User.lower() password = options.Password do_upgrade = options.Upgrade database = options.Database.lower() database_type = options.Database_type.upper() instance = options.Instance if (database_type == ""): print("\nDatabase type must be specified!\n") parser.print_help() sys.exit(3) if (database_type == "SQLSERVER"): database_type = "SQL_SERVER" # Get the current product license product_license=arcpy.ProductInfo() # Checks required license level to upgrade if product_license.upper() == "ARCVIEW" or product_license.upper() == 'ENGINE': print("\n" + product_license + " license found!" + " Enterprise geodatabase upgrade requires an ArcGIS Desktop Standard or Advanced, ArcGIS Engine with the Geodatabase Update extension, or ArcGIS Server license.") sys.exit("Re-authorize ArcGIS before upgrading.") else: print("\n" + product_license + " license available! Continuing to upgrade...") arcpy.AddMessage("+++++++++") # Local variables instance_temp = instance.replace("\\","_") instance_temp = instance_temp.replace("/","_") instance_temp = instance_temp.replace(":","_") Conn_File_NameT = instance_temp + "_" + database + "_" + username if os.environ.get("TEMP") == None: temp = "c:\\temp" else: temp = os.environ.get("TEMP") if os.environ.get("TMP") == None: temp = "/usr/tmp" else: temp = os.environ.get("TMP") Connection_File_Name = Conn_File_NameT + ".sde" Connection_File_Name_full_path = temp + os.sep + Conn_File_NameT + ".sde" # Check for the .sde file and delete it if present arcpy.env.overwriteOutput=True if os.path.exists(Connection_File_Name_full_path): os.remove(Connection_File_Name_full_path) print("\nCreating Database Connection File...\n") # Process: Create Database Connection File... # Usage: out_file_location, out_file_name, DBMS_TYPE, instnace, database, account_authentication, username, password, save_username_password(must be true) arcpy.CreateDatabaseConnection_management(out_folder_path=temp, out_name=Connection_File_Name, database_platform=database_type, instance=instance, database=database, account_authentication=account_authentication, username=username, password=password, save_user_pass="TRUE") for i in range(arcpy.GetMessageCount()): if "000565" in arcpy.GetMessage(i): #Check if database connection was successful arcpy.AddReturnMessage(i) arcpy.AddMessage("\n+++++++++") arcpy.AddMessage("Exiting!!") arcpy.AddMessage("+++++++++\n") sys.exit(3) else: arcpy.AddReturnMessage(i) arcpy.AddMessage("+++++++++\n") # Check whether geodatabase needs upgrade isCurrent = arcpy.Describe(Connection_File_Name_full_path).currentRelease if isCurrent == True: print("The geodatabase is already at the current release and cannot be upgraded!") sys.exit("Upgrade did not run.") # Process: Upgrade geodatabase... try: if do_upgrade.lower() == "true": print("Upgrading Geodatabase...\n") arcpy.UpgradeGDB_management(input_workspace=Connection_File_Name_full_path, input_prerequisite_check="PREREQUISITE_CHECK", input_upgradegdb_check="UPGRADE") for i in range(arcpy.GetMessageCount()): arcpy.AddReturnMessage(i) arcpy.AddMessage("+++++++++\n") else: print("Running Pre-Requisite Check...\n") arcpy.UpgradeGDB_management(input_workspace=Connection_File_Name_full_path, input_prerequisite_check="PREREQUISITE_CHECK", input_upgradegdb_check="NO_UPGRADE") for i in range(arcpy.GetMessageCount()): arcpy.AddReturnMessage(i) arcpy.AddMessage("+++++++++\n") except: for i in range(arcpy.GetMessageCount()): arcpy.AddReturnMessage(i) if os.path.exists(Connection_File_Name_full_path): os.remove(Connection_File_Name_full_path) #Check if no value entered for option except SystemExit as e: if e.code == 2: parser.usage = "" print("\n") parser.print_help() parser.exit(2)
gdbupgrade --DBMS DB2 -i mydbgdb --auth DATABASE_AUTH -u sde -p mysdepassword --upgrade TRUE