AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / dba / 问题

问题[instance](dba)

Martin Hope
Aerox
Asked: 2020-03-29 03:28:15 +0800 CST

Oracle 18c 中的 v$database、SID、ServiceName、istance 是什么?

  • 0

我在公司笔记本电脑上的 Windows 10 上设置了 Oracle 18c (18.4)(localhost 应该与我公司的域名相同)。在安装时使用密码创建用户SYSTEM后,我尝试使用以下设置连接到数据库:

hotsname:localhost
端口:1521
数据库:XEPDB1(与 ServiceName 连接)

访问这个,这里是我想要理解的以下查询(通过接收这些结果详细描述了向 Oracle 请求的内容):

许多输出与我的预期不同(例如v$database使用 global_name)。

以下是lsnrctl 状态(我的公司域被隐藏):

PS C:\WINDOWS\system32> lsnrctl 状态

适用于 64 位 Windows 的 LSNRCTL:版本 18.0.0.0.0 - 2020 年 3 月 28 日 08:43:00 生产

版权所有 (c) 1991、2018,甲骨文。版权所有。

连接 a (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATO del LISTENER
----------------------
别名监听器
用于 64 位 Windows 的版本 TNSLSNR:版本 18.0.0.0.0 - 生产
数据di inizio 23-MAR-2020 23:43:32
Tempo di attivitÓ 4 giorni 8 ore 59 分钟。31 秒。
Livello 追踪
Sicurezza ON:本地操作系统身份验证
SNMP 关闭
服务预定义 XE
文件 di 参数 listenerC:\app\sterragn\product\18.0.0\dbhomeXE\network\admin\listener.ora
文件 di 日志侦听器 C:\app\sterragn\product\18.0.0\diag\tnslsnr\MIL-GZSL2H2\listener\alert\log.xml
汇总表 degli 端点 di ascolto...
  (描述=(地址=(协议=tcp)(主机=127.0.0.1)(端口=1521)))
  (描述=(地址=(协议=ipc)(管道名称=\\.\pipe\EXTPROC1521ipc)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=127.0.0.1)(PORT=5500))(Security=(my_wallet_directory=C:\APP\STERRAGN\PRODUCT\18.0.0\admin\XE\xdb_wallet)) (演示=HTTP)(会话=RAW))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=PCX-LAPTOP.domain.topLevelDomain.subDomain)(PORT=5520))(Presentation=HTTP)(Session=RAW))
汇总表 dei servizi...
Il servizio "CLRExtProc" ha 1 istanze。
  L'istanza "CLRExtProc", stato UNKNOWN, ha 1 handler per questo servizio...
Il servizio "XE" ha 1 istanze。
  L'istanza "xe", stato READY, ha 1 handler per questo servizio...
Il servizio "XEXDB" ha 1 istanze。
  L'istanza "xe", stato READY, ha 1 handler per questo servizio...
Il servizio "bc0cc7179d094aa9b1c4b1ffb3e667da" ha 1 istanze。
  L'istanza "xe", stato READY, ha 1 handler per questo servizio...
Il servizio "xepdb1" ha 1 istanze。
  L'istanza "xe", stato READY, ha 1 handler per questo servizio...
Il comando Þ stato eseguito

输入:

SELECT NAME FROM v$database;  

输出:

NAME
-----
XE

输入:

SELECT * FROM v$instance;  

输出:

INSTANCE_NUMBER   INSTANCE_NAME   HOST_NAME   VERSION     VERSION_LEGACY  VERSION_FULL    STARTUP_TIME      STATUS    PARALLEL    THREAD#    ARCHIVER LOG_SWITCH_WAIT LOGINS  SHUTDOWN_PENDING    DATABASE_STATUS INSTANCE_ROLE      ACTIVE_STATE BLOCKED CON_ID  INSTANCE_MODE   EDITION FAMILY  DATABASE_TYPE
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1             xe              PCX-LAPTOP  18.0.0.0.0  18.0.0.0.0      18.4.0.0.0      2020-03-23 16:15:57 OPEN    NO          1          STOPPED  [NULL]          ALLOWED NO                      ACTIVE      PRIMARY_INSTANCE   NORMAL       NO      0       REGULAR XE      [NULL]          SINGLE

输入:

select sys_context('userenv','instance_name') from dual;  

输出:

SYS_CONTEXT('USERENV','INSTANCE_NAME')
---------------------------------------
xe

