上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 206 下一页
摘要: 用Html5/Canvas绘制蓝底白线六角雪花。 阅读全文
posted @ 2022-08-11 20:12 逆火狂飙 阅读(271) 评论(0) 推荐(0)
摘要: 【sql】 select a.column_name as name,a.column_id as order_num,b.comments as remark from (select column_name,column_id from user_tab_columns where table_ 阅读全文
posted @ 2022-08-11 20:06 逆火狂飙 阅读(362) 评论(1) 推荐(0)
摘要: 需求: 如题 代码: package newtname; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class Test { /** * 按旧表名+当前日期生成新表名 * 要求新 阅读全文
posted @ 2022-08-09 05:43 逆火狂飙 阅读(151) 评论(0) 推荐(0)
摘要: 读取: String value=ps.getString(columnIndex); 这个和字符型字段的读取一致。 写入: String value=......; ps.setCharacterStream(columnIndex,new StringReader(value),value.le 阅读全文
posted @ 2022-08-08 13:52 逆火狂飙 阅读(516) 评论(0) 推荐(0)
摘要: 【需求】 程序中需要建表,需要动态知道DB系统所允许的表名最大长度。 如果按11g允许的30位给12c,19c设置,那么后两者实际允许的128位就被武断限制了。 【思路】 使用create table tname(df char(1));这样的语句建表,不断加长tname的长度,当建表出现异常时,回 阅读全文
posted @ 2022-08-01 19:20 逆火狂飙 阅读(149) 评论(1) 推荐(0)
摘要: luna@ORCL>comment on table DEPT is '部门表'; --创建表注释 注释已创建。 luna@ORCL>select * from user_tab_comments where table_name='DEPT'; --读取表注释 TABLE_NAME TABLE_T 阅读全文
posted @ 2022-07-27 17:06 逆火狂飙 阅读(103) 评论(0) 推荐(0)
摘要: 高中数学/比大小 已知 a=log_3_2, b=log_5_3,C=log_8_5,则下列关系式正确的是() A.a>b>c B.a 阅读全文
posted @ 2022-07-26 16:07 逆火狂飙 阅读(422) 评论(0) 推荐(0)
摘要: 高中数学/比大小 已知 a=log_64_3,b=lg2*lg5.C=1/3*log_3_4,则下列关系式正确的是() A.a>b>c B.b>a>c C.c>b>a D.c>a>b 阅读全文
posted @ 2022-07-25 19:47 逆火狂飙 阅读(156) 评论(0) 推荐(0)
摘要: 【当前效率】 21字段表(1id+20varchar2/nvarchar2),10字段脱敏,10字段保持,数据量1300万,在来源端和去向端都是Oracle12c以上数据库的情况下,在虚拟机上能在600s-700s内传输完,约2万条每秒,在服务器上能在300-400秒内传输完,约4万条每秒。 【提速 阅读全文
posted @ 2022-07-24 07:06 逆火狂飙 阅读(79) 评论(0) 推荐(0)
摘要: 有一张emp722表结构和数据如下: create table emp722( id number(10), f1 nvarchar2(20), f2 nvarchar2(20), f3 nvarchar2(20), f4 nvarchar2(20), primary key(id) ); inse 阅读全文
posted @ 2022-07-22 16:55 逆火狂飙 阅读(339) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 206 下一页