1、创建表空间sqlplus/assysdba//以dba的身份进库startup//开启数据库createtablespacedb_work//创建名为db_work的表空间datafile‘/orc/app/oracle/oradata/WORKDB01.DBF‘//指定数据文件存放的位置size50m//指定数据文件大小autoextendon//开启自动拓展空间大小next
分类:
数据库 时间:
2019-01-25 23:19:24
阅读次数:
261
一、题面 链接 二、分析 关于这题,两个点。 第一个点,是需要能够分析出$[L,R]$区间的3的余数的个数。 首先,可以得到,$[L,R]$区间内共有$(R-L+1)$个数。 设定余数为0,1,2的为一组,那么1,2,0和2,0,1也是一组。那么可以肯定能得到$(R-L+1)/3$组。 那么还余下了 ...
分类:
其他好文 时间:
2019-01-25 15:04:53
阅读次数:
148
服务器管理与维护建议 注: 1、绝大多数命令多放在前四个目录中,bin是普通用户与超级用户都可以执行, 2、sbin是只有超级用户才可以执行,带/usr/在单用户模式下不能执行 3、管理员root和普通用户不同,家目录不在home下的二级目录,而是在一级目录 4、lost+found是在每个分区下都 ...
分类:
其他好文 时间:
2019-01-23 14:01:54
阅读次数:
196
创建sql: CREATE TABLESPACE TBSP_1 DATAFILE 'E:/oracle/product/10.2.0/tablespaces/weblogic.dbf'SIZE 10M; 但是出现了以下错误信息: 错误信息: ORA-01119: 创建数据库文件 'E:/oracle ...
分类:
数据库 时间:
2019-01-22 20:42:30
阅读次数:
737
CF1105C Ayoub and Lost Array 题意:一个整数数组,满足: 1. 长度为n 2. 所有元素都在[l, r]范围内 3. 所有元素的和能被3整除给出n, l, r (1 ≤ n ≤ 2*10^5,1 ≤ l ≤ r ≤ 10^9)请找出符合条件的数组的个数,答案对 10^9 ...
分类:
其他好文 时间:
2019-01-22 10:45:54
阅读次数:
186
链接 [https://codeforces.com/contest/1105/problem/C] 题意 给你n,表示数组长度,元素的值是l到r,问有多少种方案使得所有元素和整除3 分析 思维dp,看代码吧 代码 include using namespace std; define ll lon ...
分类:
其他好文 时间:
2019-01-21 22:49:04
阅读次数:
361
传送门:http://codeforces.com/contest/1105/problem/C C. Ayoub and Lost Array time limit per test 1 second memory limit per test 256 megabytes input standa ...
分类:
其他好文 时间:
2019-01-21 21:02:46
阅读次数:
206
C. Ayoub and Lost Array Ayoub had an array 𝑎 of integers of size 𝑛 and this array had two interesting properties: All the integers in the array were ...
分类:
其他好文 时间:
2019-01-21 13:45:51
阅读次数:
107
--connect sys/sys;create tablespace TS_YBHK LOGGING datafile 'R:\...(服务器上具体地址)\ts_ybhk0001.dat' size 1024M autoextend on next 200M extent management l ...
分类:
数据库 时间:
2019-01-16 18:04:57
阅读次数:
220
1) Loss of system DATAFILE 2) Loss of non-system DATAFILE 3) Loss of a DATAFILE without Backup 4) Loss of a CONTROLFILE 5) Loss of all the CONTROLFILE ...
分类:
其他好文 时间:
2019-01-16 17:22:52
阅读次数:
143