Questions tagged [data-files]
209 questions
0
votes
1 answer
Output info from 2 struct arrays into one file
I apologize if this doesn't make sense. I Am not sure what to google.
Lets say I have two arrays
string a_1[16];
string a_2[20];
I need to output these to a file with a function, first, a_1[0] to a_1[n].
Then reads in the a_2's.
It's also possible…

David Walker
- 41
- 1
- 7
0
votes
0 answers
cx_freeze to access .json files
I have created an application for windows using pythons cx_freeze module. The application runs the openpyxl module which runs fine for the script but when frozen it fails to find the .constants.json files. The following error is…

CBell
- 1
- 2
0
votes
1 answer
Best practice in choosing the drives for data and log files while installing sql server in prod environment?
I need to install a SQL server for prod environment. There are only two drives in the system one drive with 120 GB and another with 50 GB. How to choose the drives to keep the user defined db data and log files and temp db files.

sowjanya
- 17
- 4
0
votes
1 answer
Cannot Figure out the error with my code(Qbasic 64bit)
I am learning to program in Basic as course in my high school. I have learned some C++ before programming started in school. I was writing a TELEPHONE DIRECTORY program that WRITES to or READS FROM the "Records.dat" File.
When I run the program, and…

user5458726
- 11
- 1
0
votes
1 answer
C++ reading certain lines from output file
I am making a program for class that needs to read certain lines from an output file based on what "data set" a person chooses. For example, if a person inputs "1" for the desired data set, I need it to use lines 1 through 8 of the data file…

Sosa
- 37
- 6
0
votes
0 answers
Django Pip install: place data_files in project root directory without using absolute path
I want to install data_files (in this case just one html file) into a project's root directory. I can do it if I set the path absolute like 'user/documents/app', but I need the data files to be installable wherever the person installing the app…

Michael Sebastian
- 785
- 3
- 15
- 33
0
votes
1 answer
Objc-DataFile-Unreadable Substring-Unknown to any encoding
I have a DataFile, built by subsidiairy Application. I need to locate some substring contained in the data file. They are identifiable by the character symbols delimiting them. For instance : *!substringqSxt .The substring will vary from a project…

user306147
- 27
- 1
- 6
0
votes
1 answer
How to extract specific lines from a huge data file?
I have a very large data file, about 32GB. The file is made up of about 130k lines, each of which mainly contains numbers, but also has few characters.
The task I need to perform is very clear: I have to extract 20 lines and write them to a new text…

Luca
- 57
- 1
- 10
0
votes
1 answer
Resize datafile oracle using execute immediate
I need resize this datafile '+GMPDATDESA01/prod/datafile/apps_ts_tx_idx.269.878649919', why this simple procedure is wrong?.
Other options, plis?
SQL> begin
2 execute immediate 'alter database datafile…

Sandy Ramirez
- 1
- 1
0
votes
1 answer
Working with multiple columns from a data file
I have a file in which I need to use the first column. The remaining columns need to be integrated with respect to the first. Lets say my file looks like this:
100 1.0 1.1 1.2 1.3 0.9
110 1.8 1.9 2.0 2.1 2.2
120 1.8 1.9 2.0 2.1 2.2
130 2.0 2.1 2.3…

skitt1z1
- 85
- 1
- 2
- 7
0
votes
1 answer
2D Array in Java with Data Files
Could anyone help me rewrite this code using a 2D array to loop through and display the choices?
The following is a quiz-type game.
I have a text file with this data that is read by the program,
So first the question, then the 4 answer choices, then…

NotToBrag
- 655
- 1
- 16
- 36
0
votes
1 answer
make a data file of google drive account using google drive api
I'am want to get all of my data in google drive into file (xml or json it's not so
matter).
the regular way to do it is like this:
Drive service = new Drive(somedata);
String fileName = service.get(fileId).execute().getTitle();
to get the file id,…

divelner
- 244
- 1
- 2
- 10
0
votes
0 answers
how to locate the datafile path on a particular server (with 2 instances) for a particular instance?
I am running Oracle 11g on Windows 7 machine. I have a server (suppose hostname:xyzabc2129) with 2 instances on it, one is called obcd_dev and other is called obcd_prod. I have created a tablespace and eventually a table and uploaded the data on the…

bigZbuzzzinga
- 17
- 1
- 5
0
votes
0 answers
Oracle datafile: access contents accessing only file system
I'm trying to read and explore some data from a server I can't totally recover, I have full access to the filesystem (I have the harddisk, it's an easy scenario where the server has a single disk but I don't have the hardware to startup that machine…

noone1
- 171
- 1
- 9
0
votes
1 answer
Is it safe to add a datafile to a tablespace which is being used by a index which is currently in the process of creation?
The situation is that I ran a create index query on a table (index type ctxsys.context) about 36 hours ago. The tablespace it refers to has 128gb allocated (4x32gb datafiles). As per latest situation the index is still in progress of being built…

Ali K
- 3
- 1