Sqlserver2005迁移至Oracle系列之一:生成表(下)
2009-03-03 13:11:23 来源:WEB开发网insert into ##table(ident,ctext) select -1,'END;'
insert into ##table(ident,ctext) select -1,'--' + replicate('*',50) + '该脚本适用于 oracle数据库系统' + replicate('*',50)
insert into ##table(ident,ctext) select -1,'--' + replicate('*',50) + '该脚本适用于 oracle数据库系统' + replicate('*',50)
--清理临时表
begin
if not object_id('tempdb..#table_define') is null
drop table #table_define
if not object_id('tempdb..#table_constraints') is null
drop table #table_constraints
if not object_id('tempdb..#table_indexes') is null
drop table #table_indexes
end
--返回结果集
select replicate(' ',(ident + 1)*4) + ctext
from ##table
系列文章:
Sqlserver2005迁移至Oracle系列之一:生成表(上)
Sqlserver2005迁移至Oracle系列之一:生成表(下)
Sqlserver2005迁移至Oracle系列之二:生成存储过程
Sqlserver2005迁移至Oracle系列之三:在Oracle中创建sql中的常见函数
Sqlserver2005迁移至Oracle系列之四:在Oracle中创建位或运算函数-bitor
Sqlserver2005迁移至Oracle系列之五:角色、用户、及权限
- ››oracle 中 UPDATE nowait 的使用方法
- ››Oracle ORA-12560解决方法
- ››Oracle 10g RAC 常用维护命令
- ››Oracle如何在ASM中定位文件的分布
- ››sqlserver安装和简单的使用
- ››Oracle的DBMS_RANDOM.STRING 的用法
- ››oracle 外部表导入时间日期类型数据,多字段导入
- ››Oracle中查找重复记录
- ››oracle修改用户登录密码
- ››Oracle创建删除用户、角色、表空间、导入导出等命...
- ››Oracle中登陆时报ORA-28000: the account is lock...
- ››Oracle数据库在配置文件中更改最大连接数
更多精彩
赞助商链接