• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone know where to get a large csv file?

Isocene

Senior member
I need to find a large csv file for project for class. It needs have at least 5000 bits of data. So 5 coloumns and 1000 rows would be good.

Anyone know where to find a good file off hand.

Im posting here because im getting desperate. Cant find anything good online.

Thanks

 
i can make one for you
vbscript will knock it right out

what do you want in it? just some words? like pancake, bunny, head, spider, ATOT
repeated 1000 times
something like that? or does the data need to be more unique ?
 
Originally posted by: FoBoT
i can make one for you
vbscript will knock it right out

what do you want in it? just some words? like pancake, bunny, head, spider, ATOT
repeated 1000 times
something like that? or does the data need to be more unique ?

you forgot cat... 🙂
 
Originally posted by: aircooled
Originally posted by: FoBoT
i can make one for you
vbscript will knock it right out

what do you want in it? just some words? like pancake, bunny, head, spider, ATOT
repeated 1000 times
something like that? or does the data need to be more unique ?

you forgot cat... 🙂

ninja, pork, french, babe, wailing, guitar, bukakke, seppuku, spicy chili
 
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oFile = oFSO.OpenTextFile("c:\file.csv", 2, True)
For I = 1 to 1000
oFile.writeline "pancake,bunny,head,spider,ATOT"
Next
oFile.Close
Wscript.Echo "DinG!"
 
Back
Top