5,322 questions
0
votes
0
answers
28
views
Firebird connection error: "Unable to connect to host LOCALHOST" with ERP's database [closed]
I am developing a shell script that uses the fbexport utility to export data into CSV files from a Firebird database.
My script was working perfectly during my tests on a standard installation of ...
0
votes
0
answers
35
views
action button to export questionnaire in csv form in Django web app causing 504
Ya so i created this action button on a django web app and when i tried to use it got this error
{"code":504,"message":"upstream request timeout"}
so i do agree that its ...
1
vote
0
answers
65
views
npx tsc --noEmit giving type error on export-to-csv even when the members exist
I am using export-to-csv version 1.4.0 in my project and importing its methods like this
import { download, generateCsv, mkConfig } from 'export-to-csv';
Everything works perfectly, but when I try to ...
-1
votes
0
answers
56
views
How to export a CSV in R with accented characters (é, è, â, etc.) on Windows? [duplicate]
I'm trying to export a CSV on windows, but get weird characters when looking at the data in Excel (see image). I also tried 'latin1', but it doesn't work.
library(dplyr)
a <- 1:6
mytable = tibble(a,...
0
votes
1
answer
99
views
Overwrite Excel/CSV with pandas while file is open
Is it possible to overwrite and save a DataFrame to an Excel or CSV file if that file is already open?
I tried using df.to_excel("file.xlsx", index=False) to overwrite an existing Excel file ...
1
vote
1
answer
179
views
How to export a tbl_duckdb_connection object to CSV from duckdb without collect()?
I have a dataset (originally large CSV) that I filtered using duckdb and dbplyr.
This is a small script that get to my idea :
library(duckdb)
library(DBI)
library(dplyr)
library(dbplyr)
...
0
votes
1
answer
83
views
How to make Microsoft Excel load Unicode characters correctly when open double clicking CSV file
Note: This issue is specific to Microsoft Excel. It works fine on LibreOffice without any problems.
I am developing a React application where I need to let the user download some table data upon a ...
1
vote
1
answer
43
views
How to export EEG data from EEGLAB to CSV correctly?
I am trying to export EEG data to a CSV file using EEGLAB.
I select the menu bar in the EEGlab GUI interface: [file]→[Export]→[Data and ICA activity to text file], and it popped up such an interface:
...
0
votes
0
answers
22
views
How to configure minimal file size when exporting from Vertica to S3 bucket in csv?
I'm exporting a table sized 250 MB to s3 from Vertica. I don't know how to control the size of the files being written to the bucket (they're currently each about 80 kb). I want these output files to ...
0
votes
1
answer
56
views
Importing CSV file, decimal seperator not working
I am trying to get some data from my sql database to my PowerBI, I first export the data just fine out of my database and when I check the file in my notepad it looks good. Only when I try to import ...
0
votes
1
answer
102
views
How to export issues from GitHub to Excel file
How can I export issues on GitHub to Excel file to print. I have looked for the method on here too but they all missing the issue open and close time. Is it possible to export with the time?
0
votes
1
answer
103
views
Process a .gcode/txt file to extract data into a .csv file with Applescript
Here's what I'd like to do: Process a .gcode file to extract certain data and then create a .csv file containing all this data.
For your information, this .gcode file is used on a 3D printer or laser/...
2
votes
1
answer
95
views
CsvReader (CsvHelper) ClassMap throug interface to GetRecords return nothing
I created a class called TestSaccaModel which implements ITestSaccaModel and in my project I use the objects with its interface.
public interface ITestSaccaModel : INotifyPropertyChanged
{
//...
}
...
0
votes
1
answer
71
views
Facing an error while looping through list and saving the data
I am trying to access data of around 500 stocks from the "https://www.nseindia.com/report-detail/eq_security" for which I have mentioned steps.
Open the url
enter stock symbol and click on ...
0
votes
1
answer
118
views
Convert large txt file to csv for GIS [closed]
I have a 7GB file with coordinates for observations of birds, which I downloaded here: https://www.gbif.org/occurrence/download/0020030-250402121839773
It's tab-delimited with a lot of columns that I ...