Cisco
Mobile
Software
Twikini
WSUS Certification (3)
Cisco (1)
Database (3)
Development (1)
Digital Photography (1)
Freeware (2)
General (9)
MCSE (3)
Microsoft (4)
Network (4)
Oracle (2)
scripting (2)
Security Threats (1)
SEO (1)
Software (2)
Spyware (1)
Training (1)
Utilities (1)
Virus (1)
Web Development (2)
Word Press (1)
WP-Theme (1)
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Recent Posts
Oracle SQL Developer July 24th, 2007
Oracle SQL Developer is a free graphical tool for database development.
http://www.oracle.com/technology/products/database/sql_developer/index.html
Oracle XE 10g July 24th, 2007
Oracle’s free version of the 10g database engine.
http://www.oracle.com/technology/products/database/xe/index.html
Concatenating CSV files March 14th, 2007
Many programs will log data to a CSV (comma separated value) file. These files are usually structured with a standard format. Let’s say you want to import the data into a database or spreadsheet. There is an alternative to importing 2, 5, 10 or 100+ files one at a time. You can concatenate the files into one file. Here is how you do it…
- Create a new directory on your hard drive (ie: C:\CSV-Files)
- Copy all the files into a new directory.
- Open a command window by clicking Start->Run. In the open line type “cmd” and hit return
- CD to the directory you created in step one (ie: cd C:\CSV-Files)
- Copy all the files to a single file… copy *.csv consolidated.csv
- You can now import consolidated.csv into your database or spreadsheet.