You might had this experience many times while working in day to day Unix environments.. Viewing a Unix file very common in any Unix based task, however, there are large files in form of any log or any other data. Viewing such files really annoying to any administrator when this hits the following error. Out of memory saving lines for undo - try using ed : The reason why above error, default maximum lines can be displayed by " vi " editor is 1,048,560 so anything file more than 1,048,560 lines will not be displayed with "vi" editor. May be below will show what you're looking for but will not allow much flexibility to view complete file View the first 200 records $head -n 200 yourfile.log |pg to view the last 200 records $tail -200 yourfile.log How to solve this problem " -y " switch of " vi " editor allows to overrides the maximum line setting of 1,048,560 with any value greater than 10...
Did you freeze your DB view? Or maybe by it happened by chance!!!... Did you ever hit DB view freeze because of " set transaction read only ". Let us see what it does. Under a test DB user and test table ABC which consist only one record. Start a read-only transaction. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> select * from abc; P Q ---------- ---------- 1 1 SQL> set transaction read only; (Kept event 10046 level 12 trace for this session to see all background happening more detail) *** 2019-05-16 15:46:33.912 WAIT #4574320352: nam='SQL*Net message from client' ela= 102202601 driver id=1650815232 #bytes=1 p3=0 ob...