分类: Oracle
2008-05-24 19:15:35
来源: |
|
1、查看当前所有对象 SQL> select * from tab; 2、建一个和a表结构一样的空表 SQL> create table b as select * from a where 1=2; SQL> create table b(b1,b2,b3) as select a1,a2,a3 from a where 1=2; 3、察看数据库的大小,和空间使用情况 SQL> col tablespace format a20 4、查看现有回滚段及其状态 SQL> col segment format a30 5、查看数据文件放置的路径 SQL> col file_name format a50 6、显示当前连接用户 SQL> show user 7、把SQL*Plus当器 SQL> select 100*20 from dual; 8、连接字符串 SQL> select 列1||列2 from 表1; 9、查询当前 SQL> select to_char(sysdate,'yyyy-mm-dd,hh24:mi:ss') from dual; 10、用户间复制数据 SQL> copy from user1 to user2 create table2 using select * from table1; 11、视图中不能使用order by,但可用group by代替来达到排序目的 SQL> create view a as select b1,b2 from b group by b1,b2; 12、通过授权的方式来创建用户 SQL> grant connect,resource to test identified by test; SQL> conn test/test |