上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 原文出处:https://blog.csdn.net/bjywxc/article/details/103308052 zabbix由2部分构成,zabbix server与可选组件zabbix agent,要想搭建一个Zabbix的工作环境,主要有三个方面(界面、服务器和数据库)可以安装在同一台服 阅读全文
posted @ 2024-03-26 09:24 chengxuyonghu 阅读(2043) 评论(1) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/Mr_JinRui/archive/2011/05/27/2060109.html oracle 列转行 1.新建一个名为TEST表 2.向TEST表中添加数据 INSERT INTO TEST(STUDENT,COURSE,SCORE)sele 阅读全文
posted @ 2024-03-12 11:27 chengxuyonghu 阅读(108) 评论(0) 推荐(0) 编辑
摘要: oracle查询用户下的所有表 select * from all_tab_comments -- 查询所有用户的表,视图等select * from user_tab_comments -- 查询本用户的表,视图等select * from all_col_comments --查询所有用户的表的 阅读全文
posted @ 2024-03-12 11:24 chengxuyonghu 阅读(908) 评论(0) 推荐(0) 编辑
摘要: 1.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。 2.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 3.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引 阅读全文
posted @ 2024-02-21 14:00 chengxuyonghu 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 本文链接:http://www.cndba.cn/hbhe0316/article/4737 Oracle 19C RAC停止: 一般Oracle 19C RAC管理的工具分成:对Oracle 实例管理的是srvctl 和 对 集群管理的crsctl工具。 Oracle 19C RAC的关闭: 1. 阅读全文
posted @ 2023-09-13 10:51 chengxuyonghu 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 物理备份 物理备份是指将MongoDB数据库文件复制到备份服务器或存储设备上。MongoDB使用的是一种称为"copy-on-write"的技术,这意味着当修改MongoDB数据库时,MongoDB会将数据复制到一个新的文件中,而原始文件仍然保留不变。这使得可以在不中断服务的情况下备份MongoDB 阅读全文
posted @ 2023-07-16 15:53 chengxuyonghu 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 文章来源:https://www.cnblogs.com/skyflask/p/7622991.html 阅读全文
posted @ 2023-06-11 21:04 chengxuyonghu 阅读(6) 评论(0) 推荐(0) 编辑
摘要: (1)创建类(只包含方法) class 类名: def 方法1(self, 参数列表): pass def 方法2(self, 参数列表): pass self是必须参数,self代表对象本身 (2)创建对象 对象名 = 类名() 例:小猫叫爱吃鱼,小猫在喝水 class Cat: def eat( 阅读全文
posted @ 2022-11-26 21:51 chengxuyonghu 阅读(90) 评论(0) 推荐(0) 编辑
摘要: # encoding:utf-8 from bs4 import BeautifulSoup import requests import csv import bs4 # 检查url地址 def check_link(url): try: r = requests.get(url) r.raise 阅读全文
posted @ 2022-11-25 15:21 chengxuyonghu 阅读(281) 评论(0) 推荐(0) 编辑
摘要: # encoding:utf-8 import os import requests from bs4 import BeautifulSoup #爬虫头数据 cookies = { 'SINAGLOBAL': '6797875236621.702.1603159218040', 'SUB': '_ 阅读全文
posted @ 2022-11-25 15:13 chengxuyonghu 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页