码迷,mamicode.com
首页 >  
搜索关键字:users    ( 8928个结果
Oracle rman 各种恢复
--恢复整个数据库run {shutdown immediate;startup mount;restore database;recover database;alter database open;} --恢复表空间usersrun {sql 'alter tablespace users of ...
分类:数据库   时间:2017-02-04 14:44:25    阅读次数:288
Oracle基础 09 概要文件 profile
--创建 profile 概要文件create profile profile123 limit failed_login_attempts 2; --修改用户的 profile 文件alter user scott profile profile123; 确保将初始化参数 resource_lim ...
分类:数据库   时间:2017-02-04 12:36:32    阅读次数:212
Oracle 基本权限授权或者回收权限、解锁等权限配置
select * from dba_users; --查询数据库中的所有用户 alter user scott account lock; --锁住用户 alter user scott account unlock; --给用户解锁 create user 用户名 identified by 密码 ...
分类:数据库   时间:2017-02-04 11:14:44    阅读次数:216
Activity 与 Task
【Activity 与 Task】 A task is a collection of activities that users interact with when performing a certain job. The activities are arranged in a stack ...
分类:其他好文   时间:2017-02-03 22:50:35    阅读次数:218
pnputil
http://mb.yidianzixun.com/article/0FYSZgnB?s=mb&appid=mibrowser C:\Users\Administrator>pnputilMicrosoft PnP 工具用法: pnputil.exe [-f | -i] [ -? | -a | -d ...
分类:其他好文   时间:2017-02-03 21:46:52    阅读次数:922
keychains
iOS中keychain存储结构的研究keychain在ios中是保存在sqlite数据库中的。这个数据库文件的位置:真机:/private/var/Keychains/keychain-2.db虚拟机:/Users/USER-HOME/Library/Developer/CoreSimulator ...
分类:其他好文   时间:2017-02-03 17:09:30    阅读次数:289
superagent模块api阅读
本文主要参考superagent的官方文档,基本上就是它的翻译。 题外话,superagent真是一个不错的nodejs模块,推荐使用。 前言 superagent 是一个流行的nodejs第三方模块,专注于处理服务端/客户端的http请求。 在nodejs中,我们可以使用内置的http等模块来进行 ...
分类:Windows程序   时间:2017-02-03 16:42:42    阅读次数:261
Linux作业(4)-03
10、创建一个由至少两个物理卷组成的大小为20G的卷组;要求,PE大小为8M;而在卷组中创建一个大小为5G的逻辑卷mylv1,格式化为ext4文件系统,开机自动挂载至/users目录,支持acl;[root@wangyafei~]#fdisk-l磁盘/dev/sda:128.8GB,128849018880字节,251658240个扇区Units=扇区..
分类:系统相关   时间:2017-02-03 00:46:02    阅读次数:328
MySQL索引类型总结和使用技巧以及注意事项
索引是快速搜索的关键。MySQL索引的建立对于MySQL的高效运行是很重要的。下面介绍几种常见的MySQL索引类型 在数据库表中,对字段建立索引可以大大提高查询速度。假如我们创建了一个 mytable表: CREATE TABLE mytable( ID INT NOT NULL, username ...
分类:数据库   时间:2017-02-01 17:17:43    阅读次数:289
01 Windows安装Tensorflow
1、安装Python。 点击此处下载Python3.5.2。安装Python时一定要选择安装pip。 2、配置Python环境变量。 将%安装路径%\Scripts添加到Path下面。 3、修改Pip国内源。 在C:\Users\l{你的用户名}\AppData\Local下面创建pip文件夹,在p ...
分类:Windows程序   时间:2017-02-01 10:58:24    阅读次数:640
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!