Chinaunix首页 | 论坛 | 博客
  • 博客访问: 138199
  • 博文数量: 40
  • 博客积分: 673
  • 博客等级: 上士
  • 技术积分: 426
  • 用 户 组: 普通用户
  • 注册时间: 2011-09-21 14:08
文章分类

全部博文(40)

文章存档

2013年(4)

2012年(36)

我的朋友

分类: Oracle

2012-10-16 11:45:55

创建表空间:
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;

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