-
-- 导出远程数据
mysqldump.exe--defaults-extra-file="c:/docume~1/admini~1/locals~1/temp/tmpx9h0e7.cnf"
--set-gtid-purged=OFF --user=tongzhou --max_allowed_packet=1G
--host=192.168.1.102 --port=3306 --default-character-set=utf8 "datacenterb" "cib_cs_130805_s2014"
(该操作是从mysqlwokbench 工具中远程导出表的时候生成的语句,但是还没有测试过) 数据库试用规约
以下的注意事项主要是为了:提高查询速递、减少数据库的压力
导入导出数据
-
本地导入mysql数据
mysql source D:/123.sql;
本地导出mysql数据
mysqldump -u root -p test >D:/456.sql 导出数据修改密码root
mysqladmin -u 用户名 password 新密码 –p
mysqladmin -u root -p password mypasswd
执行后提示输入旧密码,确认后即修改成功mysql授权语句(database 是数据库的名称,username是用户名密码 root 是用户名)
grant all privileges on datacenterb.* to root@'%' identified by 'username';
刷新权限(一定记得,有些时候他不刷新的话不能很快的反应过来)
flush privileges;批量删除数据库中的表 (没有比这个更简单的语句了,目的是组合删除语句,而后自己执行该删除句子)
select CONCAT( 'drop table ', table_name, ';' ) from information_schema.tables where table_schema='database1' and table_name like'%cache';
mysql批量导入导出
导出
mysqldump -uROOT -pROOT -hlocalhost DB2014 2012_05051_s201401 > D:/outfile/1.sqlmysqldump -uROOT -pROOT -hlocalhost DB2014 2012_05051_s201402 > D:/outfile/2.sqlmysqldump -uROOT -pROOT -hlocalhost DB2014 2012_05051_s201403 > D:/outfile/3.sq
导入
mysql -uROOT -pROOT -hlocalhost DBtest < D:/outfile/1.sqlmysql -uROOT -pROOT -hlocalhost DBtest < D:/outfile/2.sqlmysql -uROOT -pROOT -hlocalhost DBtest < D:/outfile/3.sql
PS:这个导出的文件名称以可以随便指定,但是文件的后缀名称必须是sql
Windows netstat 查看端口、进程占用
目标:在Windows环境下,用netstat命令查看某个端口号是否占用,为哪个进程所占用操作:操作分为两步:
(1)查看该端口被那个PID所占用;
方法一:有针对性的查看端口,使用命令Netstat –ano|findstr “”,如图,最后一列为PID。图中的端口号为1068,所对应的PID为3840。 eg ——〉Netstat –ano|findstr "65340"
方法二:查看所有的,然后找到对应的端口和PID。eg ——〉netstat -ano
(2)查看该PID对应的进程名称。
方法一:一直用命令查找,tasklist|findstr “
” 方法二:用任务管理器查看。
附录:在命令行中输入netstat /? 可以查看netstat的相关信息。
-
###
i. 所有和数据库的链接(connection)必须是打开、使用、关闭;
ii. 给经常使用的某一列建立索引和约束(索引是因为实际生产的需要)(约束该项有待商榷);
iii. 写入数据库(insert into table)的时候尽量用批量提交的方式(批量提交分java程序控制——java的批量提交方式,以及程序员手动控制——自己组合insert 语句两种);
iv. 在实际的查询中如果select需要查询所有的列,则用select* 否则尽量使用select+ column 的查询方式;
v. 子查询的使用:不要超过二级子查询,因为数据量大的原因,二级子查询可能导致数据库的超时;
vi. 视图的使用:尽量不要建立二级视图(视图上建立视图),因为二级视图会严重影响查询的效率;
vii. 字段长度:不要太长,但也要给字段留有余地;

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
