码迷,mamicode.com
首页 >  
搜索关键字:drag and drop    ( 6101个结果
centos7 清理缓存(buff/cache)
背景:服务器运行过程中发现内存不够用,缓存的又太多 现象: 解决办法: 1、同步数据到磁盘 [root@localhost ~]# sync 2、根据需求清除对应缓存 [root@localhost ~]# echo 3 > /proc/sys/vm/drop_caches 参数说明: 0 //默认 ...
分类:系统相关   时间:2021-06-07 20:40:37    阅读次数:0
Pandas常用操作 - 去重
1. 使用 drop_duplicates 去重 1.1 初始化数据 df = pd.DataFrame({'stu_name': ['Tom', 'Tony', 'Jack', 'Jack', np.nan], 'stu_age': [16, 16, 15, np.nan, 21]}) stu_n ...
分类:其他好文   时间:2021-06-06 19:31:16    阅读次数:0
linux防火墙使用以及配置
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:系统相关   时间:2021-06-04 19:47:34    阅读次数:0
mysql数据库中常用命令
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:数据库   时间:2021-06-04 18:53:42    阅读次数:0
SqlServer创建多种存储过程
--指定库 use[SC_Flow] --判断存储过程是否存在 IF EXISTS(SELECT 1 FROM SYSOBJECTS T1 WHERE T1.NAME='Proc_BiddingReport') begin drop PROCEDURE Proc_BiddingReport end ...
分类:数据库   时间:2021-06-02 14:02:23    阅读次数:0
DM-审计系统
审计 审计机制是 DM 数据库管理系统安全管理的重要组成部分之一。DM 数据库除了提供数据安全保护措施外,还提供对日常事件的事后审计监督。DM 具有一个灵活的审计子系统,可以通过它来记录系统级事件、个别用户的行为以及对数据库对象的访问。通过考察、跟踪审计信息,数据库审计员可以查看用户访问的形式以及曾 ...
分类:其他好文   时间:2021-05-24 10:03:06    阅读次数:0
MySQL 批量删除表
select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:数据库   时间:2021-05-24 08:59:21    阅读次数:0
Hbase shell命令基本操作
Hbase shell命令基本操作 1、进入Hbase shell客户端命令操作界面 如果配置过hbase环境变量 hbase shell 如果没有配置过环境变量 # 进入hbase文件夹中 cd /hc/install/hbase-2.2.6/ bin/hbase shell 2、help帮助命令 ...
分类:系统相关   时间:2021-05-24 03:29:09    阅读次数:0
Sql语句注册公司的事务
use MustGoHome; --公司注册 if exists(select * from Sysobjects where name='usp_CompanyRegister') drop procedure usp_CompanyRegister; go create procedure us ...
分类:数据库   时间:2021-05-23 23:17:14    阅读次数:0
springboot 安卓实验室设备管理系统web后台+app+5篇毕业文档
下载地址:https://download.csdn.net/download/qq_31293575/10728702 项目介绍 springboot 安卓实验室设备管理系统web后台+app+5篇毕业文档 功能说明: WEB系统面向三类用户授权,共有三种登录模式,包括后台管理员登录模式、实验管理 ...
分类:移动开发   时间:2021-05-23 22:58:40    阅读次数:0
6101条   上一页 1 2 3 4 5 ... 611 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!