码迷,mamicode.com
首页 >  
搜索关键字:oracle security user    ( 82786个结果
oracle创建用户
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:数据库   时间:2021-04-20 14:57:17    阅读次数:0
Oracle 11g安装步骤(超详细)
天电脑装了win10,需要重新装oracle,这边记录一下重装过程,避免下次浪费时间。 1、oracle下载 官方下地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 注意Orac ...
分类:数据库   时间:2021-04-20 14:47:39    阅读次数:0
索引优化
索引优化 1.1SQL性能下降的原因 查询语句写的很不好; 索引失效 单值索引 select * from user where name=''; create index idx_user_name on user(name); 复合索引 select * from user where name ...
分类:其他好文   时间:2021-04-20 14:31:28    阅读次数:0
LINUX-shell&find 指令
1、编写脚本 createuser.sh,实现如下功能:使用一个用户名作为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息 read -p " input the user: " USER if id $USER &> /dev/null ; then echo ...
分类:系统相关   时间:2021-04-20 14:31:15    阅读次数:0
Vue3.0路由跳转对象的传递和接收
1.当前路由传递对象参数 (1)通过this.$router.push传递 var arr = JSON.stringify(this.user) this.$router.push({name:'home',params:{user:encodeURIComponent(arr)}}) this. ...
分类:其他好文   时间:2021-04-20 14:26:59    阅读次数:0
大二下学期团队项目(app页面绘制)
今日主要绘制了首页,圆盘页面,个人页面 效果如下: 今日也了解了获取验证码登录的部分,在网上了解到需要短信平台的接口,在网上找了几个但是注册需要营业执照, 验证码只能暂时搁置,只有一个代码框架,没有实际功能: package com.example.cloudlibrary; import andr ...
分类:移动开发   时间:2021-04-20 14:21:22    阅读次数:0
Caused by:com.rabbitmq.client.ShutdownSignalException: connection error;(reply-code=530, reply-text=NOT_ALLOWED - access to vhost '/' refused for user 'admin'
学习rabbitMQ时 自己写了一个发送者 案例 运行后报错: Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method: #method<connection.close>(r ...
分类:数据库   时间:2021-04-20 14:20:37    阅读次数:0
oralce操作基础操作
解锁用户 SQL> alter user scott identified by tiger account unlock; 用户已更改。 切换用户 SQL> conn scott/tiger 已连接。 查看当前用户 SQL> show user USER 为 "SCOTT" 查看所有表 SQL> ...
分类:其他好文   时间:2021-04-20 14:12:18    阅读次数:0
haskell stack安装
1.下载stack 官网下载即可 2.setup 修改~/.stack/config.ymal文件 配置如下: setup-info-locations: - "http://mirrors.tuna.tsinghua.edu.cn/stackage/stack-setup.yaml" urls: ...
分类:其他好文   时间:2021-04-20 14:11:05    阅读次数:0
通过清理注册表方式清理window远程连接的历史记录
开始 运行 输入 regedit 命令可以打开注册表,如下图 对应到以下路径 计算机\HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client 清除 Default, LocalDevices和Servers项中的数据 在此项中可以查到连 ...
分类:Windows程序   时间:2021-04-20 14:06:45    阅读次数:0
82786条   上一页 1 ... 44 45 46 47 48 ... 8279 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!