Robin's blog

归档 · 2017

首页

关于

归档

DatabaseOracleNodejs

Oracle Node.js 连接Oracle ERP数据库测试

Oracle-NodeJS 测试安装 Node.jsDownload and extract the Node.js “Linux Binaries” package. For example, if you downloaded version 6.9.4 for 64-bit you could install Node.js into /opt: cd /opt tar -Jxf node-v6.9.4-linux-x64.tar.xz Set PATH to include Node.js: export PATH=/opt/node-v6.9.4-linux-x64/bin:$PATH 安装 Oracle 客户端See the Instant Client Home Page for more i..

更多
OracleEMEBS

重建 Oracle EM For EBS R12

重建Oracle EM For EBS R12Oracle EBS R12.1.1使用的是Oracle Database 11R1数据库,但是Oracle Database 11R1无法用像10g以前的版本那样的通过文件就可以打开alter.log,只能通过EM查看alter,而在安装EBS R12时,默认是不安装EM.导致无法查看Alter的信息. 下面就介绍如何手工启动EM: 一、检查参数remote_login_passwordfile是否为EXCLUSIVE或SHARED1).以sys用户登录$sqlplus /nolog SQL>conn /as sysdba SQL>show parameter remote_login_passwordfile; NAME TYPE VALUE -..

更多
loading..
OracleMicrocontainers

Oracle microcontainer builder

smith - microcontainer builderOracle 微容器构建工具 What is smith?smith is a simple command line utility for buildingmicrocontainersfrom rpm packages or oci images. 如果用Docker的, 可以试试这个Oracle用新开源工具构建镜像 Principles of microcontainers A microcontainer only contains the process to be run and its directdependencies. The microcontainer has files with no user ownership o..

更多
大数据OracleNosql

Oracle NoSQL Database介绍及部署

Oracle于2011年发布NoSQL,它是基于Oracle Berkeley DB Java Edition的新键-值存储系统,设计时考虑到了高扩展性和高可用性,并可部署于多个互相复制的节点上,以便进行快速故障切换及负载均衡。 Oracle NoSQL database1、特性数据模型简单Key/Value式的存储。 扩展性强支持自动地基于hash函数的数据分片策略。提供基于数据节点拓扑结构和访问延迟的智能控制,以提供最佳的数据访问性能。 行为可预测性提供ACID的事务性支持,并且支持基于全局和单个操作的事务级别设置。通过B-tree数据结构构成的Cache层和高效的查询调度机制,提供可控的请求延迟。 高可用性没有单点故障。提供内置且可配置的数据复制备份机制。通过跨数据中心的数据备份,..

更多