上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: 下载pl/sql developer 32位 Version 11.0.2.1766 链接:http://pan.baidu.com/s/1qYzCHRI 密码:n4bp 下载instantclient 32位 instantclient-basic-win32-11.2.0.1.0 链接:http://pan.baidu.com/s/1cm7ZQY 密码:dzun 打开pl/s... 阅读全文
posted @ 2017-11-03 10:19 岳麓丹枫 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 删除列1.光标定位到要操作的地方。2.CTRL+v 进入“可视 块”模式,选取这一列操作多少行。3.d 删除。 插入列插入操作的话知识稍有区别。例如我们在每一行前都插入"() ":1.光标定位到要操作的地方。2.CTRL+v 进入“可视 块”模式,选取这一列操作多少行。3.SHIFT+i(I) 输入要插入的内容。4.ESC 按两次,会在每行的选定的区域出现插入的内容。 阅读全文
posted @ 2017-11-01 16:37 岳麓丹枫 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 示例 data=(value0 value1 value2 value3) echo "======方法一========" for item in ${data[*]} do echo $item done echo "=======方法二=======" for item in ${data[@]} do echo $item done echo "==... 阅读全文
posted @ 2017-11-01 16:12 岳麓丹枫 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 来源: http://blog.csdn.net/a343315623/article/details/51436889操作描述-----操作描述 算术比较 中括号格式[...],注意空格 字符串比较 -eq等于 =等于 ==等于-ne不等于 !=不等于-lt小于 \大于 (ASCII) *-ge大于等于 -z字符串为空 -n字符串不为空 算术比较 双括号(( ... 阅读全文
posted @ 2017-11-01 15:14 岳麓丹枫 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Shell变量默认是global的,其作用于从其被定义开始到shell脚本执行结束 local一般用于局部变量声明,多在在函数内部使用。 (1)shell脚本中定义的变量是global的,其作用域从被定义的地方开始,到shell结束或被显示删除的地方为止。 (2)shell函数定义的变量默认是global的,其作用域从“函数被调用时执行变量定义的地方”开始,到shell结束或被显示删除处为止... 阅读全文
posted @ 2017-11-01 14:24 岳麓丹枫 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 参考博文: http://blog.csdn.net/vking_wang/article/details/9110899 预定义异常 常见ORACLE异常错误: 非预定义异常 oralce预定义的异常对应的是相应的错误,但是还会有其他错误,但是这些错误并没有预先定义异常,因此,在出现非预定义异常的时候,我们可以将自定义的异常与oracle错误关联起来, SQL> decla... 阅读全文
posted @ 2017-10-30 14:05 岳麓丹枫 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 在insert语句中使用批量绑定 未使用for all的情况 declare type id_table_type is table of number(6) index by binary_integer; type name_table_type is table of varchar2(10) index by binary_integer; id_table... 阅读全文
posted @ 2017-10-27 15:33 岳麓丹枫 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 直接上例子set serveroutput on; declare type a_varray_type is varray(10) of int; type nal_varray_type is varray(10) of a_varray_type; data nal_varray_type := nal_varray_type( a_varray_type(58,100,102)... 阅读全文
posted @ 2017-10-27 14:21 岳麓丹枫 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 参考博文:http://blog.csdn.net/zyz511919766/article/details/49335647 原来的SQL SELECT * FROM T_SOF_IMP a WHERE not exists (select 1 from t_sof_subscriber b where a.dn=b.dn); 优化之后的SQL select a.* fr... 阅读全文
posted @ 2017-10-26 13:39 岳麓丹枫 阅读(614) 评论(0) 推荐(0) 编辑
摘要: DECLARE n NUMBER := 10; PROCEDURE do_something ( n1 IN NUMBER) IS BEGIN dbms_output.put_line(n1); -- prints 10 --n1:=20; --illegal assignment. END; BEGIN do_something(n); do_someth... 阅读全文
posted @ 2017-10-26 13:39 岳麓丹枫 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.cnblogs.com/SharkBin/archive/2012/08/08/2627912.html 写法上:存储过程的参数列表可以有输入参数、输出参数、可输入输出的参数; 函数的参数列表只有输入参数,并且有return 。返回值上: 存储过程的返回值,可以有多个值, 函数的返回值,只有一个值。调用方式上: 存储... 阅读全文
posted @ 2017-10-26 13:38 岳麓丹枫 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 参考博文: http://blog.itpub.net/29785807/viewspace-1273138/ http://www.cnblogs.com/kerrycode/archive/2013/03/18/2965747.html 创建序列 CREATE SEQUENCE seq1 START WITH 100 INCREMENT BY 10 MAXVALU... 阅读全文
posted @ 2017-10-25 11:00 岳麓丹枫 阅读(171) 评论(0) 推荐(0) 编辑
摘要: License—– BEGIN LICENS... 阅读全文
posted @ 2017-10-12 20:33 岳麓丹枫 阅读(103) 评论(0) 推荐(0) 编辑
摘要: OAuth2 原理 前提 每个网站要(本文以慕课网为例)想使得用户可以通过第三方应用(本文以QQ为例)登录其网站,那么首先要到QQ互联官网提交相关资料以供审核 提交资料主要信息如下表 appIdappKeydomaindescriptionredirect_uri10001421221001www.mooc.com在线教育平台http://www.mooc.com1000242122100... 阅读全文
posted @ 2017-09-28 09:58 岳麓丹枫 阅读(242) 评论(0) 推荐(0) 编辑
摘要: Help -> Register… -> L... 阅读全文
posted @ 2017-06-17 11:10 岳麓丹枫 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 参考博文:http://www.cnblogs.com/donqiang/articles/2057972.html 阅读全文
posted @ 2017-06-09 09:58 岳麓丹枫 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 国内镜像地址 http://pypi.douban.com/ 豆瓣 http://pypi.hustunique.com/ 华中理工大学 http://pypi.sdutlinux.org/ 山东理工大学 http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学 http://mirrors.sohu.com/python/ https://pypi.... 阅读全文
posted @ 2017-05-05 09:36 岳麓丹枫 阅读(245) 评论(0) 推荐(0) 编辑
摘要: python 解决 SNIMissingWarning 和 InsecurePlatformWarning 警告 在想要获取 https 站点的资源时,会报出 SNIMissingWarning 和 InsecurePlatformWarning 警告 解决方法: 在 cmd 中输入: 阅读全文
posted @ 2017-04-05 11:27 岳麓丹枫 阅读(399) 评论(0) 推荐(0) 编辑
摘要: Python多版本管理:pyenvhttp://seisman.info/python-pyenv.html Python多环境创建:virtualenv Python多环境管理:virtualenvwrapperhttps://segmentfault.com/a/1190000004079979 http://www.jianshu.com/p/3abe52adfa2b pyenv的介绍 ... 阅读全文
posted @ 2017-03-28 12:07 岳麓丹枫 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 先要安装这个管理工具 pyenv git clone git://github.com/yyuu/pyenv.git ~/.pyenvecho 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrcecho 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrcecho 'eval "$(pyenv init -)... 阅读全文
posted @ 2017-03-28 11:44 岳麓丹枫 阅读(263) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页