输入:

select sys_context('userenv','db_name') from dual;

输出:

SYS_CONTEXT('USERENV','DB_NAME')
---------------------------------
XEPDB1

输入:

select ora_database_name from dual;

输出:

ORA_DATABASE_NAME
------------------
XEPDB1

输入:

select * from global_name;

输出:

GLOBAL_NAME
------------
XEPDB1
oracle instance
  • 2 个回答
  • 750 Views
Martin Hope
Learning_DBAdmin
Asked: 2019-07-01 01:19:41 +0800 CST

SQL Server在使用不同实例的端口号时忽略实例名称

  • 4

我最近看到一个奇怪的案例,仍然不知道背后的原因是什么。在我的一台开发服务器上,有两个 SQL 服务器实例正在运行——一个是默认实例,另一个是 UAT 实例。

最近我们对这两个实例的默认端口进行了更改,并与开发团队和其他利益相关者进行了沟通,以开始他们的更改并对其进行测试。为了不影响他们现有的应用程序,端口 1433 保留在默认实例上。因此,以下是要连接的服务器和端口的详细信息:

默认连接 --> Server_Name,35683

命名 (SIT) 实例的连接 --> Server_Name\SIT,35685

默认实例 TCP/IP 属性

命名实例 TCP/IP 属性

这两个实例都有相似的数据库,但是由于它们指向不同的环境,因此数据集不同。

一位高级开发人员将连接用作 Server_name\SIT,35683,这意味着实例和端口不匹配。他使用的是 SIT 实例,但是默认实例的端口,它正在将他连接到默认实例。

当我在他的办公桌前并且我们正在测试一些代码时发现了这一点,我注意到了这一点,因为我的更改没有反映在默认实例中,因为我在 SIT 实例中进行了更改。

有人可以解释这种行为以及如何解决这个问题吗?

sql-server instance
  • 1 个回答
  • 349 Views
Martin Hope
igelr
Asked: 2018-08-07 00:43:34 +0800 CST

如果更改了默认端口号,如何知道 Configuration Manager 中的默认实例?

  • 1

在 MS SQL Server 配置管理器中,我可以看到所有实例。我通过查看 TCP/IP 的 IP 地址属性识别默认实例(我说默认实例是指监听 1433 的实例),该属性显示 IP 地址和网络配置设置中使用的端口。但是命名实例也可以使用 1433。如果更改了默认实例的端口号,我如何确定哪个是 Configuration Manager 中的默认端口号(我知道没有 Configuration Manager 也可以使用其他选项)。

谢谢你的支持。

sql-server instance
  • 1 个回答
  • 1337 Views
Martin Hope
igelr
Asked: 2018-08-06 23:53:53 +0800 CST

如何确定哪一个是我在 MS SQL Server 中的默认实例?

  • 2

我的服务器中有两个实例,我想知道其中哪一个是默认的。请您指出我可以识别它的方法。我所说的默认实例是指监听 1433 的实例。

谢谢你的支持。

sql-server instance
  • 2 个回答
  • 3706 Views
Martin Hope
Mallik Kumar
Asked: 2017-03-23 22:51:54 +0800 CST

Mysql 5.7 无法创建 Unix 套接字锁定文件

  • 1

我正在尝试在同一个 Ubuntu 16.10 32 位框中创建多个 MySQL 5.7 实例。我已将原始数据目录复制到新目录。为新实例创建了单独的日志文件夹(日志正在工作)。将新数据目录 /var/lib/mysql2 和日志目录 /var/log/mysql2/ 的所有者更改为 mysql:mysql。我已经删除了应用装甲。/var/run/mysqld/由 拥有mysql:mysql。我只是在浏览了其他 SE 答案后才发布了这个问题……这些都没有解决多实例问题。

这是我的 my2.cnf:

[mysqld]
#
# * Basic Settings
#
user            = mysql
pid-file        = /var/run/mysqld/mysqld2.pid
socket          = /var/run/mysqld/mysqld2.sock
port            = 3307
basedir         = /usr
datadir         = /var/lib/mysql2
tmpdir          = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address            = 127.0.0.1
#
# * Fine Tuning
#
key_buffer_size         = 16M
max_allowed_packet      = 16M
thread_stack            = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover-options  = BACKUP
#max_connections        = 100
#table_open_cache       = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit       = 1M
query_cache_size        = 16M

