04 2018 档案
摘要:当前模式是在cdb模式,navicat工具能连接。sqlplus用下面账户也能连接。 查看当前模式,如果不是cdb,请切换。(上一篇有讲)创建表空间create tablespace my_space datafile '/usr/local/yrm/oracle_data/my_space.dbf
阅读全文
摘要:安装环境 本文介绍在ubuntu14.04系统(X64)上安装Oracle Instant Client,安装版本为11.2.0.4.0(读者需要按照自己安装版本修改相应的版本号) 安装RPM文件 在Oracle官网地址 http://www.oracle.com/technetwork/topic
阅读全文
摘要:下载 oracal 安装包 进入https://www.oracle.com/index.html 依次选择-->Menu -->Downloads and trials -->Database -->Oracle Database 勾选Accept License Agreement。 找到Ora
阅读全文
摘要:文/ TOMsInsight (微信公众ID:tomsinsight) 北京,入秋,雾霾天及社交网络的分享,让大家忽略了这个三千多年六朝古都传承下来的秋悲寂寥。北京的天气如二进制码般分明:今天重度污染,明天就晴空万里。而TMT行业也是如此,成王败寇:一方面是热火朝天的互联网化的颠覆,另一方面很多企业
阅读全文
摘要:进去官网 www.ubuntu.com 。 点击Downloads下的 Overview。 点击 ubuntu desktop。 点击downloads 选择不去捐款Not now, take me to the download ›。 然后就自动下载了。 ubuntu安装好后,默认带有gcc,g+
阅读全文
摘要:#include #include void main() { char *strcopy(char *target, char *source); char a[] = "hello world~"; strcopy(a,"thanks!"); printf("%s\n",a); getchar(); } char *strcopy(char *t...
阅读全文
摘要:#include #include void main(){ int myfun(int in); int a =myfun(10); printf("%d\n", a); } int myfun(int in){ if (in > 1) //将下面的*换成+,就可以求100+99+98...+3+2+1的值呢。 retur...
阅读全文