码迷,mamicode.com
首页 >  
搜索关键字:give root password for maintenance    ( 61936个结果
【MySQL】perror的使用方法
在MySQL的使用过程中遇见很多错误,比如由于操作系统引起的,文件或目录不存在,或SQL语句错误引起的。这些error会有相应的代码:error#,Errcode#。"#"代表具体的错误号。perror可以查看这些错误的详细内容。查看perror的使用方法:[root@YANG mysql]# pe ...
分类:数据库   时间:2021-06-02 11:08:00    阅读次数:0
mysql容器定时备份数据
#!/usr/bin/env python # encoding: utf-8 import datetime import os import shutil import subprocess import time import zipfile # 数据库用户名 db_user = "root" ...
分类:数据库   时间:2021-06-02 11:05:03    阅读次数:0
Convert FSE2 - Financial Statement Maintenance to Current Settings
Skip to end of metadata Go to start of metadata The procedure to convert FSE2 from an IMG activity to a user transaction/current setting is outlined i ...
分类:其他好文   时间:2021-05-25 18:34:50    阅读次数:0
LeetCode 112. 路径总和
112. 路径总和 Difficulty: 简单 给你二叉树的根节点 root 和一个表示目标和的整数 targetSum ,判断该树中是否存在 根节点到叶子节点 的路径,这条路径上所有节点值相加等于目标和 targetSum 。 叶子节点 是指没有子节点的节点。 示例 1: 输入:root = [ ...
分类:其他好文   时间:2021-05-25 17:43:27    阅读次数:0
算法打卡 week10
437. 路径总和 III class Solution: def pathSum(self, root: TreeNode, sum: int) -> int: dp = {} def search(root: TreeNode): if root: search(root.left) searc ...
分类:编程语言   时间:2021-05-24 17:23:14    阅读次数:0
dockerfile的一些基本运用
vim DockerfileFROM centos:7 MAINTAINER Liuliubin ADD ./apache-tomcat-7.0.99.tar.gz /root ADD ./jdk-7u80-linux-x64.tar.gz /root ENV JAVA_HOME /root/jdk ...
分类:其他好文   时间:2021-05-24 16:54:55    阅读次数:0
mysql8.0安装
安装教程: https://www.cnblogs.com/laumians-notes/p/9069498.html https://blog.csdn.net/weixin_42869365/article/details/83472466 启动 net start mysql 登录 (1234 ...
分类:数据库   时间:2021-05-24 16:08:31    阅读次数:0
Doris 集群部署
环境:Ubuntu16.04 jdk8 doris编译: ## 1. 开启```bashdocker run -d -it \--name doris \--net=host \-v /volume1/doris/incubator-doris:/root/incubator-doris/ apac ...
分类:其他好文   时间:2021-05-24 15:57:19    阅读次数:0
Linux shell(2)
1.变量以固定名称存放的可能变化的值,可以提高脚本的适应能力,方便脚本执行中重复使用某个值。定义/赋值变量格式为:变量名=变量值注意事项:若指定变量已存在,则相当于重新给变量赋值;等号两边无空格;变量名区分大小写;变量名不能以数字开头,不使用关键字和特殊字符。 [root@localhost ~]# ...
分类:系统相关   时间:2021-05-24 15:50:27    阅读次数:0
pymysql
##(1)如果项目没有mysql模块,需要先安装 ##(2)引入模块import pymysql.cursors##(3)连接MySQL"""host:主机名,MySQL的安装位置,可以写电脑的ip,域名,localhost本机user:用户名passwd:对用user用户的密码database(d ...
分类:数据库   时间:2021-05-24 15:35:53    阅读次数:0
61936条   上一页 1 ... 20 21 22 23 24 ... 6194 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!