[mysqld_safe]
socket          = /var/run/mysqld/mysqld2.sock
nice            = 0

如您所见,我已将端口分别更改为 3307 和其他端口。现在当我运行时(必须将 sudo 添加到 mysqld):

sudo mysqld --defaults-file=/etc/mysql/my2.cnf &

我收到:

2017-03-22T08:31:21.684121Z 0 [Note] mysqld (mysqld 5.7.17-0ubuntu0.16.10.1) starting as process 13676 ...
2017-03-22T08:31:21.687115Z 0 [Note] InnoDB: PUNCH HOLE support available
2017-03-22T08:31:21.687131Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2017-03-22T08:31:21.687135Z 0 [Note] InnoDB: Uses event mutexes
2017-03-22T08:31:21.687140Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
2017-03-22T08:31:21.687143Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.8
2017-03-22T08:31:21.687147Z 0 [Note] InnoDB: Using Linux native AIO
2017-03-22T08:31:21.687281Z 0 [Note] InnoDB: Number of pools: 1
2017-03-22T08:31:21.687344Z 0 [Note] InnoDB: Not using CPU crc32 instructions
2017-03-22T08:31:21.688116Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2017-03-22T08:31:21.693801Z 0 [Note] InnoDB: Completed initialization of buffer pool
2017-03-22T08:31:21.694846Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the $
2017-03-22T08:31:21.708807Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
2017-03-22T08:31:21.776053Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2017-03-22T08:31:21.776228Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2017-03-22T08:31:21.825266Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2017-03-22T08:31:21.826338Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
2017-03-22T08:31:21.826359Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
2017-03-22T08:31:21.826695Z 0 [Note] InnoDB: Waiting for purge to start
2017-03-22T08:31:21.880277Z 0 [Note] InnoDB: 5.7.17 started; log sequence number 2535531
2017-03-22T08:31:21.881286Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql2/ib_buffer_pool
2017-03-22T08:31:21.881581Z 0 [Note] Plugin 'FEDERATED' is disabled.
2017-03-22T08:31:21.887687Z 0 [Note] InnoDB: Buffer pool(s) load completed at 170322 14:01:21
2017-03-22T08:31:21.890330Z 0 [Warning] Failed to set up SSL because of the following SSL library error: SSL context is not usable without cer$
2017-03-22T08:31:21.890380Z 0 [Note] Server hostname (bind-address): '127.0.0.1'; port: 3307
2017-03-22T08:31:21.890407Z 0 [Note]   - '127.0.0.1' resolves to '127.0.0.1';
2017-03-22T08:31:21.890695Z 0 [Note] Server socket created on IP: '127.0.0.1'.
2017-03-22T08:31:21.890791Z 0 [ERROR] Could not create unix socket lock file /var/run/mysqld/mysqld2.sock.lock.
2017-03-22T08:31:21.890807Z 0 [ERROR] Unable to setup unix socket lock file.
2017-03-22T08:31:21.890819Z 0 [ERROR] Aborting

我错过了什么?

mysql instance
  • 1 个回答
  • 13183 Views
Martin Hope
bingaloman
Asked: 2017-01-06 18:14:58 +0800 CST

SSMS 如何在没有实例名称的情况下连接到服务器的数据库?

  • 1

我有一个我很困惑的问题。我也是数据库方面的新手,所以这个问题可能是基本的。

例如,在我的工作中,我们使用 SSMS 连接到我们服务器的数据库。

从 SSMS 连接时,我们输入 ( server_name\instance )。比如说PC100\SQLexpress。

但对于某些人来说,只输入服务器而不是实例。这是如何运作的?我想为了连接,我们总是需要在服务器名称后键入一个实例?

例如,我们需要一些PC100\SQLexpress才能连接到服务器的数据库。然后对于其他人,我们只需要输入PC200即可连接,而不需要输入实例。

谁能解释一下?

ssms instance
  • 1 个回答
  • 5604 Views
Martin Hope
Pரதீப்
Asked: 2016-12-26 22:18:15 +0800 CST

单个 SQL Server 上的多个实例

  • 1

SQL SERVER我们有一个在生产环境中运行单个实例的服务器。

我们计划SQL SERVER在同一服务器中创建另一个实例。

我的问题是我们必须购买新许可证还是现有许可证足够好?

sql-server instance
  • 1 个回答
  • 1497 Views
Martin Hope
QWE
Asked: 2016-06-22 03:37:07 +0800 CST

