380 questions
0
votes
1
answer
103
views
WP All Import - importing from csv file contain json fields
Need some help with
I have a csv file provided by my client, which contains the export of products from an internal database connected to an invoicing software.
But some fields are in json.
This is an ...
0
votes
0
answers
66
views
MariaDB is rolling back (removing rows) when running LOAD DATA INFILE on large CSV files
I have large CSV files with stock values and I have successfully added these to my MariaDB database using the "LOAD DATA INFILE" command:
LOAD DATA LOCAL
INFILE '/mnt/HD/HD_b2/Public2/...
0
votes
1
answer
135
views
How to import "|" delimited CSV data from a Bucket to MySQL on Google Cloud SQL?
I am trying to import data from a CSV file that is stored in a Bucket. The CSV file uses the "|" delimiter. I would like to import these data to a MySQL database on Cloud SQL.
However, I ...
0
votes
0
answers
493
views
Mysql Workbench - Error Code: 5. Out of memory
I am using myworkbench 8.0 to import data to MySql 8.0.32 from a 16G csv file. I get "Error Code: 5. Out of memory (Needed 784334881 bytes)". Machine spec: Win 10, 8Gb ram. CSV is | ...
0
votes
1
answer
483
views
extract data in csv from table with 2 billion records
Wanted to know the tool which can extract data in csv from a table or by executing a sql query like
select * from table 1 inner join table 2 on ...
Data is currently in oracle database and required ...
0
votes
1
answer
206
views
Python Rounds off values while importing/exporting from/to a scv file
While importing or exporting to a CSV file, I see that python rounds off value but only for certain rows/columns whereas the other data is kept intact. Not sure why this is happening for certain rows/...
1
vote
0
answers
246
views
Issue with rounding data and NaN when using pandas.read_csv
I am trying to load a csv into a data frame using pandas.read_csv. My data has a column of cell ids that are 18 digits long, and then other columns with other data. Sometimes there is an empty entry, ...
0
votes
0
answers
69
views
FROM clause of INSERT INTO throwing unhandled exception in VB
I'm running VB 2019, trying to import a CSV file into an Access database using this code:
Dim conn As New OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0; Data Source=" + My....
0
votes
1
answer
217
views
Sending SQL Queries to CSV file on Excel VBA doesn't work for Date Columns
I am trying to get some data from a csv file having more than than 3 million rows. I've set an ADODB connection to my csv file and everything works fine except for querying date columns.
Here is how I ...
-1
votes
2
answers
649
views
reading a csv file and printing out rows
I have created a csv file with two columns - the subject and the modules.
and i want to print out all the modules for the same subject
the csv file looks like this csvfile
currently my code looks like:...
1
vote
1
answer
793
views
Can't use custom seperator in opencsv
I need to get the values from my csv file and for this I need to set the seperator to ';' and the values are in '"'.
If I try it like this:
final CSVReader reader = new CSVReader(new ...
3
votes
1
answer
2k
views
Reading list of URLs from .csv for scraping with Python, BeautifulSoup, Pandas
This was part of another question (Reading URLs from .csv and appending scrape results below previous with Python, BeautifulSoup, Pandas ) which was generously answered by @HedgeHog and contributed to ...
-1
votes
2
answers
547
views
How to import a CSV file to MSSQL using Springboot
I am working on a project that has a function that allows users to import a file (Excel or CSV) to DB (MsSQL). I have read tutorials on the internet and followed them, but the problem is one of my ...
1
vote
2
answers
3k
views
KeyError: 'id' django-import-export
I don't know where it is wrong, right in my code, please help I already wasted lot of my time... THANK YOU _/\_
admin.py
from import_export import resources
from import_export.admin import ...
0
votes
2
answers
55
views
Get wrong output
My code is as follow
The output is null, I should use while loop as you see, but somewhere in my code is not working properly.
and I'm not able to use any other library
I need an hours array and rate ...
0
votes
1
answer
1k
views
Powershell import csv where column data matches data in txt file
I have a csv file that has header called CompanyName.
In the csv there are tons of rows and different company names.
But I keep a text file with specific companies whose data I need to retrieve.
...
2
votes
2
answers
2k
views
How can I import a CSV file containing JSON into postgresql?
I am trying to import this CSV file:
HEADER
"{
""field1"": ""123"",
""field2"": ""456""
}"
"{
"...
1
vote
2
answers
3k
views
Reading a CSV file without the full name
Very new to Python here. I am trying to read a file from a folder, but without knowing its full name.
For example AAA_05212021.csv is the file name located in C:\test\
AAA is the known part of the ...
2
votes
1
answer
6k
views
SSIS error The column delimiter for column "x" was not found
I have a CSV file that looks like below
In my SSIS package (Visual Studio 2017), I create a Flat File connection
Text qualifer: "
Header Row Delimiter: {LF}
Header Rows to skip: 0
Column ...
0
votes
0
answers
158
views
Garbage value is inserting while importing zip file into database
I'm trying to import data through files and below code works fine with csv files but, when I upload a zip file it uploads some garbage value into database. Can you please help me with this. Thank you!
...
-1
votes
2
answers
37
views
if expression to find if text is in a field for a DictReader key
I would like to get the if "172" in statement to identify the addresses with 172 in them. Thinking I must have syntax wrong on "if "172" in {row["IP_ADDRESS_ZLOC"]}:...
0
votes
1
answer
913
views
Starting import from CSV from row 2 using VBA
I'm new to VBA and therefore need some help. I'm trying to import data from a CSV file using a method where I can chose the csv of a list using the following piece of code:
Private Sub ...
1
vote
0
answers
913
views
Importing CSV file via VBA into Excel won't seperate data into different columns [duplicate]
I have a CSV file filename.csv with the following content:
UID;Datum;Klasse;SendungsNr
6177;14.08.20;624;00340434299338038179
6178;14.08.20;624;00340434299338038186
6179;14.08.20;624;...
0
votes
0
answers
315
views
Yii2 - Import Multiple users from CSV file
I have two tables. one is user-table -name - user and another table named profile.
The format of csv file for user is like this:
first_name,last_name,username,email,phone,user_role,status,...
0
votes
1
answer
667
views
Trying to Store GTIN numbers in WordPress Database via WooCommerce CSV Import
Trying to Store GTIN numbers in WordPress Database via WooCommerce CSV Import
In Excel I created my CSV in which there is a column called meta:wpseo_global_identifier_values
Through excel formulas I ...