Step by Step TimesTen --- ttIsql
ttIsql是TimesTen的一個互動工具,相當於oracle的sqlplus.
ttIsql有兩種模式,一種是命令列互動,一種是批處理模式。
a. 命令列模式
1, 連線DataStore
$ ttisql -connStr fxdsn
Copyright (c) 1996-2007, Oracle. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.
All commands must end with a semicolon character.
connect "fxdsn";
Connection successful: DSN=fxdsn;UID=times;DataStore=/ora/TimesTen/datastore/fxdsn;DatabaseCharacterSet=US7ASCII;ConnectionCharacterSet=US7ASCII;PermSize=8;TempSize=8;TypeMode=0;
(Default setting AutoCommit=1)
Command>
2,察看資料庫中有哪些表
Command> select TBLNAME,TBLOWNER from sys.tables;
< TABLES , SYS >
< COLUMNS , SYS >
< INDEXES , SYS >
< TBL_STATS , SYS >
< COL_STATS , SYS >
< PLAN , SYS >
< MONITOR , SYS >
< CACHE_GROUP , SYS >
< TRANSACTION_LOG_API , SYS >
< VIEWS , SYS >
< SEQUENCES , SYS >
< TTABLES , SYS >
< TINDEXES , SYS >
< TTBL_STATS , SYS >
< TCOL_STATS , SYS >
< DUAL , SYS >
< TABLE_HISTORY , SYS >
< COLUMN_HISTORY , SYS >
< SYNONYMS , SYS >
< SYS_ACC_RIGHT , SYS >
< OBJ_ACC_RIGHT , SYS >
< USERS , SYS >
< REPELEMENTS , TTREP >
< REPLICATIONS , TTREP >
< REPPEERS , TTREP >
< REPSTORES , TTREP >
< REPSUBSCRIPTIONS , TTREP >
< REPTABLES , TTREP >
< TTSTORES , TTREP >
< REPNETWORK , TTREP >
< XLASUBSCRIPTIONS , SYS >
< TEST , TIMES >
32 rows found.
3,檢視錶結構
Command> desc test;
Table TIMES.TEST:
Columns:
A NUMBER (38)
1 table found.
(primary key columns are indicated with *)
4, 執行SQL語句
Command> select * from test;
0 rows found.
Command> insert into test values(1);
1 row inserted.
Command> insert into test values(2);
1 row inserted.
Command> select * from test;
< 1 >
< 2 >
2 rows found.
5,執行一個SQL檔案
Command> run test.sql
insert into test values(3);
1 row inserted.
insert into test values(4);
1 row inserted.
b. 批處理模式
$ ttisql -f test.sql fxdsn
Copyright (c) 1996-2007, Oracle. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.
All commands must end with a semicolon character.
connect "DSN=fxdsn";
Connection successful: DSN=fxdsn;UID=times;DataStore=/ora/TimesTen/datastore/fxdsn;DatabaseCharacterSet=US7ASCII;ConnectionCharacterSet=US7ASCII;PermSize=8;TempSize=8;TypeMode=0;
(Default setting AutoCommit=1)
run "test.sql";
insert into test values(3);
1 row inserted.
insert into test values(4);
1 row inserted.
exit;
Disconnecting...
Done.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/81/viewspace-205093/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Step by Step TimesTen ----- 配置client-server連線clientServer
- Step by Step TimesTen --- DataStore的雙向複製( 一)AST
- Step by Step TimesTen --- DataStore的雙向複製( 二)AST
- Step by Step TimesTen-- 使用ODBC訪問TimesTen資料庫C++篇(一個例子)(1)資料庫C++
- Step by Step TimesTen-- 使用ODBC訪問TimesTen資料庫C++篇(一個例子)(2)資料庫C++
- React Step by StepReact
- Command 模式 Step by Step模式
- BAPI Step by step GuidanceAPIGUI
- Promise的實現(step by step)Promise
- Learn c++ step by step (轉)C++
- Linux Software RAID step by stepLinuxAI
- Git Step by Step (3):Git物件模型Git物件模型
- Oracle高階複製Step by StepOracle
- 安裝linux(step by step)(轉)Linux
- Learn C++ step by step(2) (轉)C++
- 單步除錯 step into/step out/step over 區別詳解除錯
- ABP應用開發(Step by Step)-下篇
- ABP應用開發(Step by Step)-上篇
- TIDB DM資料同步step by stepTiDB
- Git Step by Step (4):探索.git目錄Git
- ClearCase使用入門--step by step(序) (轉)
- 實時 Linux 抖動分析 Step by stepLinux
- Git Step by Step (6):Git遠端倉庫Git
- STEP BY STEP INSTALL SSH ON AIX5.3(6.1)AI
- install 11G ASM on RedHat step by stepASMRedhat
- oracle10g simpe AQ step by step(二)Oracle
- oracle10g simpe AQ step by step(一)Oracle
- linux中配置NFS服務step by stepLinuxNFS
- step by step install netbackup client 6.5 on aixclientAI
- Step by Step Data Replication Using Oracle GoldenGateOracleGo
- Step by Step 安裝 BizTalk Server 2009Server
- Baby-Step-Gaint-Step演算法詳解AI演算法
- Step-by-step,打造屬於自己的vue ssrVue
- Git Step by Step (7):Git遠端倉庫(續)Git
- Team Foundation Server 2005 (Chs) Setup Step by StepServer
- Linkerd 2.10(Step by Step)—多叢集通訊
- 深度學習之step by step搭建神經網路深度學習神經網路
- 使用RMAN備份集搭建Oracle Dataguard Step by Step(一)Oracle