MYSQL

  一个开源的关系型数据库,开发者为瑞典 MySQL AB 公司。在2008年1月16号被 Sun 公司收购。而2009年,SUN 又被 Oracle 收购.目前 MySQL 被很多互联网企业所使用。有体积小、速度快、总体拥有成本低,开放源码等优点

0
推荐
1766
阅读

[3. 使用Python监控Oracle索引]3. 使用Python获取Oracle索引信息

引子Hello 大家好,在这里会带来一系列关于Python的原创内容由于我本职工作是Oracle DBA,Python的用途上会偏重与运维当然也会穿插这爬虫相关的内容更多最新...
0
推荐
1999
阅读

[3. 使用Python监控Oracle索引]2. Python连接MySQL

引子Hello 大家好,在这里会带来一系列关于Python的原创内容由于我本职工作是Oracle DBA,Python的用途上会偏重与运维当然也会穿插这爬虫相关的内容更多最新...
0
推荐
3147
阅读

sqoop连接mysql报错(使用主机名报错,localhost不报错) java.sql.SQLException: Access denied for user 'root'@'bigdata' (using password: YES)

连接mysql报错日志[root@bigdata ~]# sqoop list-databases --connect jdbc:mysql://bigdata:3306 --username root --password mysql;Warning: /software/sqo...
0
推荐
2326
阅读

centos6.5使用rpm包安装mysql5.5.57

简单搞下rpm安装,抽时间搞下编译安装。mysql下载地址https://dev.mysql.com/downloads/file/?id=471231查看解压包[root@bigdata mysql5.5]# ls -lrttotal 29...
0
推荐
1584
阅读

Python3.6内置函数(11)——classmethod()

英文文档classmethod(function)Return a class method for function.A class method receives the class as implicit first argument, just like an instance...
0
推荐
1587
阅读

Python3.6内置函数(10)——chr()

英文文档chr(i)Return the string representing a characterwhose Unicode code point is the integer i. For example, chr(97) returns thestring ‘a’, whil...
0
推荐
1494
阅读

Python3.6内置函数(9)——callable()

英文文档callable(object)Return True if the object argument appearscallable, False if not. If this returns true, it is still possible that a callfai...
0
推荐
1829
阅读

Python3.6内置函数(8)——bytes()

英文文档class bytes([source[, encoding[, errors]]])Return a new “bytes” object, which is animmutable sequence of integers in the range 0 ...
0
推荐
2484
阅读

Python3.6内置函数(7)——bytearray()

英文文档class bytearray([source[, encoding[, errors]]])Return a new array of bytes. The bytearray class is a mutable sequence of integers in t...
1
推荐
1689
阅读

Python3.6内置函数(6)——bool()

英文文档class bool(x)Return a Boolean value, i.e. one of True or False. x is converted using the standard truth testing procedure. If x is false or...
0
推荐
1709
阅读

Python3.6内置函数(5)——bin()

英文文档bin(x)Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to def...
0
推荐
1525
阅读

Python3.6内置函数(4)——ascii()

英文文档ascii(object)As repr(), return a string containing a printable representation of an object, but escape the non-ASCII characters in the stri...
0
推荐
1335
阅读

Python3.6内置函数(3)——any()

英文文档any(iterable)Return True if any element of the iterable is true. If the iterable is empty, return False Equivalent to:如果iterabl...
2
推荐
1699
阅读

Python3.6内置函数(2)——all()

英文文档all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to:如果iterable的所有元素不为0...
0
推荐
1439
阅读

Python3.6内置函数(1)——abs()

前言最近在重新梳理Python,就想着整理下最新版的Python知识,就从Python的内置函数开始吧。abs()abs(x)返回数字的绝对值,参数可以是整数、浮点数或者复数。...

13 人关注

最佳回复者

改版

反馈