Oracle、SQLServer、ArcSDE怎么查看版本、补丁
在我们安装ArcSDE时都会首先要查看系统需求,只有这样,才能保证我们的服务器环境运行比较稳定,以下是介绍在使用不同数据库中怎么查看相应的安装版本,以及相关的安装补
在我们安装ArcSDE时都会首先要查看系统需求,只有这样,才能保证我们的服务器环境运行比较稳定,以下是介绍在使用不同数据库中怎么查看相应的安装版本,以及相关的安装补丁。
Oracle
查看Oracle版本非常简单
C:\Users\gis>sqlplus sde/sde@orcl SQL*Plus: Release 11.2.0.1.0 Production on 星期二 8月 30 13:36:20 2011 Copyright (c) 1982, 2010, Oracle. All rights reserved. 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> select * from v$version; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production PL/SQL Release 11.2.0.1.0 - Production CORE 11.2.0.1.0 Production TNS for 64-bit Windows: Version 11.2.0.1.0 - Production NLSRTL Version 11.2.0.1.0 - Production
对Oracle来说,打不打补丁直接看XX.XX.X.X(11.2.0.1)
前两位标明是Oracle的大版本11G
第三位标明是R2版本
第四位就是补丁号(常见的10.2.0.1、10.2.0.3、11.1.0.6、11.1.0.7、10.2.0.4、10.2.0.5、11.2.0.2等)
SQL Server
SQLServer来说其实查看版本也差不多
C:\Documents and Settings\Administrator>sqlcmd -U sa -P esrichina 1> select @@version 2> go -------------------------------------------------------------------------------- Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64) Apr 2 2010 15:48:46 Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 5.2 <x64> (Build 3790: ServicePack 2) (Hypervisor)</x64>
我们可以看一下这个版本号:10.50.1600.1
10:代表2008版本,9代表2005版本,8代表2000版本
50:代表R2版本,00代表非R2版本
1:代表没有打补丁,如果2代表打了Sp1补丁,如果是3代表打了Sp2补丁,以此类推
600:代表相关的hotfix版本,我们在进行升级、备份、恢复一定要看清楚这个版本,只有在同一个版本下的相关数据才能进行恢复(同版本备份文件),这点需要注意。
SQL Server 2008 R2的版本信息
下表列出了SQL Server 2008 R2的主要版本。
发行 产品版本 SQL Server 2008 R2的Service Pack 1的 10.50.2500.0 SQL Server 2008 R2的RTM 10.50.1600.1 SQL Server 2008的版本信息
下表列出了SQL Server 2008的主要版本。
发行 产品版本 SQL Server 2008服务包2 10.00.4000.00 SQL Server 2008服务包1 10.00.2531.00 SQL Server 2008的RTM 10.00.1600.22 SQL Server 2005的版本信息
下表列出了SQL Server 2005的主要版本。
发行 产品版本 SQL Server 2005的Service Pack 4中 9.00.5000.00 SQL Server 2005的Service Pack 3中 9.00.4035 SQL Server 2005服务包2 9.00.3042 SQL Server 2005服务包1 9.00.2047 SQL Server 2005的RTM 9.00.1399 SQL Server 2000的版本信息
下表列出了Sqlservr.exe文件的版本号。
发行 产品版本 SQL服务器2000 Service Pack 4 8.00.2039 SQL Server 2000的ServicePack 3A 8.00.760 SQL Server 2000的Service Pack 3中 8.00.760 SQL Server 2000服务包2 8.00.534 SQL Server 2000服务包1 8.00.384 SQL Server 2000的RTM 8.00.194
ArcSDE
C:\Users\gis>sdesetup -o list -d oracle11g -s lish -p sde ESRI ArcSDE Server Setup Utility Tue Aug 30 13:42:27 2011 ---------------------------------------------------------------- SDE Server at Rev: 10.0.0. for Oracle11g Build 1343 Thu Feb 17 11:45:42 2011
-------------------------------------------------------------------------------------------------------
QQ群: 78773981
Blog: http://blog.csdn.net/linghe301
Weibo: http://www.weibo.com/linghe301
-------------------------------------------------------------------------------------------------------

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



To query the Oracle tablespace size, follow the following steps: Determine the tablespace name by running the query: SELECT tablespace_name FROM dba_tablespaces; Query the tablespace size by running the query: SELECT sum(bytes) AS total_size, sum(bytes_free) AS available_space, sum(bytes) - sum(bytes_free) AS used_space FROM dba_data_files WHERE tablespace_

There are three ways to view instance names in Oracle: use the "sqlplus" and "select instance_name from v$instance;" commands on the command line. Use the "show instance_name;" command in SQL*Plus. Check environment variables (ORACLE_SID on Linux) through the operating system's Task Manager, Oracle Enterprise Manager, or through the operating system.

Oracle View Encryption allows you to encrypt data in the view, thereby enhancing the security of sensitive information. The steps include: 1) creating the master encryption key (MEk); 2) creating an encrypted view, specifying the view and MEk to be encrypted; 3) authorizing users to access the encrypted view. How encrypted views work: When a user querys for an encrypted view, Oracle uses MEk to decrypt data, ensuring that only authorized users can access readable data.

Uninstall method for Oracle installation failure: Close Oracle service, delete Oracle program files and registry keys, uninstall Oracle environment variables, and restart the computer. If the uninstall fails, you can uninstall manually using the Oracle Universal Uninstall Tool.

Deleting all data in Oracle requires the following steps: 1. Establish a connection; 2. Disable foreign key constraints; 3. Delete table data; 4. Submit transactions; 5. Enable foreign key constraints (optional). Be sure to back up the database before execution to prevent data loss.

To create a user in Oracle, follow these steps: Create a new user using the CREATE USER statement. Grant the necessary permissions using the GRANT statement. Optional: Use the RESOURCE statement to set the quota. Configure other options such as default roles and temporary tablespaces.

The method to solve the Oracle cursor closure problem includes: explicitly closing the cursor using the CLOSE statement. Declare the cursor in the FOR UPDATE clause so that it automatically closes after the scope is ended. Declare the cursor in the USING clause so that it automatically closes when the associated PL/SQL variable is closed. Use exception handling to ensure that the cursor is closed in any exception situation. Use the connection pool to automatically close the cursor. Disable automatic submission and delay cursor closing.

Oracle Invalid numeric errors may be caused by data type mismatch, numeric overflow, data conversion errors, or data corruption. Troubleshooting steps include checking data types, detecting digital overflows, checking data conversions, checking data corruption, and exploring other possible solutions such as configuring the NLS_NUMERIC_CHARACTERS parameter and enabling data verification logging.
