码迷,mamicode.com
首页 >  
搜索关键字:google data(gdata)    ( 79648个结果
【Mysql】 Mysql 统计数据库大小及信息
使用以下命令查询指定数据库容量大小: where table_schema='mysql' #mysql是数据库名称,将mysql修改自己想要查询的数据库即可。 select table_schema as '数据库', sum(table_rows) as '记录数', sum(truncate( ...
分类:数据库   时间:2020-11-16 13:27:08    阅读次数:15
Dashboard on power apps
Create and configure model-driven app interactive experience dashboards Effective Nov 2020, some terminology in Common Data Service has been updated. ...
分类:移动开发   时间:2020-11-16 13:14:10    阅读次数:14
服务器linux centos 7.4 搭建ftp服务器
此操作是在腾讯云服务器linux centos 7.4 完成搭建ftp服务器 vsftpd 的; 安装 vsftpd $ yum install vsftpd -y 启动 $ service vsftpd start && systemctl restart vsftpd.service 关闭 se ...
分类:系统相关   时间:2020-11-16 12:59:40    阅读次数:17
事件 应用于授权子窗体传递验证数据给主窗体
一、事件定义类,即子窗体 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; ...
分类:Windows程序   时间:2020-11-13 13:16:37    阅读次数:33
Log4Net日志详解
一. Log4Net简介 Log4net是从Java中的Log4j迁移过来的一个.Net版的开源日志框架,它的功能很强大,可以将日志分为不同的等级,以不同的格式输出到不同的存储介质中,比如:数据库、txt文件、内存缓冲区、邮件、控制台、ANSI终端、远程接收端等等,我们这里主要介绍最常用的两种:tx ...
分类:Web程序   时间:2020-11-13 12:15:53    阅读次数:13
【转】 springboot整合redis-sentinel支持Cache注解
【转】 springboot整合redis-sentinel支持Cache注解 一、前提 已经存在一个redis-sentinel集群,两个哨兵分别如下: /home/redis-sentinel-cluster/sentinel-1.conf port 26379 dir "/data" sent ...
分类:编程语言   时间:2020-11-12 14:17:04    阅读次数:12
Cannot set Column 'EffectiveDate' to be null. Please use DBNull instead.
dt.Columns.Add("EffectiveDate", typeof(DateTime)); DateTime? effectivedate=null; if (lastRow["Effective_x0020_Date"] != DBNull.Value) { effectivedate ...
分类:数据库   时间:2020-11-12 13:57:50    阅读次数:12
原创-mongodb增删改查
查找admin集合下前10条数据: db.admin.find().limit(10); 插入数据 > post={table: "activityzones", ... fields: [ ... { ... name: "_id", ... type: "ObjectId", ... hidde ...
分类:数据库   时间:2020-11-12 13:54:07    阅读次数:13
MySQL查看数据库表容量大小
1.查看所有数据库容量大小 select table_schema as 'smartxs' ,sum(table_rows) as '记录数' ,sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)' ,sum(truncate(index_le ...
分类:数据库   时间:2020-11-12 13:50:57    阅读次数:57
zabbix 监控各功能配置
zabbix监控组件zabbixsever/zabbixproxy/zabbbixagentzabbixsever包括webgui/database/zabbixserverZabbix监控完整流程:Agent安装在被监控的主机上,Agent负责定期收集客户端本地各项数据,并发送到Zabbixserver端,Zabbixserver收到数据,将数据存储到数据库中,用户基于ZabbixWeb可以看到
分类:其他好文   时间:2020-11-12 13:40:51    阅读次数:5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!