Oracle

公有云(三)

雨燕双飞 提交于 2021-02-20 16:46:54
12.重装系统 1.更换系统盘 直接换系统的那块盘,可以换不同的操作系统,比如从Linux换成Windows 或者Windows换成linux 步骤:ECS控制台---点击对应的实例---停止实例--右侧更多-- 更换系统盘 2.重新初始化 步骤:ECS控制台---停止实例--右侧更多 -- 重新初始化磁盘--到了本实例云盘管理-- 选择对应的系统盘---打勾-- 重新初始化磁盘 13.工单系统 工单是什么 工单是我们提交问题的 如何创建工单 点击上面菜单栏-- 点击选择提交工-- 选择对应的产品分类 --- 选择遇到问题的分类,在点右下角提交 14.RDS 云数据库 支持mysql sqlserver postgrepsql mariadb PPAS(高度兼容oracle) 云数据库RDS 建议和ECS 在同一个区域里 创建实例 地域:根据你的云主机来选择 类型:mysql/mariadb/postgrepql基础版 可用区域要和你的ECS匹配, 网络类型也要根据你的云主机网络来选择 规则:小型网站, 1核1G就够了 后续可以升级 存储空间也是安需求建 购买实例后,需要等1到2分钟擦i可以看到实例列表 管理实例 点击管理页面来进行管理 专有网络的联通性 ping 数据库地址 安装mysql yum install -y mysql 管理平台创建MYSQL账号

Oracle中复制表的方法(create as select、insert into select、select into)

家住魔仙堡 提交于 2021-02-20 12:59:58
转: Oracle中复制表的方法(create as select、insert into select、select into) 2018-07-30 22:10:37 小白白白又白cdllp 阅读数 7001 更多 分类专栏: 数据库 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接: https://blog.csdn.net/weixin_39750084/article/details/81292774 (作者:陈玓玏) 在使用SQL的过程中,常常需要复制表,或者通过建立临时表来存储select语句生成的结果,这个在建模过程中造变量的时候用得尤其多。 1、用create as select drop table tablename; create table tablename as select * from tab1; 1 2 3 Oracle中删除表格不能先用if exists做判断,所以如果表格不存在,直接运行这两句是会报错的。 关于这种方法的 缺点 : 一说 是在其他博客看到的,意思是这种方法不能把默认值一起复制过来,这个错误在进行表备份时可能会有较大影响,但是对于做挖掘的朋友们来说,应该不怎么会影响我们造变量。而且Oracle很智能,即使你没有设定新表的字段类型

Java & Android未捕获异常处理机制

我的未来我决定 提交于 2021-02-20 12:56:23
一、背景 无论是Java还是Android项目,往往都会用到多线程。不管是主线程还是子线程,在运行过程中,都有可能出现未捕获异常。未捕获异常中含有详细的异常信息堆栈,可以很方便的去帮助我们排查问题。 默认情况下,异常信息堆栈都会在输出设备显示,同时,Java & Android为我们提供了未捕获异常的处理接口,使得我们可以去自定义异常的处理,甚至可以改变在异常处理流程上的具体走向,如常见的将异常信息写到本地日志文件,甚至上报服务端等。 在未捕获异常的处理机制上,总体上,Android基本沿用了Java的整套流程,同时,针对Android自身的特点,进行了一些特别的处理,使得在表现上与Java默认的流程会有一些差异。 二、未捕获异常处理流程 2.1 引子 我们先可以思考几个问题: 1,Java子线程中出现了未捕获的异常,是否会导致主进程退出? 2,Android子线程中出现了未捕获的异常,是否会导致App闪退? 3,Android项目中,当未作任何处理时,未捕获异常发生时,Logcat中的异常堆栈信息是如何输出的? 4,Android项目中,可能引入了多个质量监控的三方库,为何三方库之间,甚至与主工程之间都没有冲突? 5,Android中因未捕获异常导致闪退时,如何处理,从而可以将异常信息写到本地日志文件甚至上报服务端? 6,Java & Android对未捕获异常的处理流程有何异同

系统安装plsql远程连接工具

拟墨画扇 提交于 2021-02-20 11:48:33
windows64系统安装plsql远程连接工具 参考: https://www.allroundautomations.com/registered/plsqldev.html 第一步:下载安装 下载地址:https://www.allroundautomations.com/registered/plsqldev.html 第二步:安装配置instantclient APPORCL = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 115.28.**.**)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = corcl) ) ) 注: APPORCL为连接名 HOST指向远程连接的数据库的IP地址 SERVICE_NAME表示是数据库名(对应jdbc:oracle:thin:@10...**:1521:corcl)。 参考地址: https://blog.csdn.net/zhige_j/article/details/80832654 第三步:配置Oracle Home 和 OCI库 安装后,先不登录,直接进入页面,在tools->preferences->connection(工具–首选项–连接)中配置Oracle Home(Oracle

