timesten删除实例

Posted 东南风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了timesten删除实例相关的知识,希望对你有一定的参考价值。

 

1.修改环境变量

让环境变量指向目前的实例

[instanceadmin@localhost ~]$ more .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs
export TIMESTEN_HOME=/opt/tt18.1.4.34.0/hxl/hxl
export ORACLE_HOME=/usr/lib/oracle/12.2/client64
export PATH=$ORACLE_HOME/bin:$TIMESTEN_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/opt/tt18.1.4.34.0/lib:$LD_LIBRARY_PATH
TNS_ADMIN=/opt/tt18.1.4.34.0/network/admin

export PATH

退出,用户instanceadmin重新登录

 

2.删除实例

[instanceadmin@localhost ~]$ /opt/tt18.1.4.34.0/bin/ttInstanceDestroy
   
** WARNING **

   The uninstallation has been executed by a non-root user.
   If the TimesTen daemon startup scripts were installed,
   you must run $TIMESTEN_HOME/bin/setuproot -uninstall
   to remove them. If you proceed with this uninstallation, you
   will have to remove the startup scripts manually.
   
** WARNING **

   All files in the directory:

   /opt/tt18.1.4.34.0/hxl/hxl

   will be removed, including any file that you or other users
   may have created.

   Are you sure you want to completely remove this instance? [ yes ] yes
ttDaemonAdmin: daemon is not running
   Installation will remove all the files from /opt/tt18.1.4.34.0/hxl/hxl.
   Do you want to continue? [ yes ] yes
   
NOTE: /opt/tt18.1.4.34.0/hxl/hxl/info contains information related to the data stores
      that have been created with this release. If you remove
      /opt/tt18.1.4.34.0/hxl/hxl/info
      you will no longer be able to access your data stores,
      nor would you be able to restore nor migrate your data.

   
NOTE: /opt/tt18.1.4.34.0/hxl/hxl/conf contains information related to the instance configuration.
/opt/tt18.1.4.34.0/hxl/hxl Removed

 

求教Oracle内存数据库timesten的使用

最近在研究oracle+timesten的使用,看了一些文档,对timesten的应用场景,功能,性能等方面有一定的认识,本人也在linux下安装了oracle 11g 和timesten11..我有一些问题想请教一下高人:
1,timesten怎么使用?比如oracle想在linux使用可以用sqlplus命令,也有plsql,toad等图形软件工具操作。但是timesten怎么使用,有没有一些相关的图形软件?最好提供一个操作实例
2,想做一个高数据量运转的一个平台,我有一些想法不知道对不对。oracle是不是可以把数据表同步给timesten,timesten加载到内存里面?有驱动支持可以直接用php和jdbc连接timesten数据库么?可以的话,能给个实例么?不可以的话,那怎么有效的通过oracle有效的利用timesten?
3,求timesten或者oracle+timesten的相关手册
谢谢大家了,我最想要的是实例和操作流程,给我个操作例子吧
________________________________
实例,实例...能给我个实例么??

然后通过如下的程序代码进行访问

import java.sql.*;
import javax.sql.*;
public class Tttest
public static void main(String args[])

//远程连接需要的url,程序和TT不在一台服务器。需要按照上节的方法,提前定义好DSN
String URL = "jdbc:timesten:client:dsn=wzyCS_tt70";
//本地连接需要的url,程序和TT在同一台服务器
//String URL = "jdbc:timesten:direct:dsn=wzy_tt70";

Connection con = null;
try
//加载TT的驱动程序
Class.forName("com.timesten.jdbc.TimesTenDriver");
catch (ClassNotFoundException ex) ex.printStackTrace();

try

//获得连接
con = DriverManager.getConnection(URL);
System.out.println("connected");
//创建jdbc 语句
java.sql.Statement st=con.createStatement();
//执行sql 查询操作
java.sql.ResultSet rs=st.executeQuery("select * from test");
while (rs.next())

//取出结果集
System.out.println(rs.getString("id"));


//关闭连接
con.close();
// Handle any errors
catch (SQLException ex)
ex.printStackTrace();



如果TT工作正常,DSN定义正常,我们就能看到java程序输出 结果了。
除了刚开始的url和driver不一样以外,其他的都是标准的jdbc语法,很简单,也很强大。
参考技术A 在重研所多个项目中都有内存数据库的应用,但重研所应用的内存数据库有多 timesten
个版本,没有统一的版本,目前以FastDb占主流。普遍存在以下问题,访问方式不符合SQL92规范,不支持客户服务器模式,没有完整的API,可靠性不高,和数据库之间的数据互操作困难等等。 近期和Oracle技术工程师作了一次关于TimesTen,Oracle10G,Oracle9i的交流。在交流中,Oracle的工程师比较详细地介绍了Oracle的内存数据库TimesTen.因此在与Oracle技术工程师交流过程中,根据重研所的需求情况特别关注了一下TimesTen. ORACLE和Times Ten公司6月20日在上海宣布,双方已就甲骨文收购Times Ten正式达成最终协议。Times Ten公司是一家私有的实时数据管理软件供应商,主要为电信、网络、证券交易等行业提供基础架构软件,并用这种软件进行事件管理、交易和数据的工作。其在全球的客户包括Amdocs、亚斯贝克通信公司、爱立信、JP摩根、nec、诺基亚、斯普林特、美国航空等。这家公司目前支持的系统包括实时计费系统、股票交易系统、呼叫中心系统、航线运营系统等。ORACLE收购Times Ten标志 Oracle进入内存数据库领域。
编辑本段官方定义
Times Ten官方定义:TimesTen?/Cache (Cache) is a real-time dynamic data caching system. It includes TimesTen‘s in-memory database and data exchange technologies. Together, they enable applications to combine the real-time performance of TimesTen with the large storage capacity of an RDBMS.
编辑本段特点
Times Ten 特点: 符合RDBMS标准的独立内存数据库 timesten
服务 支持SQL92 支持 ODBC & JDBC 高性能 可以作为Oracle数据库的前端Cache,目前不支持其他数据库 支持本地的高速访问和网络访问方式 可靠性高。支持完整日志,支持镜像复制功能。 不是开源代码,需要较高费用 目前不支持存储过程和触发器

以上是关于timesten删除实例的主要内容,如果未能解决你的问题,请参考以下文章

理解TimesTen内存数据库DBI文件的作用以及相关故障处理

理解TimesTen内存数据库DBI文件的作用以及相关故障处理

TimesTen 应用层数据库缓存学习:16. Aging策略与AWT缓存组

TimesTen 数据库复制学习:9. 更改Active Standby Pair

TimesTen 应用层数据库缓存学习:18. 利用TimesTen实现Sharding或数据分区

TimesTen 数据库复制学习:1. TimesTen复制概述