Comma-Separated Values are a list of plain text values delimited by commas, or a file containing one or more lists in that format.
0
votes
0answers
6 views
How to I read all existing CSV files on a server?
This question is a little complicated, but I will try my best to explain. Feel free to ask for clarification if my question does not make sense.
Situation:
On my server there will be a new ...
1
vote
2answers
50 views
Writing to csv file in Python
The code I have
i = 0
while i < len(newsymbolslist):
time = 102030
data = 895.233
array = [time], [data]
with open('StockPrice.csv', 'wb') as file:
file_writer = ...
-1
votes
0answers
9 views
SQLite: Importing csv with large number of columns
I am just starting out with SQL and SQLite. I am aware that one can import a csv as a table by (1) creating a table with the necessary columns, (2) designating the delimiter/separator, and (3) ...
0
votes
0answers
10 views
Is the XML parsing slow, or is the SQL insertion methodology the bottleneck?
Although I think it's likely that it's the volume of data that's causing the problem, and not the way we're sending/parsing it (and the fact that the device receiving the data is a 98-lb. weakling ...
0
votes
2answers
19 views
Overwrite a specific column in a csv file using Python csv module
I am using Python csv module to read a csv file with every line being like:
2013-04-16 7:11:01,186744,3,2,2,1.89E-03
I then convert row[0] to unix time but then I want to replace the datetime with ...
0
votes
3answers
41 views
php save to csv file
I'm wanting to store basic data from a single form box and I've created this php code base, but it doesn't seem to be working. Can someone take a glance and see if anything stands out to why this ...
0
votes
1answer
32 views
Transferring MySQL Data from Different Tables to a CSV file
<?php
$server = 'localhost';
$login = 'user';
$password = 'pass';
$db = 'database';
$filename = 'output.csv';
$table = 'table';
mysql_connect($server, $login, $password);
mysql_select_db($db);
...
0
votes
0answers
7 views
Check for Exponential value in a CSV file
We currently have a process to import CSV file into SQL server table. The CSV we get from a third party vendor Some times the have Exponential values for a 16 digit ProcessID column which the SQL ...
0
votes
1answer
29 views
PDF data to MYSQL
Does anyone know a simple way to extract a table of information from a pdf file and insert it into a mysql database without converting it to a csv or xml file first? I have well over 200 pages worth ...
0
votes
1answer
9 views
highcharts csv export plugin
Highcharts provides an example for exporting chart series data to csv. (http://highcharts.uservoice.com/forums/55896-general/suggestions/2495153-export-chart-data-to-csv-excel-and-more-via-dat)
...
0
votes
1answer
7 views
Schema.ini not giving data after " (double quotes) from a csv file
Trying to parse a CSV file using schema. File contains info like
N,5800-4-125,1/8 .125 X 4" GRAY TIP DRILL,K125746
N,5800-4-125,1/8 .125 X 4" GRAY TIP DRILL,K127188
N,5800-4-125,1/8 .125 X 4" GRAY ...
-1
votes
2answers
32 views
CSV Export programmatically, issue with certain characters at the start of a word
I have a facility to export simple data to a csv file. Everything is working perfectly unless there isn't a '-' as the first character of any field. It displays '#NAME?' in the cell and I know this is ...
0
votes
1answer
58 views
How can I put certain rows from CSV file into JSON arrays within a JSON object? (PHP)
I am taking CSV data and using PHP to generate JSON, but I'd like to know if it's possible to take certain rows from the CSV to create arrays within an object, see goal below for clarity:
I have the ...
0
votes
2answers
28 views
Split large Excel/Csv file to multiple files on PHP or Javascript
I have excel(file.xls)/csv(file.csv) file that contains/will contain hundreds of thousands of entry, even millions I guess. Is it possible to split this one to multiple file? Like file.xls to ...
0
votes
1answer
17 views
Modify the CSV file to add addtional comma using script task in SSIS
I have a CSV file in the following format
"Sometext","Sometext","Sometext","Sometext","Sometext","Sometext","Sometext",
...
0
votes
0answers
6 views
formate date in catdoc open source
I have xls file and I want to convert csv file with catdoc in Linus.However, I do not know why catdoc always converts date format to string,although I try to format date type in command line.
this is ...
1
vote
1answer
81 views
Uploading CSV File, PHP/MySQL Query
i have a .csv file that looks like this...
Name AC-No. Time State Exception Operation
Johnny Starks Depp 1220 4/12/2013 12:45:18 AM Check In ...
-1
votes
1answer
49 views
Convert Str to Float in csv
I'm running into a little error where I open up a csv file set up as 10 columns by 100 rows. I want to first convert all the numbers in it from str into floats. Then turn each column of numbers into ...
-1
votes
0answers
29 views
Tuple to CSV in Python [closed]
I have a list of tuples, and I'd like to write them to a csv file.
List = ["(u'url1', u'html')", "(u'url2', u'PDF')", "(u'url3', u'php')", "(u'url4', u'jspx')"]
I've tried the following, but it ...
0
votes
1answer
37 views
pandas resample doesn't work with numpy 1.7
This code worked on my other computer with NumPy 1.6:
import pandas as pd
from pandas import DataFrame
import numpy as np
...
1
vote
1answer
30 views
Rails 3.2 or 4.x way to submit a form/file for preview
I'm trying to create a form, where I can upload an CSV file to import or to preview before import it.
In my form I have:
<%= form_for(@contact_import, :remote => true) do |f| %>
<% if ...
0
votes
1answer
63 views
How do I iterate through 2 CSV files and get data from one and add to the other?
I'm trying to iterate over a CSV file that has a 'master list' of names, and compare it to another CSV file that contains only the names of people who were present and made phone calls.
I'm trying to ...
0
votes
1answer
39 views
Creating .csv file from an Access table using C#
I am trying to write a program which creates a .csv file from an Access table. I'm not sure how to do this and everything I've found while researching this is how to do the opposite, creating an ...
0
votes
0answers
17 views
Upload images via CSV data onto server
We have a site where users can add listings and they can optionally add images to these listings. Now we are working on a Excel bulk lister which spits out a formatted CSV file. However we're ...
-5
votes
0answers
17 views
Why does your bulk product import regularly lock up [closed]
So whenever I import products using your bulk-import interface, it takes a small age of mankind to import the products. Usually they import fine if I do not use SKU's or swatch options, but really it ...
0
votes
1answer
12 views
SublimeText 2 / REGEX - Remove everything in between two tags including line breaks?
I have a CSV document littered with thousands of instances of a table that I need to remove. I assume I can use REGEX, but I can't seem to find an expression to remove it. I attached a sample at the ...
0
votes
2answers
22 views
postgresql query result to csv prints current page's html code also
I am trying to output the results of a PostgreSQL query to CSV format using PHP.
On the main page is a link that sends the SQL statements as a string to another function in another PHP class, which ...
0
votes
1answer
41 views
Matlab: reading rows of different formats from csv file
I'm trying to read a csv file that contains data in format:
02/01/2012 03/01/2012 04/01/2012 05/01/2012 06/01/2012 09/01/2012 10/01/2012
1w 0.652 0.626 0.606 0.584 0.564 0.546 0.53
...
0
votes
1answer
18 views
PHP & MySQL - LOAD DATA LOCAL issue
I'm working on a small project in php to import a csv files into a MySQL table. I'm currently just using a small test table and csv however I keep getting an error thrown at me and I cant seem to spot ...
0
votes
0answers
11 views
Java csv reader with support for quotechar and escapechar
I am in dire need of a simple csv reader.
It needs to support the following features:
importable as a maven dependency
needs to support quotechars around a column which may or may not be there. ...
3
votes
2answers
74 views
Parsing csv file in Ruby
I'm expiriencing issue with parsing my CSV file and I cannot resolve this for a while now. My pipe seperated CSV file has a special case that fails the parsing. Here is my code :
CSV.parse(data, ...
0
votes
1answer
13 views
Streaming CSV to browser
Busy building a website for a client using classic ASP (It will reside on an old server) which is going to be used internally only.
The admin is able to view a paginated table of data and export this ...
-5
votes
0answers
58 views
0
votes
3answers
45 views
Python: Sort CSV using a key computed from two columns, grab first n largest values
Python amateur here...let's say here I have snippet of an example csv file:
Country, Year, GDP, Population
Country1,2002,44545,24352
Country2,2004,14325,75677
Country3,2005,23132412,1345234
...
0
votes
3answers
69 views
c# writing/reading CSV [closed]
I'm working on a program in C #. With this program it is intended that I write values from a textbox to a CSV file. This works so far though. Only the values pasted back together like this:
...
4
votes
1answer
67 views
xlsread() thinks my 1-line CSV has 1048576 rows
I wanted to use [~, ~, temp] = xlsread('1.csv','A:A'); to get the first column of the 1-line CSV file 1.csv.
1.csv contains just one line:
...
0
votes
1answer
16 views
Accept either comma separated values or newline separated values
I have this code:
var skus = !input.match(/\,/) ? input.split('\n') : input.split(',');
This will get the contents of a <textarea> and depending on whether or not it contains commas, will ...
3
votes
1answer
38 views
Can Perl's Text::CSV_XS be used to remove columns from CSVs?
For work purposes, I have several CSV files which have been modified by a vendor upgrade, and they now contain approximately 80 more columns than they used to. The downside is, these files are used ...
2
votes
1answer
44 views
How do I export csv file to my computer in mysql
I am trying to export a table from a remote server to my desktop computer in csv format. I have this code:
select * from order
into outfile 'C:\Users\Sleep Shop\Desktop\MySQL Scripts/outfile.csv'
...
0
votes
2answers
15 views
Compare Excel.csv to Oracle Database in Java
I have been tasked with comparing data in an excel file (in .csv format) to my companies oracle database in Java. Once the data has been compared, I need to write if the data is the same or different ...
-1
votes
1answer
15 views
How to import csv to mysql table?
Error: This query is just inserting the 1 line of file
LOAD DATA INFILE 'file.csv' INTO TABLE coords FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n';
And the file has 300k lines.
Columns are ...
0
votes
0answers
45 views
Loop by number of Columns in CSV upload Coldfusion
I'm customizing a CSV uploader to allow for column mapping. I've got a function that parses it into an Array, then I'm looping through it to generate select boxes with the uploaded file column names ...
0
votes
1answer
14 views
Accept CSV attachment from Java HttpServlet in jquery.ajax()
In my webapp I want the user to download a csv file as a response to a POST ajax request.
The response is properly sent, and looks ok, but at ajax.success() nothing happens.
I don't want to ...
2
votes
2answers
60 views
Use Python to write on specific columns in csv file
I have data in a file and I need to write it to CSV file in specific column. The data in file is like this:
002100
002077
002147
My code is this:
import csv
f = open ("file.txt","r")
with ...
0
votes
2answers
27 views
Make a CSV from a MySql table in ASP Classic
It has been asked to me to make a sort of "exporting" feature on a site in ASP Classic.
I thought it could be really simple to make, but I got some problems. I get the right numbers of row in the ...
0
votes
1answer
26 views
How do I add specific values on multiple rows of a csv file from different starting points?
I used an SQR to create a comma delimited .csv file with multiple rows of data. On each row there are four different sets of data. One set is a monetary value. I am trying to use a Linux script to ...
0
votes
0answers
3 views
Kaltura Bulk Upload CSV
I want to use Kaltura Bulk Upload Entries CSV to upload a batch of videos from an ftp server.
However I could not find any documentation on the Usage and Schema Description for Entries CSV
...
2
votes
0answers
43 views
Python script truncating directory names
Suppose one has the following script:
import csv
import re
#this script is designed to take a list of probe files and
#generate a corresponding swarm file for blasting them against
#some user ...
0
votes
0answers
29 views
Jmeter, a single thread interacting through CSV data set
i have used a transaction controller which has recorded several action for different products, now i have parameterized the product name by putting them in a csv file.
But now when i run the script ...
-1
votes
1answer
24 views
Powershell ConvertTo-CSV custom headers
Does Powershell support using custom header names when converting data to CSV? I'm convertering user data from Active Directory and want to use other names in the headers than the property names.
My ...






