The csv-import tag has no wiki summary.
1
vote
1answer
33 views
SSIS Import CSV file without trailing comma
I want to import a CSV file to Database table using SSIS package. Problem is the CSV file does not have trailing commas if the cell value is blank/null.
Example of CSV file:
Id,City,State,Zip
...
-1
votes
0answers
21 views
Magento : import customer csv and auto assign password and send notification per store
I want to import a customers csv file, after importing the email notification should be sent to each customer with the auto generated password. Is there any way to do this ? I'm new to magento, so ...
0
votes
1answer
27 views
importing csv file to mysql choose columns
I import a csv file and write the headline of the csv on the left side. On the right side I create a dropdown. In the dropdownlist I have the values of my mysql columns. I want to select with the ...
-5
votes
2answers
104 views
C# CSV file to array/list
I want to read 4-5 CSV files in some array in C#
I know that this question is been asked and I have gone through them...
But my use of CSVs is too much simpler for that...
I have csv fiels with ...
1
vote
1answer
35 views
Postgresql csv importation that skips rows
I have a Postgresql script that automatically imports csv files into my database. The script can detect duplicate records and remove them, do a proper upsert but still cannot tackle everything. ...
1
vote
2answers
82 views
Importing dates to excel, conversion fails. Language/regional settings probably the reason
So I use the get external data from text function in Excel.
The file I am importing is this one.
I just paste the url in the open file dialog, that works just OK. Then I go through the ...
1
vote
0answers
51 views
How to define the admin import format for a field using django-import-export
I am trying to use the recently open-sourced django-import-export to import some data via the admin, and I needed to choose a custom date format.
It works, but are there problems/better ways of ...
0
votes
1answer
33 views
ActiveRecord::AssociationTypeMismatch on CSV import
I am importing a CSV, that has two columns name and boro.
When I run the import in development, it works fine. But when I do it in production on Heroku, I am getting this error:
...
2
votes
2answers
200 views
Merge CSV files in Python using Python Dictionary
Hi I am trying to create a new CSV file from merge of specific fields in two CSV files based on a common column or primary key. I have tried doing the same thing in powershell and it worked but was ...
0
votes
2answers
471 views
How to send new password from Magento CSV import of Customers
We have been trying to modify the Customer.php file ( import/export ) to get it to send out the new account details automatically as it imports the customers from a CSV file.
We are working in the ...
0
votes
0answers
148 views
Magento - upgrade and order import
The practice I follow to upgrade the magento is to upgrade into new folder so that live website is not down, and after upgrade is done, I change the new folder name to old, however in this process, I ...
4
votes
2answers
3k views
SQL Server 2012 Import CSV to mapped Columns
I'm currently trying to import about 10000 rows (from a CSV file) into an existing table.
I only have 1 column which I'm trying to import, but in my table I have a another column called TypeId which ...
4
votes
2answers
3k views
LOAD DATA LOCAL INFILE gives the error The used command is not allowed with this MySQL version
I have a PHP script that calls MySQL's LOAD DATA INFILE to load data from CSV files. However, on production server, I ended up with the following error:
Access denied for user ... (using password: ...
2
votes
2answers
1k views
Importing Maxmind CSV into MSSQL
I have downloaded the GeoLiteCountry CSV file from Maxmind - http://www.maxmind.com/app/geolitecountry. Using the format given to me as standard (so that this can become an automated task) I am ...
0
votes
2answers
1k views
Creating Configurable product on import csv
When a new simple product is added (via CSV or manually) we need to check if the appropriate configurable product has been added (where SKU = "item_number-item_colour_code" e.g. BLEA2606B-BK001). If ...
2
votes
1answer
527 views
php CSV import generated from MS Excel
According to standards specified here: http://en.wikipedia.org/wiki/Comma-separated_values
and a CSV file generated from MS Excel, I wonder how can we import CSV file in php in this
case:
...
1
vote
1answer
363 views
PostgreSQL COPY FROM Command Help
I have CSV File which is quite large (few hundred MBs) which I am trying to import into Postgres Table, problem arise when there, is some primary key violation (duplicate record in CSV File)
If it ...
0
votes
1answer
893 views
Creating User Accounts in Active Directory using QAD Cmdlets in Powershell
I'm currently working on a powershell script that will look at a CSV file, take the information enclosed and (along with several values defined in the script) populate AD user attributes.
Originally ...
1
vote
1answer
271 views
Insert 65535 rows into SQL Server 2008
I want to insert 65545 rows from csv to SQL Server 2008 in C#.net but I need to rearrange data in my program.
Which way is the best way to insert those rows into SQL Server, SQLBulkOperations, or ...
4
votes
4answers
4k views
Commas within CSV Data
I have a CSV file which i am directly importing to a SQL server table. In the CSV file each column is separated by a comma. But my problem is that i have a column "address", and the data in this ...
