資料匯入匯出

2021-10-01 22:05:49 字數 761 閱讀 2982

mysql> show variables ;

//顯示當前資料庫所有預設配置

mysql> show variables like "%file%"

;//過濾

mysql> show variables like "secure_file_priv"

;//檢視檢索目錄

]# vim /etc/my.cnf

secure_file_priv=

"路徑"

//新增此行

]# chown mysql 路徑 //更改目錄所有者

把檔案內容儲存到資料庫的表裡

mysql> system 系統命令     //在登入狀態下使用系統命令

mysql> system ls /myload/檔案 //確認檔案

mysql> load data infile "檔案絕對路徑" into table 庫.表 fields terminated by "分隔符" lines terminated by "\n"

;//匯入資料

把錶記錄儲存到系統檔案中

mysql>

select

* from 庫.表 into outfile "檔案絕對路徑"

[fields terminated by "分隔符" lines terminated by "分隔符"];

//預設列分隔符為\t,行分隔符為\n

匯入匯出資料

從檔案中裝載資料 hive load data local inpath overwrite into table t2 partition province beijing local linux本地的檔案。無local 是hdfs的檔案 注意 從本地檔案系統中將資料匯入到hive表的過程中,其實...

資料匯入匯出

資料匯入匯出是指sql server資料庫系統與外部系統之間進行資料交換的操作。匯入資料是草外部資料來源中查詢或指定資料,並將其插入到sql server的資料表中的過程,也就是說把其他系統的資料引入到sql server的資料庫中 而匯出資料是將sql server資料庫中的資料轉換為使用者指定格...

匯入匯出資料

1.按使用者匯出及匯入 匯出 1.用sys登陸orcl 源資料庫 2.建立邏輯目錄 create directory yandata1 as d test dump d test dump 必須物理存在且空間足夠.3.給scott付給許可權可以讀寫邏輯目錄.grant read,write on d...