Oracle 11g的一些常用语句记录

一、常见语句

  1、创建临时表空间:

create temporary tablespace project_temp
tempfile ‘D:\Oracle\dataspace\project_temp.dbf‘
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;

  “project_temp”为表空间名称,“tempfile”后面的是临时表空间的存储路径,临时表空间主要放置一些临时数据,如果使用select对一些数据进行查询,系统会将查询到的中间数据放在临时表空间里暂存,使用结束后临时表会自动删除。

  2、创建表空间:

create tablespace project_data
logging
datafile ‘D:\Oracle\dataspace\project_data.dbf‘
size 50m
autoextend on
next 50m maxsize 20480m     
extent management local; 

  “project_data”为表空间名称,“datafile”后面的是表空间的存储路径。

  对于临时表空间和表空间来讲,autoextend on 表示表空间大小不够用时自动扩展,next 50m 自动扩展增量为50MB,extent management local代表管理方式为本地

  3、创建用户并制定表空间:

create user gb20163493 identified by gb20163493
default tablespace project_data
temporary tablespace project_temp;

  两个“20163493”分别是用户的用户名和密码。

  4、给用户权限:

grant connect,resource,dba to gb20163493;

  注:建立表空间和创建用户、给予权限等基本都要在system用户下完成。

原文地址:https://www.cnblogs.com/guobin-/p/11600876.html

时间: 2024-10-16 01:56:15

Oracle 11g的一些常用语句记录的相关文章

mysql 常用语句记录

一.表的状态查询 (1)如果发现一个数据异常的大了,需要查看一下其中哪些表变大了,可以使用如下命令 SQL> SHOW TABLE STATUS FROM 数据库名 LIKE 数据表名; 或者 SQL>select table_name,data_length from information_schema.tables; 如果表太小,可使用ALTER TABLE调整: SQL>ALTER TABLE tbl_name MAX_ROWS=1000000000 AVG_ROW_LENGTH

PostgreSQL | 常用语句记录

一.基础操作 postgresql备份:pg_dump -U postgres -d gisportal -F c -f i:\db2.dump postgresql还原:pg_restore -U postgres -d gisportal i:\db2.dump pg_restore -U postgres -d gisportal e:\postgres-20150420.backup 备份单张表:pg_dump -U postgres -F c -b -v -f i:\test.bak 

[标]ORACLE常用的一些语句记录

--查询实际的统计信息select     num_rows,blocks,empty_blocks,avg_space,avg_row_len,sample_size, last_analyzed     from   dba_tables where   upper(table_name)= upper('T_HS_InivBalanceExpEntry'); --SQL语句次数和取数select SQL_TEXT,executions,fetches from v$sql where pa

Oracle 常用语句整理

Oracle 常用语句整理 最近做了份大型数据库作业.遇到了一些问题,在网上找的很是辛苦,于是,将一些常用的语句记录下来,方便大家学习.都是一些基本的东西.如果忘了,可以来看看. 1.创建临时表空间 create temporary tablespace car_data //car_data,表空间名 tempfile 'C:\Users\Administrator\Desktop\car_data.dbf'//表空间路径 size 50m autoextend on next 50m max

【Oracle】常用语句集合

1 oracle常用经典SQL查询 2 常用SQL查询: 3 4 1.查看表空间的名称及大小 5 6 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size 7 from dba_tablespaces t, dba_data_files d 8 where t.tablespace_name = d.tablespace_name 9 group by t.tablespace_name; 10 11 2.查看表空间物

管理oracle 11g RAC 常用命令

1).检查集群状态: [[email protected] ~]$ crsctl check cluster CRS-4537: Cluster Ready Services is online CRS-4529: Cluster Synchronization Services is online CRS-4533: Event Manager is online 2).所有 Oracle 实例 —(数据库状态): [[email protected] ~]$ srvctl status da

关于oracle 11g 安装笔记记录

安装ORACLE 11G 64位报错 报错信息: 准备从以下地址启动 Oracle Universal Installer /tmp/OraInstall2012-07-25_03-10-02PM. 请稍候...[[email protected] database]$ ## An unexpected error has been detected by HotSpot Virtual Machine:# # SIGSEGV (0xb) at pc=0x00000034c9c14d70, pi

ORACLE 11G 触发器调试记录Error: PLS-00201: identifier'SYS.DBMS_SYSTEM' must be declared

1,触发器内容如下 CREATE OR REPLACE TRIGGER"LOGON_DENIED_TO_ALERT" AFTER servererror ON DATABASE DECLARE message   VARCHAR2(168); ip        VARCHAR2(15); v_os_user VARCHAR2(80); v_module  VARCHAR2(50); v_action  VARCHAR2(50); v_pid     VARCHAR2(10); v_s

oracle 常用语句

1.decode 函数(小版本的case when) select  decode(pd.discount_id,null,'','购买'||pd.product_count||'个,'||pd.product_discount_rate||'折优惠') as discount from b2b_product d right join b2b_product_hot ph on d.product_id = ph.product_id  left join b2b_dictionary aon