摘要: 1.电脑蓝牙搜索不到设备 参考 https://askubuntu.com/questions/547552/bluetooth-not-working-on-14-10-with-bcm43142 使用 $ dmesg | grep -i blue View Code 真心不知道怎么用这个写blo 阅读全文
posted @ 2018-08-19 02:55 冷漠脸 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 在学习dubbo快速入门时踩的坑http://dubbo.apache.org/books/dubbo-admin-book/ 根据官网教程使用默认的Multicast 注册中心,在consumer消费者订阅时出现了com.alibaba.dubbo.rpc.RpcException: Failed 阅读全文
posted @ 2018-05-12 23:41 冷漠脸 阅读(412) 评论(1) 推荐(0) 编辑
摘要: 通过这个大佬的教程卸载的 http://blog.csdn.net/wei1992_6/article/details/59131223 中间出现问题,找不到oui.bin.setup.exe文件,所以去官方下载卸载包, 卸载包在http://www.oracle.com/technetwork/d 阅读全文
posted @ 2017-11-28 01:30 冷漠脸 阅读(132) 评论(0) 推荐(0) 编辑
摘要: --数据库对象的创建和管理 DDL(数据定义语言) --表(table): 数据库存储的基本单元; --约束条件(constraint):用来确保数据库中数据的完整性,确保数据满足某些特定的商业规则 --视图(view):一个或多个表的逻辑表示或虚拟表示,主要用于简化查询操作 --索引(index):用于加速数据访问数据库对象,提高访问效率 --序列(se... 阅读全文
posted @ 2017-05-16 10:08 冷漠脸 阅读(2447) 评论(0) 推荐(0) 编辑
摘要: select prod_id,substr(prod_date,5,2),round(sum(prod_amt)/10000,0) from temp_table group by cube(prod_id,substr(prod_date,5,2)); 阅读全文
posted @ 2017-05-16 10:05 冷漠脸 阅读(176) 评论(0) 推荐(0) 编辑
摘要: --dml 数据操作和tcl事务操作 --一、insert insert into emp(empno, ename, job, sal) values(1001,'rose', 'CLERK', 1500); --使用子查询插入多条数据 create table emp_20( empid number(4) p... 阅读全文
posted @ 2017-05-15 09:29 冷漠脸 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 无结果函数 上述所有函数的结果集和函数 阅读全文
posted @ 2017-05-14 20:31 冷漠脸 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 查询语句实例,无结果集的 上述所有查询语句的结果 阅读全文
posted @ 2017-05-14 15:56 冷漠脸 阅读(9488) 评论(0) 推荐(0) 编辑
摘要: 原文链接:http://blog.csdn.net/dbanote/article/details/9158367 有了以上3个基本概念之后,我来阐述一下Oracle字符集转换的基本原则: 1.设置客户端的NLS_LANG为客户端操作系统的字符集 2.如果数据库字符集等于NLS_LANG,数据库和客 阅读全文
posted @ 2017-05-14 15:54 冷漠脸 阅读(1305) 评论(0) 推荐(0) 编辑
摘要: 再sqlplus中执行脚本sql语句,并使结果输出到ouput文件 --关闭console台输出,可以节省时间 set term off; --再输出的文件中显示执行的sql语句 set echo on; --显示执行每条语句所用的时间 set timing on; --每行显示的100个字符 set linesize 100; --查询结果每一百条分一页 set pagesize 100; -... 阅读全文
posted @ 2017-05-14 15:50 冷漠脸 阅读(5573) 评论(0) 推荐(0) 编辑