上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 58 下一页
摘要: 使用 set unused 选项标记不再使用的列 使用 drop unsused columns 丢弃标记为unused的列 alter table tabName set unused column colName; 或alter table tabName set unused (colName 阅读全文
posted @ 2019-09-11 10:09 酸奶加绿茶 阅读(207) 评论(0) 推荐(0) 编辑
摘要: Put a table into read-only mode,which prevents DDL or DML changes during table maintenance Put the table back into read/write mode alter table XX READ 阅读全文
posted @ 2019-09-11 09:58 酸奶加绿茶 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 并集合 union/uinon all union 会去重,uinon all 不去重 交集 intersect 差集 minus 阅读全文
posted @ 2019-09-10 11:55 酸奶加绿茶 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 参数SID写错了 阅读全文
posted @ 2019-09-09 09:42 酸奶加绿茶 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 参考资料: 1.https://blog.csdn.net/li19236/article/details/41621179 阅读全文
posted @ 2019-09-02 11:24 酸奶加绿茶 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: 格式:TO_CHAR(number,'format_model') 9 -->Represents a number 0 --> Forces a zero to be displayed . -->Prints a decimal point , --> Prints a comma as a t 阅读全文
posted @ 2019-08-28 07:54 酸奶加绿茶 阅读(46615) 评论(0) 推荐(0) 编辑
摘要: 举例: 查找姓名为M%的员工。 select * from employee where staff_name like 'M\%' escape '\'; 阅读全文
posted @ 2019-08-26 08:33 酸奶加绿茶 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 作用:Increase readability and usability (增加可读性和可用性) 用法:select q'[ select * from ]'||table_name|| ';' from all_tables; q'[ ]' 其中[] 可以改变为其他任意字符 阅读全文
posted @ 2019-08-25 13:34 酸奶加绿茶 阅读(1630) 评论(0) 推荐(0) 编辑
摘要: 待验证 阅读全文
posted @ 2019-08-24 13:51 酸奶加绿茶 阅读(447) 评论(1) 推荐(0) 编辑
摘要: Bad column index (35) specified for table user.table_name, max columns = 35. 原因:源端表结构发生了变更 解决办法:1.如果没有使用数据定义文件,同步表结构就可以 2.如果使用了数据定义文件,目标端使用了sourcedefs 阅读全文
posted @ 2019-08-24 10:03 酸奶加绿茶 阅读(814) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 58 下一页