如何在Java中逐行读取文件

帅比萌擦擦* 提交于 2021-02-20 08:54:39
本文翻译自 How to read a file line by line in Java 有时我们想逐行读取一个文件来处理内容。 一个很好的例子是 逐行读取CSV文件 ,然后将其用逗号(,)分成多列。 在Java中,当您需要逐行读取文件时,有多种选项可供选择。 1.Scanner Scanner 类提供了用Java逐行读取文件的最简单方法。 我们可以使用 Scanner 类打开文件,然后逐行读取其内容。 Scanner程序使用定界符模式将其输入分为令牌,在本例中为新行: try { // open file to read Scanner scanner = new Scanner(new File("examplefile.txt")); // read until end of file (EOF) while (scanner.hasNextLine()) { System.out.println(scanner.nextLine()); } // close the scanner scanner.close(); } catch (FileNotFoundException ex) { ex.printStackTrace(); } 如果此扫描程序的输入中有另一行而不推进文件读取位置,则 hasNextLine() 方法将返回 true 。 要读取数据并移至下一行

ORA-28000错误的原因及解决办法

旧巷老猫 提交于 2021-02-20 07:40:27
当使用SQL*Plus登录时,Oracle数据库时提示“ORA-28000:帐号被锁定”。 导致出现改错误的原因是:在oracle database 11g中,默认在default概要文件中设置了“FAILED_LOGIN_ATTEMPTS=10”,当输入密码错误次数达到设置值将导致此问题。 1.确认用户所使用的概要文件: 1 SQL> select username,profile from dba_users; 2.查看概要文件中有关登录次数的限制: 1 SQL> select * from dba_profiles where profile= 'DEFAULT' and resource_name= 'FAILED_LOGIN_ATTEMPTS' ; 3.如果尝试登录次数限制为10次,将尝试登录次数的限制修改为不受限: 1 SQL> alter profile default limit failed_login_attempts unlimited;  修改后不需要重启数据库,修改结果即时生效。 注意:修改后,还没有被提示ORA-28000警告的账户不会再碰到同样的问题,已被锁定用户仍需解锁,方法如下: 1 SQL> alter user user_name account unlock; 来源: oschina 链接: https://my.oschina.net/u

SQL Error: ORA-00913: too many values

只谈情不闲聊 提交于 2021-02-20 05:48:05
问题 Two tables are identical in terms of table name, column names, datatype and size. These tables are located in separate databases, but I am use to current Log in in hr user. insert into abc.employees select * from employees where employee_id=100; I can not give use original query from corporate office. Error starting at line 1 in command: insert into abc.employees select * from employees where employee_id=100; Error at Command Line:1 Column:25 Error report: SQL Error: ORA-00913: too many

How to find specific links between two tables

╄→尐↘猪︶ㄣ 提交于 2021-02-20 05:13:14
问题 I have lots of tables and lots of relationships between them. When I try to make some join between them I'm stuck at finding the relationship between the two tables. For the sake of simplicity let's say I have Table A and Table B . They are linked with a foreign key. Q: How can I find the foreign key between this two exact tables and the column it references? And not all the tables or foreign keys that have a reference to this table. 回答1: You can join the data dictionary constraint-related

How to find specific links between two tables

时间秒杀一切 提交于 2021-02-20 05:10:55
问题 I have lots of tables and lots of relationships between them. When I try to make some join between them I'm stuck at finding the relationship between the two tables. For the sake of simplicity let's say I have Table A and Table B . They are linked with a foreign key. Q: How can I find the foreign key between this two exact tables and the column it references? And not all the tables or foreign keys that have a reference to this table. 回答1: You can join the data dictionary constraint-related

How to find specific links between two tables

╄→尐↘猪︶ㄣ 提交于 2021-02-20 05:10:51
问题 I have lots of tables and lots of relationships between them. When I try to make some join between them I'm stuck at finding the relationship between the two tables. For the sake of simplicity let's say I have Table A and Table B . They are linked with a foreign key. Q: How can I find the foreign key between this two exact tables and the column it references? And not all the tables or foreign keys that have a reference to this table. 回答1: You can join the data dictionary constraint-related