第一步: sudo gedit /etc/udev/rules.d/53-android.rules 添加:SUBSYSTEM=="usb", SYSFS{idVendor}=="0e8d", MODE="0666"SUBSYSTEM=="usb", ATTR{idVendor}="0e8d", A ...
分类:
其他好文 时间:
2020-07-03 12:20:37
阅读次数:
303
挺久没有登录的 oracle 数据库,因为公司要求加固密码,登录后修改失败 1、启动数据库的同时启动控制文件、数据文件,提示:cannot mount database in EXCLUSIVE mode 2、启动数据库的同时启动控制文件、不启动数据文件,提示:database not mounte ...
分类:
数据库 时间:
2020-07-03 10:36:46
阅读次数:
132
方式一: SavaAsTable 用法: df.write.mode(SaveMode.Overwrite).insertInto(table) 方式二: InsertInto 用法: df.write.mode(SaveMode.Overwrite).saveAsTable(table) 两种方式 ...
分类:
其他好文 时间:
2020-07-03 01:10:09
阅读次数:
152
Oracle归档日志所在目录时间不对&&Oracle集群日志时间显示错误 前言 这个问题在18年的时候遇到了,基本不注意并且集群或者数据库运行正常是很难注意到的。 忘记当时怎么发现的了,最近拿出来重现一下问题。 具体描述一下问题: 比如当前时间是2020年07月03日0点,数据库对redo log发 ...
分类:
数据库 时间:
2020-07-02 23:21:25
阅读次数:
135
大数据开发的最后一环,将数仓中ADS层的数据,导出到MySql,剩下就是Java工程师的事了。 1 在MySql中创建对应的ADS表,字段和类型与数仓中的表一致,略。 2 数据导出脚本。 ①--update-mode updateonly:只更新,无法插入新数据。 allowinsert:允许新增 ...
分类:
数据库 时间:
2020-07-02 23:16:56
阅读次数:
81
可以从文件读写,也可以从标准输入流读,写到控制台 import ( "fmt" "bufio" "os" ) func main() { var s string reader := bufio.NewReader(os.Stdin) fmt.Printf("输入>> ") s,_ = reader ...
分类:
其他好文 时间:
2020-07-02 19:57:01
阅读次数:
60
web.config 配置说明 <configuration>//顶层元素<system.web>//大多应用程序设置位于此元素下<sessionState mode='Inproc' timeout='10' />//设置会话状态超时时间</system.web></configuration> ...
分类:
Web程序 时间:
2020-07-02 19:45:43
阅读次数:
65
<div id="app"> "inputValue 的值:" + {{inputValue}} <my-input v-model="inputValue"></my-input> </div> Vue.component('my-input', { template: '<div><input ...
分类:
其他好文 时间:
2020-07-02 16:13:37
阅读次数:
54
import pygame pygame.init() screen = pygame.display.set_mode((960, 600)) pygame.display.set_caption("图像变换") img = pygame.image.load('马.jpg') clock = p ...
分类:
其他好文 时间:
2020-07-02 13:10:12
阅读次数:
53
用 chmod 可以藉以控制文件如何被他人所调用。 使用权限 : 所有使用者 语法 chmod [-cfvR] [--help] [--version] mode file... 参数说明 mode : 权限设定字串,格式如下 : [ugoa...][[+-=][rwxX]...][,...] 其中 ...
分类:
其他好文 时间:
2020-07-02 09:14:00
阅读次数:
48