几个大实例或许多小实例

  • 5

我最近继承了一个环境,其中有大约 4000 多个数据库,分布在 3 个大型物理服务器上的 21 个实例之间。数据库根据名称分布在不同的实例之间,因此有些实例比其他实例大几倍。所有数据库的模式都是相同的,但数据不是。一些数据库只有几 MB,而另一些则是 400+GB。

管理层正在考虑我们是否应该尝试在每个实例上保留尽可能多的数据库并减少大型实例。另一个想法是继续向现有环境添加小实例,甚至减少每个现有实例中的数据库数量并增加实例数量。

在管理方面,拥有更少的大实例可能比拥有许多小实例更容易。另一方面,如果大实例发生问题,那么它上面的所有数据库都会受到影响,因此拥有许多小实例可能更安全。

从性能的角度来看,什么会更好?我还应该考虑哪些其他因素?我应该在每个实例上保留多少个数据库?我知道这取决于,但你有一些粗略的估计吗?例如,一个实例上的 500 个数据库是否太多?如果您需要更多信息,请告诉我。

我忘了说所有这些数据库都是不同客户的生产数据库,所以它们都同样重要。开发、测试等在不同的服务器上。

sql-server instance
  • 4 个回答
  • 2727 Views
Martin Hope
R1cky
Asked: 2015-06-06 07:44:25 +0800 CST

如何唯一标识 SQL 实例

  • 7

我需要找到一种方法来识别 SQL 实例,无论对 SQL Server 和/或运行它的 Windows Server 进行了哪些更改,因为我们正在将有关实例的远程信息收集到我们的操作数据库中,并且仍然遇到我们的方式识别它并不像看起来那么独特。

例如,如果我有服务器 WIN1\SQL 并且由于服务器刷新将安装在不同的服务器 WIN2\SQL 上,迁移数据并交换服务器名称,以便 WIN2\SQL 将变为 WIN1\SQL,反之亦然,我需要能够识别当前的 WIN1\SQL 不同于以前的 WIN1\SQL 忽略操作系统版本和/或 SQL 版本\补丁级别

已经尝试以下:

NetworkName\InstanceName - 在服务器主机名\网络名称因服务器刷新而发生更改之前一直有效,如上所述

SQL Server SID - 我正在寻找一些像 Windows 一样的 SQL 安装 SID,但似乎没有这样的东西真正存在

##MS_SQLAuthenticatorCertificate## 的 SID - 这是我找到的最后一个最佳镜头,扫描了数百个 SQL Server,它真的很独特 - 以为我终于找到了它,直到我将 Service Pack 应用到一台服务器并发现 SID 已更改

任何想法如何唯一标识 SQL 实例(如 SQL 实例 SID)将不胜感激,因为我迷路了

编辑:我没有管理所有 SQL 服务器。无法对超出范围的设备进行修改,因此寻找一些可以在 SQL2005+ 上运行的“已经内置”的方式

sql-server instance
  • 5 个回答
  • 6058 Views
Martin Hope
Nico
Asked: 2015-03-10 02:45:17 +0800 CST

Oracle 数据库 11g 上的 ORA-12528 和 ORA-12505 错误

  • 3

距离我上一次尝试运行我在某家银行公司实习时所做的最后一个项目已经过去一周了。

突然,我在 Eclipse 中的 webapps(Java 项目)无法启动。在日志中它说它无法连接到 Oracle 数据库,其中包含一些错误侦听器。所以我尝试从 SQL 开发人员手动连接数据库。它说

ORA-12528: TNS:Listener: 所有适当的实例都在阻塞新的连接。

我已经阅读了一些解决方案,并尝试重新启动包括 orcl 和侦听器在内的 Oracle 服务。重新启动后,错误变为

ORA-12505: TNS:listener 当前不知道连接描述符中给出的 SID。

过了一会儿,它又变成了 ORA-12528。有人可以帮忙吗?我的论文答辩是下周。

alert_ORCL.txt 日志(SID=ORCL):

***********************************************************************

Fatal NI connect error 12641, connecting to:
 (LOCAL=NO)

  VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
    Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
  Time: 05-MAR-2015 21:28:24
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12641

TNS-12641: Authentication service failed to initialize
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
opiodr aborting process unknown ospid (4204) as a result of ORA-609
Thu Mar 05 21:28:26 2015


***********************************************************************

