[oracle@wallet01 ~]$ cat /home/oracle/script/full_backup.sh #!/bin/bash if [ -f ~/.bash_profile ]; then . ~/.bash_profile fi export SH_HOME=/home/orac ...
分类:
数据库 时间:
2020-11-26 15:19:56
阅读次数:
23
I use phpstudy to set a php+Mysql+Apache environment for the sqli-labs. The first step is to download the sqli-labs-master.zip from the official websi ...
分类:
数据库 时间:
2020-11-26 15:15:20
阅读次数:
14
(数据库DataBase,DB)是一个长期存储在计算机内的、有组织的、有共享的、统一管理的数据集合,在关系数据库中,数据库表是一系列二维数组的集合。 数据定义语言(DDL):DROP、CREATE、ALTER 数据操作语言(DML):INSERT、UPDATE、DELETE 数据查询语言(DQL): ...
分类:
数据库 时间:
2020-11-26 14:53:45
阅读次数:
8
一道毒瘤题 \(\gamma\) by DPair 题目描述 维护一个正整数集 \(S\),元素 \(\in\) 值域 \(U\),需要支持: \(\texttt{1 l r}\):\(S\gets S\cup [l,r]\); \(\texttt{2 l r}\):\(S \gets \{x|x\ ...
分类:
其他好文 时间:
2020-11-26 14:13:44
阅读次数:
5
A.快速排序 1.算法逻辑 若要对 def quick_sort(alist,first,last): if first >= last: # 递归结束条件 return high = last low = first media_data = alist[first] while low < hi ...
分类:
编程语言 时间:
2020-11-25 12:12:17
阅读次数:
8
[root@wallet01 ~]# su - grid [grid@wallet01 ~]$ crsctl check cluster -all ************************************************************** wallet01: CRS ...
分类:
数据库 时间:
2020-11-24 12:43:06
阅读次数:
10
mysql/Mariadb多实例教程:一、概述关系型数据库常见组件:数据库:database表:table行:row列:column索引:index视图:view用户:user权限privilege存储过程:procedure,无返回值存储函数:function,有返回值触发器:trigger时间调度器:eventscheduler,任务计划二、创建多实例:1、设计规划;环境检查:在一个服务器上跑
分类:
数据库 时间:
2020-11-24 12:20:23
阅读次数:
9
Difficulty: Medium Related Topics: Depth-first Search, Breadth-first Search, Union Find Link: https://leetcode.com/problems/number-of-islands/ Descrip ...
分类:
其他好文 时间:
2020-11-23 12:25:21
阅读次数:
3
给定 $n$ 个区间对 $([s_a,e_a],[s_b,e_b])$,求是否存在一个子集,使得子集中所有区间对的 $first$ 区间对中互不相交和 $second$ 区间对中互不相交二者恰好有一个成立。 ...
分类:
其他好文 时间:
2020-11-23 12:21:20
阅读次数:
6
oracle安装环境配置前提下 1 在安装文件/database/response/*有三个配置文件模板 [oracle@oracledb response]$ ll 总用量 100 -rwxrwxr-x. 1 oracle oinstall 44954 12月 4 11:46 dbca.rsp - ...
分类:
数据库 时间:
2020-11-21 12:43:54
阅读次数:
24