在執行mysqldump命令時候報如下錯誤:
[root@localhost ~]# mysqldump -uroot -p -d test> test.sql
mysqldump: got error: 2002: can't connect to local mysql server through socket '/tmp/mysql.sock' (2) when trying to connect
找到正確的套接字的路徑:
[root@localhost ~]# netstat -ln | grep mysql
unix 2 [ acc ] stream listening 70442911 /mysqldata/base/mysql/mysql.sock
再執行dump命令:
[root@localhost ~]# mysqldump --sock=/mysqldata/base/mysql/mysql.sock -uroot -p -d test> test.sql
warning: using unique option prefix sock instead of socket is deprecated
and will be removed in a future release. please use the full name
instead.
enter password:
執行成功,但有警告資訊,提示使用sock前輟將在後繼版本中可能不再支援,請使用全名
將--sock 換成--socket將不再有問題:
[root@localhost ~]# mysqldump --socket=/mysqldata/base/mysql/mysql.sock -uroot -p -d test> test.sql
ORACLE 匯出報錯 「POLTYP」識別符號無效
一 錯誤提示如圖 二 出現這個錯誤的原因 一般是版本不相容引起的。比如在作業系統上安裝了oracle11g client,oracle10g server,源資料庫是oracle10g server,而我們在匯出的時候用的oracle11g client的exp,就會出現這個問題。三 解決方案 環境...
Excel匯出報表
excel匯出 function exportexcel 對應controller exportexcel?var param id serialize form表單的id 把建立的內容寫入到輸出流中,並關閉輸出流 workbook.write workbook.close os.close pub...
匯出報表Content Disposition
論壇有個需求,匯出參加活動的人數情況,用報表來儲存,詳細 如下 其中activityservice.getexportcontent activity,topic 這個方法是報表內容,關鍵 如下 參與活動使用者資訊 boolean username false,persons false,phone...