Search found 5 matches

by sant
20 Mar 2014 00:39
Forum: DOS Batch Forum
Topic: to insert row of columns for conents in csv file
Replies: 10
Views: 7251

Re: to insert row of columns for conents in csv file

Hi,

need your inputs once again

now i am having the requirments to split the contents of csv file. ex: if csv file is having 70K rows i need to split that in to 2 files having 35k in each.

how we can implement this through batch file code?

Thank you
by sant
18 Mar 2014 11:03
Forum: DOS Batch Forum
Topic: to insert row of columns for conents in csv file
Replies: 10
Views: 7251

Re: to insert row of columns for conents in csv file

hi,

Thnks for your inputs, i was able to get what i had expected. below is the code i had written

1.csv -> file having only header
2.csv->file having contents/data

batch file code:

type 2.csv >> 1.csv
by sant
16 Mar 2014 22:12
Forum: DOS Batch Forum
Topic: to insert row of columns for conents in csv file
Replies: 10
Views: 7251

Re: to insert row of columns for conents in csv file

Hi,

whether i need to have only the data in file.csv?
by sant
16 Mar 2014 21:30
Forum: DOS Batch Forum
Topic: to insert row of columns for conents in csv file
Replies: 10
Views: 7251

Re: to insert row of columns for conents in csv file

Hi, Thnks for the reply. below code is just creating the column names in new csv file(without the contents).also its create Loginid emailid FN LN FullName EMPID Status headers in single column below is the code i have tested. @echo off ren file.csv fileold.csv echo Loginid emailid FN LN FullName EMP...
by sant
16 Mar 2014 08:51
Forum: DOS Batch Forum
Topic: to insert row of columns for conents in csv file
Replies: 10
Views: 7251

to insert row of columns for conents in csv file

i have csv file having the contents, now i have to insert column name for this contents i.e i need to insert 1st row on top of the contents present in the csv file. please let me know how this can achived.. At present csv file will be like this: dany.lessard dany.lessard@cgi.com Dany Lessard Dany Le...