标签:
标签:
it |
C:\Adminstrator> sqlplus "/as sysdba" 查看是否连接到数据库
SQL> select status from v$instance;
v$动态表开头,查看动态实例,open为启动。
SQL> shutdown immediate关闭数据库
SQL> startup 继续启动
SQL> show parameter db_name 查看数据库名称
查询数据库SCOTT用户默认的状态
SQL> select username,account_status from dba_users where username=‘SCOTT‘;
SQL> desc user_tables; 描述
SQL> alter user ~scott数据库用户名~ account unlock;
SQL> show user查看当前数据库用户
切换用户 SQL> conn scott/dan 用户名/密码
C:\Adminstrator> sqlplus scott/dan 进入数据库
标签:
原文地址:http://www.cnblogs.com/tian114527375/p/5295331.html