日志写shell show variables like 'general_log'; -- 查看日志是否开启 set global general_log=on; -- 开启日志功能 show variables like 'general_log_file'; -- 看看日志文件保存位置 set ...
分类:
数据库 时间:
2021-01-26 12:40:46
阅读次数:
0
查询库 show database; 切换库 use mysql; 查看库里的表 show tables; 查看表里的字段 desc tb_name; 查看建表语句 show create table tb_name/G; 查看当前用户 select user(); 查看当前使用的数据库 selec ...
分类:
数据库 时间:
2021-01-26 11:54:29
阅读次数:
0
create—>show—>activate—>closequery—>close—>destroy。其中activate事件和deactivate事件触发时机是在:1、同一个应用程序的2、非模态窗体间3、当前窗体被激活(activate)/失去焦点(deactivate)切换的时候触发。当前窗体所 ...
#Hive 的函数 ##1.系统内置函数 1)查看系统自带的函数 show functions; show functions like "date"; 2)显示自带的函数的用法 desc function upper; desc function 'current_date' 记住带下划线的需要加 ...
分类:
其他好文 时间:
2021-01-25 11:02:17
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
Web程序 时间:
2021-01-25 10:44:54
阅读次数:
0
QValueAxis Detailed Description The QValueAxis class is used for manipulating chart’s axis.ValueAxis can be setup to show axis line with tick marks, g ...
分类:
其他好文 时间:
2021-01-22 12:23:53
阅读次数:
0
1. RMAN的默认配置 1 RMAN> show all; 2 3 using target database control file instead of recovery catalog 4 RMAN configuration parameters for database with db ...
分类:
其他好文 时间:
2021-01-22 12:06:50
阅读次数:
0
from threading import * from time import * def show_info(name,age): print(name,age) def show_user_info(username,password): print(username,password) if ...
分类:
编程语言 时间:
2021-01-21 10:50:33
阅读次数:
0
一、查询优化 1,mysql的调优大纲 慢查询的开启并捕获 explain+慢SQL分析 show profile查询SQL在Mysql服务器里面的执行细节和生命周期情况 SQL数据库服务器的参数调优 2,小表驱动大表 mysql的join实现原理是,以驱动表的数据为基础,“嵌套循环”去被驱动表匹配 ...
分类:
数据库 时间:
2021-01-20 12:07:20
阅读次数:
0
原代码:<div v-show="uploader" class="table-operator" style="margin-top: 10px;margin-bottom: 10px;float:right; "> <a-upload name="file" :showUploadList="f ...
分类:
其他好文 时间:
2021-01-20 12:05:48
阅读次数:
0