mysql select * into OUTFILE 不会锁表

mysql select * into OUTFILE 不会锁表,第1张

mysql>  select * into  OUTFILE  'out.txt' from test.t3 不会锁表:  

  

mysql> show engine innodb status\G    

*************************** 1. row ***************************  

  

------------  

TRANSACTIONS  

------------  

Trx id counter 123413  

Purge done for trx's n:o < 122897 undo n:o < 0 state: running but idle  

History list length 461  

LIST OF TRANSACTIONS FOR EACH SESSION:  

---TRANSACTION 123412, not started  

MySQL thread id 62, OS thread handle 0x7fe5a1337700, query id 1261 localhost root init  

show engine innodb status  

---TRANSACTION 123410, ACTIVE 108 sec  

MySQL thread id 60, OS thread handle 0x7fe5a12f6700, query id 1243 localhost root cleaning up  

Trx read view will not see trx with id >= 123411, sees < 123409  

--------  

  

  

mysql> show engine innodb status\G    

  

  

LIST OF TRANSACTIONS FOR EACH SESSION:  

---TRANSACTION 123412, not started  

MySQL thread id 62, OS thread handle 0x7fe5a1337700, query id 1264 localhost root init  

show engine innodb status  

  

---TRANSACTION 123410, ACTIVE 160 sec fetching rows  

mysql tables in use 1, locked 0  

MySQL thread id 60, OS thread handle 0x7fe5a12f6700, query id 1263 localhost root Sending data  

select * into  OUTFILE  'out.txt' from test.t3  

Trx read view will not see trx with id >= 123411, sees < 123409  

--------  

  

============================  

  

1 row in set (0.00 sec)

你稍微用心看一下系统的提示吧(就三个单词(除了表明和字段名)):

#1054 - Unknown column 'vtiger_accountid' in 'field list'

说明'vtiger_accountid'字段是无效的,你数据库的表中没有这个字段,当然不能这样插入数据。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7675316.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-08
下一篇 2023-04-08

发表评论

登录后才能评论

评论列表(0条)

保存