十、数据完整性 10.1什么是数据完整性 作用:保证用户的输入的数据 保存到数据库是正确的 比如:年龄,应该是数字 学号:应该是不重复的 成绩:不能为空 怎么去保证数据的完整性,添加约束 完整性约束分类: 实体(记录)完整性 域完整性 引用完整性 10.2实体完整性(行) 实体(entity):就是 ...
分类:
其他好文 时间:
2021-04-22 15:30:54
阅读次数:
0
1、 > a <- c(1,2,2,2,3,1,1,3) > a [1] 1 2 2 2 3 1 1 3 > unique(a) [1] 1 2 3 > duplicated(a) [1] FALSE FALSE TRUE TRUE FALSE TRUE TRUE TRUE > !duplicate ...
分类:
编程语言 时间:
2021-04-19 15:48:44
阅读次数:
0
1.Ingress测试示例 1.定义一个deployment [root@k8s-master01 service-ingress]# cat nginx-test.yaml apiVersion: v1 kind: Service metadata: name: ingress-test labe ...
分类:
其他好文 时间:
2021-04-16 12:25:19
阅读次数:
0
监控MySQL Server运行时资源消耗、资源等待,information_schema关注Server运行的元数据信息,performance_schema通过事件来实现监控,事件可以是函数调用、操作系统等待、或者sql语句的解析排序等阶段 其他特点: performance_schema不会随 ...
分类:
其他好文 时间:
2021-04-13 11:59:30
阅读次数:
0
在python中用insert into写入mysql数据库时,可能会出现如题所示异常。 当然,如何改是属于数据方面的知识,网上有很多,不在这里述说。 本文要解决的是:如何在程序中获取该错误,并进行异常处理。 一、捕获异常。常用方法:当然在程序调试过程中出现该异常,用肉眼来看就行了。在程序中就需要捕 ...
分类:
数据库 时间:
2021-04-10 13:18:43
阅读次数:
0
环境:RAC1:192.168.56.111 (db版本:12.2.0.1)RAC2:192.168.56.112 (db版本:12.2.0.1)DG备库:192.168.56.19 (db版本:12.2.0.1) OGG源库OGG目标库:192.168.56.166 (db版本:11.2.0.4) ...
分类:
其他好文 时间:
2021-04-08 14:02:34
阅读次数:
0
Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond ...
分类:
其他好文 时间:
2021-03-30 12:46:57
阅读次数:
0
安装docker centos 7 上官网https://docs.docker.com/engine/install/ 进入对应的服务器平台查看相应的方法,这里以centos7 为例:https://docs.docker.com/engine/install/centos/ 第一步: 卸载已安装 ...
分类:
其他好文 时间:
2021-03-17 15:08:56
阅读次数:
0
在一个虚拟机运行apt-get update警告 W: Duplicate sources.list entry http://archive.canonical.com/ubuntu/ precise/partner amd64 Packages (/var/lib/apt/lists/archi ...
分类:
其他好文 时间:
2021-03-17 15:08:43
阅读次数:
0
Remove Duplicates from Sorted List 2 删除排序链表中的重复元素 Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only d ...
分类:
编程语言 时间:
2021-03-17 15:07:16
阅读次数:
0