2018年7月11日

oracle创建用户、创建表空间、授权、建表的完整过程

摘要: 1.首先以sysdba的身份登录oracle conn /as sysdba 查询用户: select username from dba_users; 查询表空间 select username, default_tablespace from dba_users where username=' 阅读全文

posted @ 2018-07-11 10:43 白衣·沽酒 阅读(1949) 评论(0) 推荐(0) 编辑

2018年5月29日

oracle表空间扩容

摘要: 第一步:查看表空间的名字及文件所在位置: select tablespace_name, file_id, file_name, round(bytes/(1024*1024),0) total_space from dba_data_files order by tablespace_name 另 阅读全文

posted @ 2018-05-29 09:20 白衣·沽酒 阅读(314) 评论(0) 推荐(0) 编辑

2018年2月27日

jsp中Double类数字太大时页面正常显示而不要用科学计数法

摘要: 1.在java后台中进行转换 a.使用BigDecimal类 double num=8.2347983984297E7; String str=new BigDecimal(num).toString(); 注意:以上方式转换之后的可能不是你想要的模样,而是酱紫——82347983.98429700 阅读全文

posted @ 2018-02-27 09:54 白衣·沽酒 阅读(2882) 评论(0) 推荐(0) 编辑

导航