The outfile tag has no wiki summary.
4
votes
6answers
425 views
Need help fnding the average of a set of numbers in python
in my data file I have
60,66,88,90,44,90,80,77
all the numbers are in one line
this is my code which does not give me the average of my numbers
inFile3 = open("data2.txt","r")
global ...
2
votes
2answers
182 views
Trailing Spaces
When I run the following command it results in having trailing spaces after each object. What is the best way for me to remove them?
Get-VMHost | select Name | out-file c:\temp\hosts.txt
1
vote
2answers
87 views
C++ simple IO vowel count program
char ch;
//Get data from user
cout << "Enter your sentence on one line followed by a # to end it: " << endl;
while (cin >> character && character != '#')
{
...
1
vote
3answers
61 views
outFile C++ now writing to output text
Down below is my incomplete program. I am having problems with writing to a text file. For example I want to write the number of snow days to a text file, but nothing shows up in the textfile when I ...
1
vote
3answers
136 views
how to indent results of mysql SELECT INTO OUTFILE
I have an sql table that I want to dump to an outfile. The thing is, some of the results are 1 digit, i.e 1 or 2, while others are long numbers, i.e. 1.2323523
This causes the outfile to look ...
1
vote
1answer
67 views
how to get the result of non-select mysql statements into OUTFILE?
I have created event in mysql to do repair, optimize, and delete old data from some tables on monthly bases.
delimiter $$
Create event CheckMyDB
On SCHEDULE AT current_timestamp + INTERVAL 1 ...
1
vote
2answers
152 views
How do i read numbers into an outfile in C++
How do I get numbers from an infile to be used on an outfile?
for example, say i want to read numbers in an infile and use those numbers to display as student ids on an outfile.
0
votes
2answers
21 views
SELECT * INTO OUTFILE directory
I am trying to generate a file from mysql. The I am using is:
SELECT * INTO OUTFILE $_SERVER['DOCUMENT_ROOT']/data.txt FIELDS TERMINATED BY ',' FROM admin";
The code is working fine as I am not ...
0
votes
1answer
26 views
Using MySQL OUTFILE with non-simple data
I've been using the following command to expert mysql data to a csv file.
SELECT * INTO OUTFILE 'output.csv' FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' FROM table1;
It works for simple ...
0
votes
0answers
40 views
Mysql: “into outfile” with question mark
In a procedure I'd like to prepare a statement using "?" for a file name and then execute it with "using". But I got an error, because Mysql looks for a quotation mark after "into outfile", or so it ...
0
votes
1answer
24 views
Python dictionary construction from file with multiple similar values and keys
I am new to python (well to coding in general) and am trying to use it to analyze some data at work. I have a file like this:
HWI-ST591_0064:5:1101:1228:2111#0/1 + 7included 11 A>G - -
...
0
votes
3answers
138 views
I don't even know what infile > outfile means. How am I supposed to use it?
I don't know how to use Python, and I'm trying to use a script on a document. I have no idea how to tell it do this!
If I just run the script, this is the message I get:
Use: C:\Python27\hun2html.py ...
0
votes
2answers
91 views
XML clean up using PHP
I have dirty .out file which I'm converting to xml.
I am cleaning it using php and then converting. I have this problem. All URLs are encoded and i need it to be in normal decoded format.
<article ...
0
votes
1answer
196 views
how to get mysql OUTFILE on to client machine when querying remote DB server
How to get the outfile onto client system when querying remote database server when a statement like "select * from sometable into outfile 'c:/somefile.txt' " is executed. Is there another command for ...
0
votes
1answer
51 views
Selecting a whole database over an individual table to output to file
Ok Im having trouble finding out how to select a full database for backup as an *.sql file rather than only an individual table.
On the localhost I have several databases with one named "foo" and it ...
0
votes
2answers
629 views
How do I export a large table into 50 smaller csv files of 100,000 records each
I am trying to export one field from a very large table - containing 5,000,000 records, for example - into a csv list - but not all together, rather, 100,000 records into each .csv file created - ...
0
votes
1answer
222 views
Mysql through PHP gives a “Can't create/write to file” error
The full error is:
Message: Mysqli statement execute
error : Can't create/write to file
'/var/www/zendApp/backup/mysql/1268733580_name.sql'
(Errcode: 13)
I have tried several things ...
0
votes
2answers
241 views
How to store output of a stored procedure on to disk
We are using SQL Server 2005.
I want to create the file of the output of the stored procedure.
-4
votes
1answer
209 views
how do i do this C++ program? [closed]
I know how to get Char from a file, but this one is confusing.
it wants me to get numbers:
here's what i have to do:
i have to take these numbers from a file:
12345 30 2
11335 46 1
44444 40 5
15897 ...