Fatal NI connect error 12641, connecting to:
 (LOCAL=NO)

  VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
    Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
  Time: 05-MAR-2015 21:28:26
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12641

TNS-12641: Authentication service failed to initialize
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
opiodr aborting process unknown ospid (7280) as a result of ORA-609
Thu Mar 05 21:28:28 2015
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
O/S-Error: (OS 1) Incorrect function. !
Thu Mar 05 21:28:40 2015
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
O/S-Error: (OS 1) Incorrect function. !
OER 7451 in Load Indicator : Error Code = OSD-04500: Message 4500 not found; No message file for product=RDBMS, facility=SOSD
O/S-Error: (OS 1) Incorrect function. !
Thu Mar 05 21:28:49 2015
Errors in file c:\app\nico\diag\rdbms\orcl\orcl\trace\orcl_psp0_3752.trc:
ORA-09314: sltln: error translating logical name
OSD-04503: Message 4503 not found; No message file for product=RDBMS, facility=SOSD
PSP0 (ospid: 3752): terminating the instance due to error 9314
Fri Mar 06 09:33:19 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Fri Mar 06 09:33:21 2015
PMON started with pid=2, OS id=2532 
Fri Mar 06 09:33:21 2015
VKTM started with pid=3, OS id=3568 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Fri Mar 06 09:33:22 2015
GEN0 started with pid=4, OS id=3572 
Fri Mar 06 09:33:22 2015
DIAG started with pid=5, OS id=3212 
Fri Mar 06 09:33:22 2015
DBRM started with pid=6, OS id=3856 
Fri Mar 06 09:33:22 2015
PSP0 started with pid=7, OS id=3332 
Fri Mar 06 09:33:22 2015
DIA0 started with pid=8, OS id=3828 
Fri Mar 06 09:33:22 2015
MMAN started with pid=9, OS id=3648 
Fri Mar 06 09:33:22 2015
DBW0 started with pid=10, OS id=3840 
Fri Mar 06 09:33:22 2015
LGWR started with pid=11, OS id=2176 
Fri Mar 06 09:33:22 2015
CKPT started with pid=12, OS id=3688 
Fri Mar 06 09:33:22 2015
SMON started with pid=13, OS id=2612 
Fri Mar 06 09:33:22 2015
RECO started with pid=14, OS id=3004 
Fri Mar 06 09:33:22 2015
MMON started with pid=15, OS id=1180 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Fri Mar 06 09:33:22 2015
alter database mount exclusive
Fri Mar 06 09:33:22 2015
MMNL started with pid=16, OS id=2088 
                                                                                                                                                     Fri Mar 06 09:39:14 2015
Starting ORACLE instance (normal)
Fri Mar 06 09:39:39 2015
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Fri Mar 06 09:40:08 2015
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Fri Mar 06 09:40:17 2015
PMON started with pid=2, OS id=6128 
Fri Mar 06 09:40:18 2015
VKTM started with pid=3, OS id=6132 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Fri Mar 06 09:40:19 2015
GEN0 started with pid=4, OS id=6136 
Fri Mar 06 09:40:19 2015
DIAG started with pid=5, OS id=6140 
Fri Mar 06 09:40:19 2015
DBRM started with pid=6, OS id=4212 
Fri Mar 06 09:40:19 2015
PSP0 started with pid=7, OS id=3460 
Fri Mar 06 09:40:19 2015
DIA0 started with pid=8, OS id=2884 
Fri Mar 06 09:40:19 2015
MMAN started with pid=9, OS id=4644 
Fri Mar 06 09:40:19 2015
DBW0 started with pid=10, OS id=2744 
Fri Mar 06 09:40:19 2015
LGWR started with pid=11, OS id=5160 
Fri Mar 06 09:40:19 2015
CKPT started with pid=12, OS id=5156 
Fri Mar 06 09:40:19 2015
SMON started with pid=13, OS id=5228 
Fri Mar 06 09:40:19 2015
RECO started with pid=14, OS id=5252 
Fri Mar 06 09:40:19 2015
MMON started with pid=15, OS id=5240 
Fri Mar 06 09:40:19 2015
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Fri Mar 06 09:40:19 2015
MMNL started with pid=16, OS id=5244 
Fri Mar 06 09:40:34 2015
alter database mount exclusive
ORA-214 signalled during: alter database mount exclusive...
Fri Mar 06 09:40:40 2015
Checker run found 1 new persistent data failures
Fri Mar 06 11:19:13 2015


