码迷,mamicode.com
首页 >  
搜索关键字:modify dbsnmp passwo    ( 1633个结果
从已有container中生成新的image&打标签——Creating a Docker Image from an Existing Container
原文: https://docs.oracle.com/cd/E37670_01/E75728/html/section_c5q_n2z_fp.html 4.3 Creating a Docker Image from an Existing Container If you modify the ...
分类:其他好文   时间:2020-06-11 20:04:51    阅读次数:55
Mysql force index和ignore index 使用实例
前几天统计一个sql,是一个人提交了多少工单,顺便做了相关sql优化。数据大概2000多w。 select CustName,count(1) c from WorkOrder where CreateDate>'2016-5-1' and CreateDate<'2017-1-1'group by ...
分类:数据库   时间:2020-06-10 21:33:41    阅读次数:70
jdbc-db连接和业务调用方发分离
总共分为两块:db连接基础方法+业务调用方使用1、db连接基础方法public class DemoForWrite { static String URL = "jdbc:mysql://127.0.0.1:3306/user"; static String USER_NAME = "root"; ...
分类:数据库   时间:2020-06-10 20:56:04    阅读次数:68
批量生成修改oracle/sql server/mysql数据库各个表相同名字列的长度语句
--oracle SELECT 'alter table ' || TABLE_NAME ||' modify 列名 VARCHAR2(300);' FROM USER_TAB_COLUMNS WHERE COLUMN_NAME = '列名' and TABLE_NAME; --sql server ...
分类:数据库   时间:2020-06-08 19:28:23    阅读次数:102
mysql—表的完整性约束
mysql表的完整性约束 阅读目录 概览 not null unique primary key foreign key 返回顶部 概览 为了防止不符合规范的数据进入数据库,在用户对数据进行插入、修改、删除等操作时,DBMS自动按照一定的约束条件对数据进行监测,使不符合规范的数据不能进入数据库,以确 ...
分类:数据库   时间:2020-06-04 23:10:31    阅读次数:102
Django简单搭建编辑页面
from django.shortcuts import render, reverse, HttpResponse, redirect from app01 import models # Create your views here. def modify(request): all_cours ...
分类:其他好文   时间:2020-05-27 09:15:31    阅读次数:71
解决mysql:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES)
一、问题 有时候我们登录Mysql输入密码的时候,会出现这种情况 mysql -u root -p Enter Password > '密码' 错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwo ...
分类:数据库   时间:2020-05-25 15:59:12    阅读次数:163
Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAILED]
一、问题描述 系统:CentOS 6.9 重启网卡后:service network restart报: Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAI ...
分类:其他好文   时间:2020-05-25 12:21:54    阅读次数:93
String字符串
字符串比较用equals方法,例: public class StringTry { public static void main(String[] args) { // TODO Auto-generated method stub String name="zg"; String passwo ...
分类:其他好文   时间:2020-05-23 09:36:26    阅读次数:56
12C_modify_ip
12C_modify_ip12C_modify_ipTable of Contents1. 目标确认2. 查看集群信息3. *备份OCR4. 修改ocr信息4.1. 修改网段4.2. 停止SCAN相关4.3. 修改vip4.4. 修改scanip1 目标确认首先要确定要改哪些IP,要改成什么修改前的... ...
分类:其他好文   时间:2020-05-22 11:18:30    阅读次数:80
1633条   上一页 1 ... 6 7 8 9 10 ... 164 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!