安装完系统桌面没有此电脑怎么办 右键单击桌面空白区,选择个性化 选择主题—>桌面图标设置—> 勾选计算机 ...
分类:
其他好文 时间:
2021-03-29 12:20:40
阅读次数:
0
临时: alter session set current_schema=X; 永久: alter session set current_schema= X 倒是能解决问题,但这总不是个永久的解决方案;在after log on事件上做触发器执行上面的语句;create or replace tr ...
分类:
数据库 时间:
2021-03-29 12:19:00
阅读次数:
0
Oracle的数据库日 志称为redo log,所有数据改变都记录redo log,可以用于修复受损的数据库。Redo日志是分组的,,默认是三组。Redo日志是轮流使用的,一个redo log满了,LGWR会切换到下一组redo log,这种操作称为log switch,做log switch的同时 ...
分类:
数据库 时间:
2021-03-29 12:12:28
阅读次数:
0
var和let 区别1:作用域不同 var 是函数作用域 let 是块级作用域 在块级作用域下: for(var i=0;i<5;i++){ console.log(i); } console.log("最后的i是"+i);//5 for(let i=0;i<5;i++){ console.log( ...
分类:
其他好文 时间:
2021-03-29 12:08:38
阅读次数:
0
安装axios npm install axios --save axios使用 axios({ url: 'http://123.207.32.32:8000/home/multidata', method: 'get' }).then((res) => { console.log(res); } ...
分类:
移动开发 时间:
2021-03-29 12:04:07
阅读次数:
0
1. git git checkout -b v1 // 创建并切换 git checkout name // 撤回修改文件 git branch -a // 查看所有分支 git branch --set-upstream-to=origin/feature-v1 // 默认拉取远程分支 git ...
分类:
系统相关 时间:
2021-03-29 11:44:12
阅读次数:
0
注册模块连接redis遇到的问题 1、遇到的问题 redis.exceptions.AuthenticationError: Client sent AUTH, but no password is set 2、解决办法 首先打开redis.windows.service.conf(或redis.w ...
分类:
其他好文 时间:
2021-03-26 15:33:25
阅读次数:
0
ps -ef|grep apache -tomcat 查看进程 kill -9 杀死进程 ls 看命令 ./ startup.sh 启动 cd ../logs 查log tail -f catalina.out 看log chmod -R 777 * chmod 777 * 赋权限 unzip 文件 ...
分类:
系统相关 时间:
2021-03-26 15:32:48
阅读次数:
0
问题 给定不同面额的硬币和一个总金额。写出函数来计算可以凑成总金额的硬币组合数。假设每一种面额的硬币有无限个。 示例 输入: amount = 5, coins = [1, 2, 5] 输出: 4 解释: 有四种方式可以凑成总金额: 5=5 5=2+2+1 5=2+1+1+1 5=1+1+1+1+1 ...
分类:
其他好文 时间:
2021-03-26 15:29:36
阅读次数:
0
declare @i int set @i=5 while @i<150 begin INSERT INTO [dbo].[SysRole] VALUES (CONVERT(varchar(50), @i),'测试'+CONVERT(varchar(50), @i),1,1,NULL,0,0,NUL ...
分类:
数据库 时间:
2021-03-26 15:28:42
阅读次数:
0