![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Large file FTP problem | rprajendran | UNIX for Advanced & Expert Users | 3 | 06-06-2008 02:46 PM |
| problem while making ftp of a large file | rprajendran | UNIX for Dummies Questions & Answers | 1 | 05-28-2008 02:19 AM |
| problem with 0 byte and large files | dsravan | Shell Programming and Scripting | 3 | 04-20-2007 10:59 PM |
| Problem with parsing a large file | gauravgoel | Shell Programming and Scripting | 6 | 10-18-2006 06:48 PM |
| Large file transfer problem | VVV | UNIX for Advanced & Expert Users | 1 | 10-22-2005 12:15 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Problem in processing a very large file.
Hi Friends,
Getting an error while processing a very large file using an sqlloader........ The file is larger than 2 GB. Now need to change the compiler to 64-bit so that the file can be processed. Is there any command for the same. Thanks in advance. |
|
||||
|
Unless you expect to use thousands of large files (>2GB) just use split to whack the file into two/three pieces. sqlldr -> the first file, then the second. split should be able to read files that large... if your filesystem correctly handles the big file. Code:
split -b 270000000 file.dat split_file for file in `ls split_file*` do sqlldr data="$file" control=somefile.ctl done |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|