#1.打包某個獨立表空間
[root@db01 /usr/local/mysql/data]# tar zcf world.tar.gz world#2
.將打包的檔案傳輸到一台資料庫
[root@db01 /usr/local/mysql/data]# scp world.tar.gz 172.16.1.52:/tmp/#
3.將新資料庫的檔案解壓到新資料庫的資料目錄下
[root@db02 ~]# tar xf /tmp/world.tar.gz -c /service/mysql/data/#
4.新資料庫檢視資料
mysql>use world;
mysql>show tables;
+-----------------+
| tables_in_world |
+-----------------+
| city |
| country |
| countrylanguage |
| jixiao |
+-----------------+
4 rows in
set (0.00
sec)#5
.操作表資料
mysql> select * from
city;
error
1146 (42s02): table '
world.city
' doesn'
t exist
#1.找一台新的資料庫重新建新表
create table `city_new` (
`id`
int(11
) not null auto_increment,
`name`
char(35) not null default ''
, `countrycode`
char(3) not null default ''
, `district`
char(20) not null default ''
, `population`
int(11) not null default '0'
, primary key (`id`),
key `countrycode` (`countrycode`),
key `index_key` (`name`),
key `idx_key` (`id`),
key `population_key` (`population`),
key `district_key` (`district`)
) engine=innodb auto_increment=4080 default charset=latin1;#2
.資料庫操作city_new清除自己的表空間
mysql>alter table city_new discard tablespace;#3
.物理拷貝city的資料檔案
[root@db02 /service/mysql/data/world]# cp city.ibd city_new.ibd
[root@db02 /service/mysql/data/world]# chown -r mysql.mysql city_new.ibd#4
.city_new讀取自己的表空間資料
mysql>alter table city_new import tablespace;#5
.資料查詢
mysql> select * from
city_new;#6
.刪除損壞的表
mysql>drop table city;
error
1051 (42s02): unknown table '
world.city
'#只是說不認識,沒說不能刪除
[root@db02 /service/mysql/data/world]# rm city.ibd #物理刪除表資料#7
.修改表名
mysql> alter table city_new rename city;
1.開發修改資料庫連線資訊
2.將資料重新匯出再匯入舊機器
Samba 企業應用案例
1.所有員工都能夠在公司內流動辦公,但不管在哪電腦上工作,都要把自己檔案存在 samba 檔案服器上.2.各部門辦公人員擁有各自的主目錄,用於存放私有文件 工作相關 其他人禁止訪問.3.所有的使用者都不允許使用伺服器的 shell 安全考慮 4.製造部 財務部 管理部,都有各自的檔案目錄.5.各部門...
8 企業案例分析 1 2 3 4
8.1進入時,透過一些技術上的領先,對這個行業當時的一些產品進行了公升級換代,以此迅速站穩腳跟。過去若干年,主要舉措 1.迅速擴大規模 自身投資和兼併收購 2.開拓國際市場 3.拓展產品線 4.拓寬原材料 建設原材料生產基地 8.2成本分析 決定投資回報的因素 效率和效益 資金密集型 規模經濟性,有...
Hadoop之企業案例分析
或者如下闡述 雪域之鷹 演算法思想 分而治之 hash 1 ip 位址最多有2 32 4g種取值情況,所以不能完全載入到記憶體中處理 2 可以考慮採用 分而治之 的思想,按照ip位址的hash ip 1024值,把海量ip日誌分別儲存到1024個小檔案中。這樣,每個小檔案最多包含4mb個ip位址 3...