***********************************************************************

Fatal NI connect error 12638, connecting to:
 (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))

  VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
  Time: 06-MAR-2015 11:19:13
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12638

TNS-12638: Credential retrieval failed
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
Fri Mar 06 12:17:21 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Fri Mar 06 12:17:26 2015
PMON started with pid=2, OS id=3276 
Fri Mar 06 12:17:26 2015
VKTM started with pid=3, OS id=368 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Fri Mar 06 12:17:27 2015
GEN0 started with pid=4, OS id=4952 
Fri Mar 06 12:17:27 2015
DIAG started with pid=5, OS id=900 
Fri Mar 06 12:17:27 2015
DBRM started with pid=6, OS id=888 
Fri Mar 06 12:17:27 2015
PSP0 started with pid=7, OS id=868 
Fri Mar 06 12:17:27 2015
DIA0 started with pid=8, OS id=884 
Fri Mar 06 12:17:27 2015
MMAN started with pid=9, OS id=880 
Fri Mar 06 12:17:27 2015
DBW0 started with pid=10, OS id=876 
Fri Mar 06 12:17:27 2015
LGWR started with pid=11, OS id=832 
Fri Mar 06 12:17:27 2015
CKPT started with pid=12, OS id=776 
Fri Mar 06 12:17:27 2015
SMON started with pid=13, OS id=4956 
Fri Mar 06 12:17:27 2015
RECO started with pid=14, OS id=5008 
Fri Mar 06 12:17:27 2015
MMON started with pid=15, OS id=4860 
Fri Mar 06 12:17:27 2015
MMNL started with pid=16, OS id=2032 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Fri Mar 06 12:17:27 2015
alter database mount exclusive
ORA-214 signalled during: alter database mount exclusive...
Fri Mar 06 14:09:50 2015


***********************************************************************

Fatal NI connect error 12638, connecting to:
 (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))

  VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
  Time: 06-MAR-2015 14:09:50
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12638

