Chinaunix首页 | 论坛 | 博客
  • 博客访问: 21961
  • 博文数量: 12
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 50
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-08 13:31
文章分类
文章存档

2015年(2)

2014年(2)

2012年(8)

我的朋友

分类:

2012-10-25 22:32:32

原文地址:oracle中的一些简单应用 作者:

创建表空间:
create tablespace test datafile 'd:\test.db' size 1000M autoextend on next 100M maxsize unlimited extent management local;

创建用户:
create user ta identified by ta default talbespace ta temporary tablespace temp quota unlimited on hsta;

用户授权:
grant dba, connect, resource, create table, create view to ta;

删除用户:
drop user ta cascade;

导入数据库备份:
imp ta/ta@demo file="d:\test.dbf" full=y ignore=y

数据库备份导出
exp ta/ta@demo file="d:\test.dbf" full=y ignore=y

查询系统日期和时间戳
select sysdate from dual; //系统日期

select systimestamp from dual; //系统时间戳


当oracle查询语句别名中有括弧等特殊字符时,使用双引号

select round(sum(nvl(f_confirmbalance,0)) /10000, 2)  "金额(万元)" from table_A;

阅读(299) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~