第十八周學習筆記

2022-08-24 14:57:11 字數 667 閱讀 9060

資料庫日誌備份還原

一種方法為還原表資料,使用select----into outfile--- 命令成功備份表資料後,產生的副本檔案是指定格式的文字檔案,該文字檔案中僅僅包含 表記錄資訊

1.首先把銀行賬戶account 表中的記錄匯出到acoumt.ut 文字檔案,然後使用delete全今利除acot 表中的所有記錄(避免自增字段值

重複),

最後使用load data infle 命令將acoomtd文

本檔案中的資料匯入到

圖account 表中。

192 168.1.104 的mysql 伺服器的choose 資料庫的accomt 表中。

load data local infile 'account.txt' into table fields terminated by '|' optionally enclosed by '"' optionally enclosed by '"' lines terminated by '\r\n' set account_no=account_no +100;

**如上

load data infile   能夠快速的從乙個指定格式的文字檔案中讀取資料到乙個資料庫表中

第十八周學習筆記

匹配兩幅影象 4.1 點和塊 點特徵可以用來尋找乙個不同影象中的對應位置的稀疏集合 獲取特徵點及其之間的對應關係的兩種方法 關鍵點檢測和匹配的四個階段 4.1.1 特徵檢測器 最簡單的匹配策略 e ws sd u iw x i i 1 xi u i0 xi 2e delta u sum i w x ...

作業第十八周

1 請列出 nginx 常用模組的各個優缺點以及區別 ngx http auth basic module 實現基於使用者的訪問控制,使用basic機制進行使用者認證,優點 使用登陸對話方塊的方式實現使用者認證,缺點 認證檔案依賴httpd tools軟體包。ngx http stub status...

演算法作業 39 2017 6 21第十八周

101.symmetric tree given a binary tree,check whether it is a mirror of itself ie,symmetric around its center for example,this binary tree 1,2,2,3,4,4,...