I have several xml files. They're very big, and my computer is quite slow. I can't open them in notepad. What is the fastest, easiest way to divide these files into equal parts, still in xml format, in Windows?
Splitting very large files on slow computers?
129 Views Asked by Wolfpack'08 At
1
There are 1 best solutions below
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in SPLIT
- Powershell Split a file name
- Split the strings into two parts Python
- SPLIT using " " delimiter in Google Sheets won't always preserve period following number
- How to parse/split a string?
- Return splitted value
- split() Error:list index out of range
- Powershell For Loop, Replace, Split, Regex Matches
- Spliting a row into columns using a delimiter in R
- Split string with comma delimiter but not if it is a currency value using C#
- How to split string on multiple delimiters keeping some delimiters?
- Split input files into multiple file using perl
- Group MySQL results into blocks of A-Z in PHP
- PHP split or explode string on <img> tag
- How to split a table in 4 groups?
- Function returning list is showing False python
Related Questions in SLICE
- sorting javascript array slice
- A Smarter Way to Learning JavaScript: Chapter 23 - Strings: Finding Segments
- Creating byte buffers in rust
- How to slice (in Python) "all but the last n" items when n may be zero?
- How to slice middle element from list
- Parenthesis after a slice in go?
- What is the difference between a slice and an array?
- Using BLAS ?gemm on a subset of an array in fortran
- The zero value of a slice is not nil
- irregular slicing/copying in numpy array
- Why isn't .slice() working with Float32Array() but does with an Array()? [JavaScript]
- Concatenation of strings array issues in Python: Str(ArrayOfString[1])+" "+Str(ArrayOfString[2]) doesn't seem to work
- How to keep a strong reference in Go?
- Slicing rows of pandas dataframe between
- Python, __getitem__, slices, and negative indexes
Related Questions in DATAHANDLER
- Cant get String out of Base64 encoded ByteArrayDataSource
- Javamail, error when sending attachments.
- MM relation which is added with command controller not shown in backend field
- Splitting very large files on slow computers?
- java encoded base64 soap attachment
- Custom DataHandler for SOAP using Java
- Writing from Datahandler to file
- How can I consume a Java based SOAP service that uses a Datahandler type in C#
- Send a file with SOAP DataHandler
- TYPO3 get protected property from DataHandler
- SQL Updates/Inserts with data with double quotes
- Android XML dataHandler getResources() is undefined
- React - Select specific data for Context Provider
- Using hashmap to display data in JTextField and update it
- Move existing pages into newly created pages with TYPO3 DataHandler
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
MSYSfor WindowsYou can then use the
sedcommand to pipe chunks of your file into another temp file.sed -n [start],[end]p filename > tmp.xmlwhere,
[start]is the starting line number, and,[end]is the ending line number. Of course, you'll have to run this command repeatedly. And, you'll need to know the total number of lines to divide the file into equal parts.