Oninit -vy 挂起实例
linux 界面:
库级导入:
直接载入指定unl文件,onload命令从源文件中读取信息,自动创建相关表结构,装载数据以及相关索引。
onload -t [unl文件] -d dbs1 testdb
将testdb库日志模式改为unbuffered状态
ontape -s -L 0 -t /dev/null -U testdb
表级导入:
先将testdb 日志模式改为nolog状态
ondblog nolog testdb
使用onload 命令读取unl文件,将数据导入到指定t表中
onload -t [unl文件] -d dbs testdb:t
修改testdb 库日志模式为unbuffered 状态
ontape -s -L 0 =t /dev/null -U testdb
命令交互模式下:
先在外部将testdb 日志模式改为nolog状态
ondblog nolog testdb
运行load from 将 unl数据导入指定表
load from [unl文件] insert into t;