--增加表空间
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m
select * from dba_data_files
--删除表空间
alter tablespace test1_tablespace drop datafile 'test2_file.dbf'
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m
select * from dba_data_files
--删除表空间
alter tablespace test1_tablespace drop datafile 'test2_file.dbf'
2018-05-15
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
select * from dba_data_files t where t.tablespace_name in ('TEST1_TABLESPACE')
create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
select * from dba_data_files t where t.tablespace_name in ('TEST1_TABLESPACE')
2018-05-15
忘了密码,修改密码
修改密码
1. sqlplus / as sysdba cmd 命令
2.输入 alter user 用户名 account unlock;
3.、alter user 用户名(system) identified by 新密码(m1234) ;
修改密码
1. sqlplus / as sysdba cmd 命令
2.输入 alter user 用户名 account unlock;
3.、alter user 用户名(system) identified by 新密码(m1234) ;
2018-05-13
说重复的没有意义是,不妨这样想,分开知识点来讲,你们现在都知道这是重复了,这样间接不是锻炼了你们的归纳能力吗?直接讲的话,或许还有很多懵懂的知识点也是可以一起讲的呢?到时候太复杂呢?任何事情都有相对面,人家老师这样讲也是属于人家独立讲课的一个方式,理解就好!另外,那个说照着敲别人代码怎么敲也是别人的代码要动脑子是最重要的人,我没有想要说别的意思,动脑好,但不照人家代码来打练习,怎么来进步,怎么来自己独立打出自己的代码?纯靠脑?
2018-05-02