合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
oracle使用declare ```sql declare i integer; --定义变量 begin i := 1; loop /* 插入数据: 自定义 */ INSERT INTO table VALUES(i, '20171016'); /* 参数递增 */ i := i + 1; /* 停止条件 */ exit when i > 100000; end loop; commit; end; ``` ### 备份及恢复 ``` exp 用户名/密码@服务名 file=本地文件路径.dmp tables=(表1,表2...) imp 用户名/密码@服务名 ignore=y file=backup.dmp log=imp.log exp 用户名/密码@服务名 file=backup.dmp tables=SMSMODEL ```