博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORACLE 常用脚本(1)
阅读量:5772 次
发布时间:2019-06-18

本文共 1021 字,大约阅读时间需要 3 分钟。

1. 查看oracle的版本信息: 
Select version FROM Product_component_version
  Where SUBSTR(PRODUCT,1,6)='Oracle';

2. 查看数据库库对象: select owner, object_type, status, count(*) count# from all_objects group by owner, object_type, status;

3. 查看数据库的创建日期和归档方式: Select Created, Log_Mode, Log_Mode From V$Database;

4. 查看当前所有对象: select * from tab;

5. 建一个和a表结构一样的空表:
 create table b as select * from a where 1=2;
 create table b(b1,b2,b3) as select a1,a2,a3 from a where 1=2;

6. 查看数据文件放置的路径: select  tablespace_name,file_id,bytes/1024/1024,file_name from dba_data_files order by file_id;

7. 连接字符串
 select 列1||列2 from 表1;
 select concat(列1,列2) from 表1;

8. 查询当前日期
 select to_char(sysdate,'yyyy-mm-dd,hh24:mi:ss') from dual;

9. 用户间复制数据
 copy from user1 to user2 create table2 using select * from table1;

10. 视图中不能使用order by,但可用group by代替来达到排序目的
 create view a as select b1,b2 from b group by b1,b2;
11. 通过授权的方式来创建用户
 grant connect,resource to test identified by test;
 conn test/test
本文转自 tianya23 51CTO博客,原文链接:http://blog.51cto.com/tianya23/250109,如需转载请自行联系原作者
你可能感兴趣的文章
Oracle 备份与恢复学习笔记(14)
查看>>
分布式配置中心disconf第一部(基本介绍)
查看>>
Scenario 9-Shared Uplink Set with Active/Active uplink,802.3ad(LACP)-Flex-10
查看>>
UML类图中的六种关系
查看>>
探寻Interpolator源码,自定义插值器
查看>>
一致性哈希
查看>>
mysql(待整理)
查看>>
使用PullToRefresh实现下拉刷新和上拉加载
查看>>
mysql
查看>>
2012年电信业八大发展趋势
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>