TNS-12638: Credential retrieval failed
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
Mon Mar 09 14:25:48 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Mon Mar 09 14:25:53 2015
PMON started with pid=2, OS id=3612 
Mon Mar 09 14:25:53 2015
VKTM started with pid=3, OS id=3616 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
Mon Mar 09 14:25:54 2015
GEN0 started with pid=4, OS id=3620 
Mon Mar 09 14:25:54 2015
DIAG started with pid=5, OS id=3628 
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Mon Mar 09 14:25:54 2015
DBRM started with pid=6, OS id=3632 
Mon Mar 09 14:25:54 2015
PSP0 started with pid=7, OS id=3636 
Mon Mar 09 14:25:54 2015
DIA0 started with pid=8, OS id=3644 
Mon Mar 09 14:25:54 2015
MMAN started with pid=9, OS id=3648 
Mon Mar 09 14:25:54 2015
DBW0 started with pid=10, OS id=3652 
Mon Mar 09 14:25:54 2015
LGWR started with pid=11, OS id=3656 
Mon Mar 09 14:25:55 2015
CKPT started with pid=12, OS id=3660 
Mon Mar 09 14:25:55 2015
SMON started with pid=13, OS id=3664 
Mon Mar 09 14:25:55 2015
RECO started with pid=14, OS id=3668 
Mon Mar 09 14:25:55 2015
MMON started with pid=15, OS id=3672 
Mon Mar 09 14:25:55 2015
MMNL started with pid=16, OS id=3676 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Mon Mar 09 14:25:56 2015
alter database mount exclusive
ORA-214 signalled during: alter database mount exclusive...
Mon Mar 09 16:00:16 2015
Shutting down instance (immediate)
Shutting down instance: further logons disabled
Stopping background process MMNL
Stopping background process MMON
License high water mark = 1
All dispatchers and shared servers shutdown
alter database close normal
ORA-1507 signalled during: alter database close normal...
Mon Mar 09 16:00:28 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Mon Mar 09 16:00:28 2015
PMON started with pid=2, OS id=6964 
Mon Mar 09 16:00:28 2015
VKTM started with pid=3, OS id=8328 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Mon Mar 09 16:00:28 2015
GEN0 started with pid=4, OS id=2460 
Mon Mar 09 16:00:28 2015
DIAG started with pid=5, OS id=7756 
Mon Mar 09 16:00:28 2015
DBRM started with pid=6, OS id=2280 
Mon Mar 09 16:00:28 2015
PSP0 started with pid=7, OS id=7040 
Mon Mar 09 16:00:28 2015
DIA0 started with pid=8, OS id=8340 
Mon Mar 09 16:00:28 2015
MMAN started with pid=9, OS id=7728 
Mon Mar 09 16:00:28 2015
DBW0 started with pid=10, OS id=796 
Mon Mar 09 16:00:28 2015
LGWR started with pid=11, OS id=5292 
Mon Mar 09 16:00:28 2015
CKPT started with pid=12, OS id=7896 
Mon Mar 09 16:00:28 2015
SMON started with pid=13, OS id=4812 
Mon Mar 09 16:00:28 2015
RECO started with pid=14, OS id=6792 
Mon Mar 09 16:00:28 2015
MMON started with pid=15, OS id=8808 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Mon Mar 09 16:00:28 2015
alter database mount exclusive
ORA-214 signalled during: alter database mount exclusive...
Mon Mar 09 16:00:28 2015
MMNL started with pid=16, OS id=6436 
Mon Mar 09 16:12:11 2015
Starting ORACLE instance (normal)
Mon Mar 09 16:12:26 2015
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
Mon Mar 09 16:12:37 2015
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Mon Mar 09 16:13:04 2015
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Mon Mar 09 16:13:09 2015
PMON started with pid=2, OS id=5916 
Mon Mar 09 16:13:10 2015
VKTM started with pid=3, OS id=5920 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Mon Mar 09 16:13:10 2015
GEN0 started with pid=4, OS id=5924 
Mon Mar 09 16:13:10 2015
DIAG started with pid=5, OS id=6004 
Mon Mar 09 16:13:10 2015
DBRM started with pid=6, OS id=6008 
Mon Mar 09 16:13:10 2015
PSP0 started with pid=7, OS id=6016 
Mon Mar 09 16:13:10 2015
DIA0 started with pid=8, OS id=6028 
Mon Mar 09 16:13:10 2015
MMAN started with pid=9, OS id=6032 
Mon Mar 09 16:13:10 2015
DBW0 started with pid=10, OS id=6052 
Mon Mar 09 16:13:10 2015
LGWR started with pid=11, OS id=6056 
Mon Mar 09 16:13:10 2015
CKPT started with pid=12, OS id=6060 
Mon Mar 09 16:13:10 2015
SMON started with pid=13, OS id=6064 
Mon Mar 09 16:13:10 2015
RECO started with pid=14, OS id=6068 
Mon Mar 09 16:13:10 2015
MMON started with pid=15, OS id=6072 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Mon Mar 09 16:13:10 2015
MMNL started with pid=16, OS id=6076 
Mon Mar 09 16:13:18 2015
alter database mount exclusive
ORA-214 signalled during: alter database mount exclusive...
Mon Mar 09 16:23:23 2015
Shutting down instance (immediate)
Shutting down instance: further logons disabled
Stopping background process MMNL
Stopping background process MMON
License high water mark = 1
All dispatchers and shared servers shutdown
alter database close normal
ORA-1507 signalled during: alter database close normal...
Mon Mar 09 16:24:43 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
System parameters with non-default values:
  processes                = 150
  memory_target            = 1232M
  control_files            = "C:\APP\NICO\ORADATA\ORCL\CONTROL01.CTL"
  control_files            = "C:\APP\NICO\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL"
  db_block_size            = 8192
  compatible               = "11.2.0.0.0"
  db_recovery_file_dest    = "C:\app\Nico\flash_recovery_area"
  db_recovery_file_dest_size= 3852M
  undo_tablespace          = "UNDOTBS1"
  remote_login_passwordfile= "EXCLUSIVE"
  db_domain                = ""
  dispatchers              = "(PROTOCOL=TCP) (SERVICE=orclXDB)"
  local_listener           = "LISTENER_ORCL"
  audit_file_dest          = "C:\APP\NICO\ADMIN\ORCL\ADUMP"
  audit_trail              = "DB"
  db_name                  = "orcl"
  open_cursors             = 300
  diagnostic_dest          = "C:\APP\NICO"
