Backup and Recovery: Concepts ObjectivesAfter completing this lesson, you should be able to:? Identify the types of failure that can occur in an Oracl ...
分类:
数据库 时间:
2020-06-25 19:17:27
阅读次数:
296
在搭建UOJ中,发生了一些问题,解决后记录于此。 There is something wrong with database >_<.... Connection refused 方法: docker exec -it uoj /bin/bash service mysql restart 未完待 ...
分类:
其他好文 时间:
2020-06-25 12:12:26
阅读次数:
79
Java web项目集成Swagger报AbstractSerializableParameter类的异常问题 异常信息大致如下: [nio-1111-exec-4] i.s.m.p.AbstractSerializableParameter : Illegal DefaultValue null ...
分类:
编程语言 时间:
2020-06-25 11:41:15
阅读次数:
132
Exception-Handling Overview Example Snippet for try-throw-catch (踹扔抓示例) try { Code to try; throw an exception (1) with a throw statement (2) or from f ...
分类:
其他好文 时间:
2020-06-24 22:08:41
阅读次数:
67
--创建链接服务器 exec sp_addlinkedserver 'ITSV' , '' , 'SQLOLEDB' , '192.168.1.232' exec sp_addlinkedsrvlogin 'ITSV' , 'false' , null , 'sa' , '********' --以 ...
分类:
数据库 时间:
2020-06-24 14:06:19
阅读次数:
83
Sqoop基本使用 一、Sqoop 基本命令 1. 查看所有命令 # sqoop help 2. 查看某条命令的具体使用方法 # sqoop help 命令名 二、Sqoop 与 MySQL 1. 查询MySQL所有数据库 通常用于 Sqoop 与 MySQL 连通测试: sqoop list-da ...
分类:
其他好文 时间:
2020-06-24 13:41:06
阅读次数:
49
_hexToRgb (hex) { const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); return result ? { r: parseInt(result[1], 16), g: parseInt(resu ...
分类:
数据库 时间:
2020-06-24 12:20:55
阅读次数:
63
JIRA安装时使用默认内置的h2数据库,使用一段时候后,需要切换到其他类型数据库 支持的数据库类型和版本 备份系统已有数据 Create an export of your data as an XML backup. 新建JIRA数据库 Create a new database on your ...
分类:
数据库 时间:
2020-06-24 00:39:24
阅读次数:
163
1、安装log4net插件 在nuget包管理器查找log4net并安装,安装最新版本就行,如果不行,自行百度吧。在需要使用log4net的项目中引用它2、创建log4net.config 在和web.config同一文件路径下创建log4net.config文件,随便创建一个文件,重命名即可。创建 ...
分类:
Web程序 时间:
2020-06-24 00:09:39
阅读次数:
97
最近 需要用到有盟的推送,不想自己写,准备在github上面找个来改改,本地用的环境是docker 镜像,然后在docker 中 composer 时的时候,报了一个错 docker exec -it www /bin/bash root@85c8ee9b5e27:/var/www/html/new ...
分类:
Web程序 时间:
2020-06-22 19:30:31
阅读次数:
149