码迷,mamicode.com
首页 >  
搜索关键字:scott    ( 982个结果
sqlplus登录、连接命令
经常使用:sqlplus username/password 如:普通用户登录 sqlplus scott/tigersqlplus username/password@net_service_name 如: sqlplus scott/tiger@orclsqlplus username/pass...
分类:数据库   时间:2014-10-26 21:04:11    阅读次数:400
关于Oracle
oracle 10g 如何给scott解锁悬赏分:0-解决时间:2008-1-11 09:30alter user scott account unlock ;Oracle初学者必知的100个问题1. Oracle安装完成后的初始口令? internal/oracle sys/change_on_....
分类:数据库   时间:2014-10-24 22:07:54    阅读次数:256
oracle 细粒度审计使用
以scott用户的emp表为示例   ----增加策略 begin DBMS_FGA.ADD_POLICY (    object_schema      =>  'SCOTT',    object_name        =>  'EMP',    policy_name        =>  'mypolicy1',    handler_schema     =>  ...
分类:数据库   时间:2014-10-23 06:50:10    阅读次数:214
Oracle锁定和解锁用户的命令
转:http://database.51cto.com/art/200910/158576.htm在DBA的日常工作中,经常遇到为Oracle用户解锁的操作;这篇文章给出在命令行下进行Oracle用户解锁的操作方法,通过几条简单的解锁语句就能完成此项工作。下面是具体的过程:默认的scott用户是被锁...
分类:数据库   时间:2014-10-22 10:49:54    阅读次数:171
PIC2, Histograms
As a first guess,you can start with Scott’s rule for the bin widthw = 3.5σ/ 3√n,where σ is the standarddeviation for the entire data set and n is the ...
分类:其他好文   时间:2014-10-21 16:57:13    阅读次数:134
[Java 8] Lambda在集合中的使用
Lambda在集合中的使用 列表的遍历 提起对于集合的遍历,恐怕下面的这种方式已经是一种思维定式了吧: final ListString> friends = Arrays.asList("Brian", "Nate", "Neal", "Raju", "Sara", "Scott"); for(int i = 0; i friends.size(); i++) { ...
分类:编程语言   时间:2014-10-21 10:24:46    阅读次数:405
Oracle对象权限
对象权限指访问其他方案的权利,用户直接访问自己的方案的对象,但是如果要访问别的方案的 对象,则必须具有对象的权限。比如smith用户要访问scott.emp表(scott:方案,emp:表),则不需再scott.emp 表上具有对象的权限。常用的对象权限:Alter --修改(修改表结构) dele...
分类:数据库   时间:2014-10-18 22:21:42    阅读次数:822
STL容器删除元素的陷阱
今天看Scott Meyers大师的stl的用法,看到了我前段时间犯的一个错误,发现我写的代码和他提到错误代码几乎一模一样,有关stl容器删除元素的问题,错误的代码如下:std::vector mFriendList;...std::vector::iterator iter = mFriendLi...
分类:其他好文   时间:2014-10-17 13:42:12    阅读次数:144
Mini projects ---- Pong
课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www.c...
分类:其他好文   时间:2014-10-17 10:06:19    阅读次数:284
【用户连接】
1.本地连接 SQL> conn scott/tiger Connected. SQL> select sid,server from v$sessionwhere username='SCOTT'; SID    SERVER ---------- --------- 42     DEDICATED   SQL> select sid,server,paddr,processf...
分类:其他好文   时间:2014-10-17 02:26:23    阅读次数:200
982条   上一页 1 ... 87 88 89 90 91 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!