Mon Mar 09 16:24:44 2015
PMON started with pid=2, OS id=6308 
Mon Mar 09 16:24:44 2015
VKTM started with pid=3, OS id=8020 at elevated priority
VKTM running at (10)millisec precision with DBRM quantum (100)ms
OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
Mon Mar 09 16:24:44 2015
GEN0 started with pid=4, OS id=7444 
Mon Mar 09 16:24:44 2015
DIAG started with pid=5, OS id=5936 
Mon Mar 09 16:24:44 2015
DBRM started with pid=6, OS id=8088 
Mon Mar 09 16:24:44 2015
PSP0 started with pid=7, OS id=5216 
Mon Mar 09 16:24:44 2015
DIA0 started with pid=8, OS id=5280 
Mon Mar 09 16:24:44 2015
MMAN started with pid=9, OS id=8160 
Mon Mar 09 16:24:44 2015
DBW0 started with pid=10, OS id=5940 
Mon Mar 09 16:24:44 2015
LGWR started with pid=11, OS id=6020 
Mon Mar 09 16:24:44 2015
CKPT started with pid=12, OS id=4260 
Mon Mar 09 16:24:44 2015
SMON started with pid=13, OS id=7496 
Mon Mar 09 16:24:44 2015
RECO started with pid=14, OS id=1500 
Mon Mar 09 16:24:44 2015
MMON started with pid=15, OS id=6960 
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = C:\app\Nico
Mon Mar 09 16:24:44 2015
alter database mount exclusive
Mon Mar 09 16:24:44 2015
MMNL started with pid=16, OS id=6624 
ORA-214 signalled during: alter database mount exclusive...
Mon Mar 09 16:33:24 2015


***********************************************************************

Fatal NI connect error 12638, connecting to:
 (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))

  VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.1.0 - Production
  Time: 09-MAR-2015 16:33:24
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12638

TNS-12638: Credential retrieval failed
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
Mon Mar 09 16:39:39 2015
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
Picked latch-free SCN scheme 2
Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
Autotune of undo retention is turned on. 
IMODE=BR
ILAT =27
LICENSE_MAX_USERS = 0
SYS auditing is disabled
Starting up:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options.
Using parameter settings in server-side spfile C:\APP\NICO\PRODUCT\11.2.0\DBHOME_1\DATABASE\SPFILEORCL.ORA
oracle instance
  • 1 个回答
  • 6637 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目

    • 12 个回答
  • Marko Smith

    如何让sqlplus的输出出现在一行中?

    • 3 个回答
  • Marko Smith

    选择具有最大日期或最晚日期的日期

    • 3 个回答
  • Marko Smith

    如何列出 PostgreSQL 中的所有模式?

    • 4 个回答
  • Marko Smith

    列出指定表的所有列

    • 5 个回答
  • Marko Smith

    如何在不修改我自己的 tnsnames.ora 的情况下使用 sqlplus 连接到位于另一台主机上的 Oracle 数据库

    • 4 个回答
  • Marko Smith

    你如何mysqldump特定的表?

    • 4 个回答
  • Marko Smith

    使用 psql 列出数据库权限

    • 10 个回答
  • Marko Smith

    如何从 PostgreSQL 中的选择查询中将值插入表中?

    • 4 个回答
  • Marko Smith

    如何使用 psql 列出所有数据库和表?

    • 7 个回答
  • Martin Hope
    Jin 连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目 2014-12-02 02:54:58 +0800 CST
  • Martin Hope
    Stéphane 如何列出 PostgreSQL 中的所有模式? 2013-04-16 11:19:16 +0800 CST
  • Martin Hope
    Mike Walsh 为什么事务日志不断增长或空间不足? 2012-12-05 18:11:22 +0800 CST
  • Martin Hope
    Stephane Rolland 列出指定表的所有列 2012-08-14 04:44:44 +0800 CST
  • Martin Hope
    haxney MySQL 能否合理地对数十亿行执行查询? 2012-07-03 11:36:13 +0800 CST
  • Martin Hope
    qazwsx 如何监控大型 .sql 文件的导入进度? 2012-05-03 08:54:41 +0800 CST
  • Martin Hope
    markdorison 你如何mysqldump特定的表? 2011-12-17 12:39:37 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 对 SQL 查询进行计时? 2011-06-04 02:22:54 +0800 CST
  • Martin Hope
    Jonas 如何从 PostgreSQL 中的选择查询中将值插入表中? 2011-05-28 00:33:05 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 列出所有数据库和表? 2011-02-18 00:45:49 +0800 CST

热门标签

sql-server mysql postgresql sql-server-2014 sql-server-2016 oracle sql-server-2008 database-design query-performance sql-server-2017

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve