Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
361 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 ...
3
votes
2answers
124 views

In C++, I want to make a loop that constantly checks the size of a file and do something if the size changes

I'm trying to make a program that will constantly check the size of a file and if the size of the file changes, make the program do something. The file is an html file so another method could be to ...
3
votes
9answers
2k views

Is there an easy way to sort an array of char*'s ? C++

I've got an array of char*'s in a file. The co. I work for stores data in flat files.. Sometimes the data is sorted, but sometimes it's not. I'd like to sort the data in the files. Now I could ...
2
votes
3answers
192 views

changing a program in c, so it takes an optional command line argument *infile*

Now I do have a hw question for everyone...I've been staring at this for a couple of days kind of tinkering and playing around but even with that I end up with a load of errors... What I'm trying to ...
2
votes
8answers
7k views

Using SAS Macro to pipe a list of filenames from a Windows directory

I am trying to amend the macro below to accept a macro parameter as the 'location' argument for a dir command. However I cannot get it to resolve correctly due to the nested quotes issue. Using ...
1
vote
2answers
60 views

dealing with missing values input file

I need to input a database with delimiter dlm="*" like this: Abatucci Pierre*Derniers rayons*1200*1*55*84*5 Abatucci Pierre*L'entrée au château*1000*1*75*91 and it works fine like this: Data ...
1
vote
1answer
126 views

Input LOG file information into MySQL using Python

I need to take a linux log file and enter the data into a mysql table, and separate each field into columns. I have been trying to use the LOAD DATA INFILE command. Only problem is, the data is not ...
1
vote
2answers
985 views

Mysql - LOAD DATA INFILE Error Code : 13

Can anyone please shed some light to my problem. I did searched in google and still cant sort it out. In my remote mysql, when I try to execute this query, I am getting the Mysql Error Code : 13. ...
1
vote
2answers
526 views

SAS - Reading a File Backwards?

I need SAS to read many large log files, which are set up to have the most recent activities at the bottom. All I need is the most recent time a particular activity occurred, and I was wondering if ...
0
votes
1answer
24 views

avoid skipping lines after missing values

while input procedure with 7 variables like this Infile "C:\Users\Gila\Desktop\StatOrdinL2020\artiste1.txt" dlm="*" DSD; LENGTH Artiste $ 25 titre $30; Input Artiste $ Titre Prix Deces Hauteur ...
0
votes
1answer
84 views

Is there anyway to use MySQL's LOAD XML LOCAL INFILE

with this type of XML format? <details> <detail> <name>Woofer Size</name> <value>12"</value> </detail> <detail> <name>Woofer ...
0
votes
3answers
118 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
3answers
47 views

How do I load a local .SQL file into MySQL?

I have a 56mb file on my web server, and I would like to (I think) use INFILE to load a filename.SQL file into mysql. I don't really want to upload it because that will just take too long, but I ...
0
votes
0answers
76 views

Problem with load data infile (file with 255 byte long character string)

I am trying to store category information for users in a category field of varchar(255). Since each user can be in one of 2000 categories. Varchar 255 seemed like a good option. I encoded the category ...
0
votes
1answer
54 views

replace when using enable-local-infile

I have the following line in a shell script: /usr/bin/mysql --enable-local-infile --host=localhost --password=pass --user=db db < file.sql At the moment it adds new lines if a key is matching. I ...
0
votes
2answers
129 views

load data infile problem

I need my program to have two enclosed characters. My strings in my file can be enclosed by either single quotes or double quotes. How may I manage that?
0
votes
2answers
323 views

Storing data into a 2-dimensional array from an infile

I have a fairly simple issue that's been driving me crazy. Below is a method which is supposed to read an infile and store the data into a 2d array. I keep getting compiler errors for the ...
0
votes
1answer
617 views

LOAD DATA INFILE select columns

I have a text file that has all it's columns separated by \t (tab). There are 34 columns in total, but I only need to read and insert the first two columns, namely ID and name. The table structure is ...
0
votes
1answer
311 views

SAS: What are the difference between “data files” and “raw data files”?

So, according to SAS books, you do: PROC IMPORT DATAFILE="filename" | TABLE="tablename" OUT=SAS-data-set <DBMS=identifier><REPLACE>; for data files, and you use INFILE to read raw data ...
0
votes
2answers
405 views

LOAD DATA INFILE not working with FIELDS TERMINATED BY

I'm using the sql below in a php script: $sql1 = "LOAD DATA LOCAL INFILE 'test1.csv' INTO TABLE number1 (order_num,pname)"; $sql2 = "LOAD DATA LOCAL INFILE 'test1.csv' INTO TABLE number1 ...
-4
votes
1answer
198 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 ...