码迷,mamicode.com
首页 >  
搜索关键字:reorganize tables    ( 4145个结果
删除单元格,列,行
from docx import Document word=Document(r' ') tale=word.tables[0] #第一种删除单元格的方法 table.cell(0,0).text="" #第二种删除单元格的方法 paragraph=table.cell(0,1).paragrap ...
分类:其他好文   时间:2020-07-05 23:08:19    阅读次数:60
在linux上安装nginx
链接: https://pan.baidu.com/s/1vSj474Gq8mLVCWGyNCvh6A 提取码: mmb8 1、安装pcre依赖 将安装文件上传到 linux中 解压压缩文件 :tar -xvf pcre-8.37.tar.gz 进入解压之后的目录:执行 ./configure 安装 ...
分类:系统相关   时间:2020-07-04 22:27:40    阅读次数:95
Linux+Apache+Mysql+PHP简单的测试环境搭建
系统版本为:Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux 一,准备篇 1、配置防火墙,开启80端口、3306端口 ...
分类:数据库   时间:2020-07-04 01:42:36    阅读次数:113
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)错误
此博客链接: 刚安装完数据库,登录时出现下面错误。 方法1 使用数据库免登录方法,先进入数据库后,再修改默认密码后。 找到my.ini文件,在[mysqld]下面添加下面语句 skip-grant-tables 重启mysql,右键桌面底部菜单栏,选择任务管理器。点击详细信息。 点击服务。 找到my ...
分类:数据库   时间:2020-07-03 23:07:22    阅读次数:89
centos7 防火墙
常用命令介绍 firewall-cmd --state ##查看防火墙状态,是否是running firewall-cmd --reload ##重新载入配置,比如添加规则之后,需要执行此命令 firewall-cmd --get-zones ##列出支持的zone firewall-cmd --g ...
分类:其他好文   时间:2020-07-03 12:56:53    阅读次数:68
给word中的表格增加行或者列
from docx import Document from docx.shared import Cm w=Document(r' ') w.tables[0].add_row() #给表格增加一行 w.tables[0].add_column(Cm(5)) #给表哥增加一列 print(len( ...
分类:其他好文   时间:2020-07-03 12:18:01    阅读次数:91
ipset详解 使用ipset提高iptables的控制效率
ipset是通过IP集合的方式管理itables, 官方文档地址 https://ipset.netfilter.org/ipset.man.html ipset的一个优势是集合可以动态的修改,👍👍👍👍👍 ipset的安装 yum install ipset -y ipset的配置 1. ...
分类:其他好文   时间:2020-07-03 10:33:07    阅读次数:143
ABAP——动态SQL
效果: 代码: ************************************************************************ * Program Name : * Descriptions : * T-Code : * Updates Tables : * Inp ...
分类:数据库   时间:2020-07-02 21:51:27    阅读次数:87
向表格中插入图片
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:其他好文   时间:2020-07-02 11:57:14    阅读次数:75
Oracle11g空表导出设置
alter system set deferred_segment_creation=false; select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO' 处 ...
分类:数据库   时间:2020-07-01 20:14:12    阅读次数:63
4145条   上一页 1 ... 11 12 13 14 15 ... 415 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!