码迷,mamicode.com
首页 >  
搜索关键字:scott    ( 982个结果
PL/SQL登陆:ORA-28000: the account is locked
提要:登陆的用户(scott)被锁解决:1.使用sys以sysdba身份登入PL/SQL2.左侧选择My Objects,查看Users文件夹3.选择GALTTEST用户,右击点击”Edit“4.把“Account lock”的勾去5.点击apply6.重新登录即可
分类:数据库   时间:2015-07-17 17:46:35    阅读次数:170
oracle基础学习
--解锁用户,需要使用dba权限conn sys/1234 as dba;alert user scott account unlock;/--initcap方法,实现字符串首字符大写,其余字符小写,受空格,逗号等非字母符号限制 select initcap('hello word,...
分类:数据库   时间:2015-07-17 09:39:31    阅读次数:227
svn import usage and not import .so file
svn import usage:svn import PATH URL可以不检查仓库来实现。入文件或目录for example:svn import /home/scott/xxx svn://192.168.1.123/xxx/xxx假设PATH是目录,将会把目录下的内容导入svn import...
分类:其他好文   时间:2015-07-16 13:42:16    阅读次数:129
oracle 小技巧
--相当于建了个e临时表with e as (select * from scott.emp e where e.empno=7499)select * from e;minus 取差集 可以替换(not in | in )select id from order minus select orde...
分类:数据库   时间:2015-07-13 15:50:17    阅读次数:168
oracle初学者常用操作100问
oracle初学者常用操作100问 1. Oracle安装完成后的初始口令?      internal/oracle     sys/change_on_install     system/manager     scott/tiger     sysman/oem_temp   2. oracle中的裸设备指的是什么?   裸设备就是绕过文件系统直接访问的储存空间。  3....
分类:数据库   时间:2015-07-11 09:03:28    阅读次数:161
053第85题
85.You executed the following command to drop a user: DROP USER scott CASCADE; Which two statements regarding the above command are correct? (Choose two.) A. All the objects of scott are moved to t...
分类:其他好文   时间:2015-07-10 11:19:24    阅读次数:167
Oracle之初始创建scott/tiger来测试
在redhat5.5(32bit)上安装好oracle11g数据库软件,然后安装一个数据库,再然后登录数据库,创建scott/tiger测试首先登录数据库,这里登录时是没有启动数据库的[oracle@localhost oradata]$ sqlplus / as sysdbaSQL*Plus: R...
分类:数据库   时间:2015-07-09 19:35:21    阅读次数:181
2-sql基本操作
sql基本操作一.Sqlplus常用命令1.查看oracle数据库的进程2.查看oracle数据库运行状态3.显示实例名(数据库名)4.用sys账户登陆到数据库5.解锁账户scott,并登陆到scott账户和查看scott账户6.关闭实例7.查看实例运行状态8.显示使用的命令工具9.查看scott....
分类:数据库   时间:2015-07-06 23:17:15    阅读次数:237
5-sql查询
sql查询一.Sql查询1.查看表字段信息用scott账户登陆1).查看scott账户下的所有表2).查看员工表字段信息3).查看部门表字段信息4).查看工资等级字段信息2.查询表1).查询表dept的部门,部门名字,所在地2).查询表emp的员工姓名,工资和奖金3).查询表emp的员工姓名,工资,...
分类:数据库   时间:2015-07-06 23:05:59    阅读次数:201
存储过程使用游标变量返回结果集
存储过程使用游标变量返回结果集1)登录SQLPLUS,用户为SCOTT,利用该用户提供的表EMP[sql]C:/Users/Administrator>sqlplus scott/scott 2)编写一个FUNCTION,返回值为游标变量[sql]CREATE OR REPLACE FUNCTION...
分类:其他好文   时间:2015-07-06 21:21:52    阅读次数:101
982条   上一页 1 ... 68 69 70 71 72 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!