码迷,mamicode.com
首页 >  
搜索关键字:level db    ( 19337个结果
Shell编程之备份数据库
备份数据库 我们的数据在时刻更新着,当数据量到达一定程度时就需要进行备份,方便我们进行管理 本篇介绍怎么在指定时间备份数据库并打包,同时在满足某一个条件时就删除已经备份过的数据库文件 shell编程综合案例 需求分析 每天凌晨2:30备份数据库 数据库名到 /data/backup/db 备份开始和 ...
分类:数据库   时间:2021-06-18 18:58:34    阅读次数:0
TP框架使用命令行
TP框架使用命令行 <?php namespace app\command; use think\Db; use app\shopee\Item; use think\console\Input; use think\console\Output; use think\console\Command ...
分类:其他好文   时间:2021-06-17 17:23:24    阅读次数:0
js递归循环——将已有的数据处理生成一个新的数据
场景: 以下为已有数据,过滤掉数据中 selectedStatus为false的数据,并生成一组新数据(注意:不能在原数据中进行操作) let treeData = [ { level: 0, parent_id: 0, name: "员工管理", id: 2, status: 1, selecte ...
分类:Web程序   时间:2021-06-17 17:05:59    阅读次数:0
pymysql查询,返回字典格式。
使用:pymysql.cursors.DictCursor 直接上代码 import pymysql db = pymysql.connect(host = "host", user = "user", password = "password", database = "database") cu ...
分类:数据库   时间:2021-06-16 18:09:26    阅读次数:0
数据库和SQL
数据库是什么 将大量数据保存起来,通过计算机加工而成的可以进行高效访问的数据集合称为数据库(Database,DB)。将姓名、住址、电话号码、邮箱地址、爱好和家庭构成等数据保存到数据库中,就可以随时迅速获取想要的信息了。用来管理数据库的计算机系统称为数据库管理系统(Database Manageme ...
分类:数据库   时间:2021-06-16 18:03:41    阅读次数:0
ORA-12514 TNS:listener does not currently know of service requested in connect descriptor
In my circumstances the error was due to the fact the listener did not have the db's service registered. I solved this by registering the services. Ex ...
分类:其他好文   时间:2021-06-16 17:56:58    阅读次数:0
Python中集成es两种方式
1、原生集成 # https://github.com/elastic/elasticsearch-py # https://github.com/elastic/elasticsearch-dsl-py # Official low-level client for Elasticsearch # ...
分类:编程语言   时间:2021-06-16 17:36:10    阅读次数:0
springboot 使用elasticsearch-rest-high-level-client操作 es
https://mp.weixin.qq.com/s/fgi6Xd1Xbs4RJSDGBRcZxQ es7.x以上的版本引用了6.8的elasticsearch-rest-client包会出现java.lang.ClassNotFoundException: org.elasticsearch.cl ...
分类:编程语言   时间:2021-06-16 17:31:43    阅读次数:0
python redis 操作
import redisr = redis.Redis(host="0.0.3.40",password="123123&*",port=6379,db=4,decode_responses=True)#字符 string k-v#哈希 hash#字符串 string k-v {"name":111 ...
分类:编程语言   时间:2021-06-13 10:56:05    阅读次数:0
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2021-06-13 10:45:15    阅读次数:0
19337条   上一页 1 2 3 4 5 6 ... 1934 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!