建库 CREATE DATABASE EduBase2017 ON (NAME='Datefile_1',FILENAME='D:\EduBase2017\DataFile_1.mdf') LOG ON (NAME='LogFile_1',FILENAME='D:\EduBase2017\LogFi ...
分类:
其他好文 时间:
2018-01-13 15:42:28
阅读次数:
163
题一 1. 创建名字为hy_tablespace的表空间,默认大小为10M;@@ 2. 创建一个用户,用户名以自己名字命名,并指定命名空间为hy_tablespace;@@@@ 3. 给用户授予connect和resource角色; 4. 创建一张员工表(Emp),字段定义如下 empno NUMB ...
分类:
数据库 时间:
2018-01-09 20:29:23
阅读次数:
284
在Oracle下在创建表空间时一般没有特殊的需求时都是使用可自动扩展的表空间以便于日常的管理,这样在日常情况下就不用监控表空间大小,在没有使用自动增长的表空间建议在80%左右的时候就要增加新的物理文件已保障其稳定,而在Oracle中使用自动增长的表空间,在使用中其物理文件会随着表空间的增加而增加而在实际情况中可能会因为业务的改变而没有使用那么多的表空间,这时我们就可以通过Oracle下的表空间缩减
分类:
数据库 时间:
2018-01-06 23:16:02
阅读次数:
271
转载地址:http://blog.itpub.net/28950170/viewspace-763139/ 第一步:查看表空间的名字及文件所在位置: select tablespace_name, file_id, file_name, round(bytes/(1024*1024),0) tota ...
分类:
数据库 时间:
2018-01-06 15:58:28
阅读次数:
198
理解 Linux 的硬链接与软链接 目录结构 / 根目录 ├── bin 存放用户二进制文件 ├── boot 存放内核引导配置文件 ├── dev 存放设备文件 ├── etc 存放系统配置文件 ├── home 用户主目录 ├── lib 动态共享库 ├── lost+found 文件系统恢复时 ...
分类:
系统相关 时间:
2017-12-31 10:59:05
阅读次数:
221
第一次接触到12C CDB和PDB数据库,且客户提供的是ORACLE一体机,只有访问权,费劲周折,今记录12C创建默认路径表空间语句和用户 --创建默认表空间: create tablespace tablesapce_name datafile size 500M autoextend on ne ...
分类:
数据库 时间:
2017-12-25 18:20:16
阅读次数:
251
Multipath In regular configuration of iSCSI initiator, it only has a single path torwards the target, once the path failed, the initiator will lost th ...
分类:
移动开发 时间:
2017-12-17 18:12:41
阅读次数:
252
/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace slfph_temp tempfile 'D:\oracledata\slfph_temp.dbf' size 50m autoextend on next 50m maxsize 2048... ...
分类:
数据库 时间:
2017-12-16 16:04:34
阅读次数:
228
You executed the following command to create a tablespace called SALES_DATA:SQL> CREATE TABLESPACE sales_data DATAFILE SIZE 100MSEGMENT SPACE MANAGEME ...
分类:
其他好文 时间:
2017-12-14 14:52:58
阅读次数:
114
View the Exhibit. You want to create a tablespace to contain objects with block size 16 KB. But while configuring thestorage you find that the block s ...
分类:
其他好文 时间:
2017-12-14 14:01:41
阅读次数:
164