0
我有一個SQL腳本,它使表和增加數據,但該文件是非常巨大的,22GB!我無法使用LargeFile/chrome在gedit/vim中打開它。似乎沒有任何工作。如何在ubuntu中打開一個大的sql腳本(22GB!)?
我有一個SQL腳本,它使表和增加數據,但該文件是非常巨大的,22GB!我無法使用LargeFile/chrome在gedit/vim中打開它。似乎沒有任何工作。如何在ubuntu中打開一個大的sql腳本(22GB!)?
如前所述here:
的另一種方法是使用分裂。將文件拆分爲
n
件和 用編輯器操作文件。之後,您再次重新組裝 文件。split -b <size of a part> <your-file> cat xa* > <your-file> SYNOPSIS split [OPTION]... [INPUT [PREFIX]] -a, --suffix-length=N use suffixes of length N (default 2) -b, --bytes=SIZE put SIZE bytes per output file -C, --line-bytes=SIZE put at most SIZE bytes of lines per output file -d, --numeric-suffixes use numeric suffixes instead of alphabetic -l, --lines=NUMBER put NUMBER lines per output file
謝謝。這工作。我現在可以查看部分文件。 – Suhas