Tagged Questions
The datafile tag has no wiki summary.
3
votes
2answers
1k views
Deleted some Oracle DBF files by mistake - how can I tell Oracle XE to forget about them?
So I accidently deleted some DBF files (only ones specfic to my tablespaces), fortunately I was only just about to start loading data in so have lost nothing, except now can't re-create the ...
2
votes
2answers
193 views
How can I load an object into a variable name that I specify from an R data file?
When you save a variable in an R data file using save, it is saved under whatever name it had in the session that saved it. When I later go to load it from another session, it is loaded with the same ...
1
vote
0answers
49 views
Simplified/automated datafile free disk space reclaim
On Oracle version 11g:
After Googling, I can't find a simple way to reclaim free space after deleting a table.
I've found a lot of explanations, telling how the datafile becomes fragmented, the big ...
1
vote
2answers
156 views
What kind of data does apple use on GLPaint example?
Few months ago i made an app based on apple GLPaint.
It works great.
I have recorded sets of points that draw simple drawings on the screen. and saved them as array of points (converted to NSValue).
...
1
vote
3answers
350 views
How to purge the Database data and log files in MySQL?
I want to purge the ibdata1, ib_logfile0 and ib_logfile1 files in MySQL. Because these files are taking too much space of my C:\ disk. And I don't want to move these files anywhere else in the Hard ...
1
vote
1answer
92 views
Map element position in data file to class property
I need to read/write files, following a format provided by a third party specification. The specification itself is pretty simple: it says the position and the size of the data that will be saved in ...
1
vote
4answers
201 views
How do executables on Linux know where to get data files?
Programs on Linux install data for programs into $PREFIX/share/programname, how does the program know where that is, does it need to be compiled in?
Would it be suitable to assume that the binary is ...
0
votes
1answer
164 views
oracle datafile autoextend
Is there a way to ask oracle to autoextend a tablespace datafile when the size hits a defined threshold? If my datafile size is 1G, and autoextend is enabled, can I start growing the file when the ...
0
votes
2answers
460 views
Can oracle tablesspaces automatically add smallfile datafiles?
Using oracle managed files I can create my tablesapce like this:
CREATE TABLESPACE users;
It will autoextend but as I understand it smallfile datafiles have a maximum size. So I then need to do:
...
0
votes
2answers
225 views
how to set the location for data file when using cobertura maven plugin
i am using cobertura maven plugin 2.4. I dont see any option to set the location to store the datafile (cobertura.ser) to a particular folder.
Please help
0
votes
1answer
18 views
Data files when using intepreted languages
Say I have some data which I want several kinds of. I think the easiest example could be tiles in a game: I would have grass, rock, tree, etc. each with different sets of values.
I would immediately ...
0
votes
1answer
226 views
How to write a ANSI C user-defined function that returns a specific line from a text file?
How to write a ANSI C user-defined function that returns a specific line from a text file?
char * ReadFromFile(const char * fileName, int line)
{
//..........
}
0
votes
2answers
152 views
.dat file, when created using Matlab, not opening
I am creating a .dat file with headers and data in Matlab like this:
%# Define the name of the file where data is to be written
dataName = 'sampledata_models_poro_reference_truth';
%# open the file
...
0
votes
3answers
128 views
Autoextend on chunks informix
Does anyone know if Informix has the same capability as Oracle with respect to the autoextend feature. With Oracle I can create a datafile and by using the autoextend feature Oracle will automatically ...
0
votes
3answers
182 views
how do I mark a file as a data file in a visual studio 2010 vsto clickonce application?
I'm making a Word 2007 add-in with C# 4.0 in Visual Studio 2010. I need an Access 2007 database (a .accdb file) to be placed in the data directory by the clickonce installer. Unfortunately, the file ...
0
votes
1answer
185 views
Using VB6 to search for existence of DataFile in Outlook
I am wanting to write an Add-In for Outlook 2003 which, when Outlook is opened, search for the existence of a datafile called DMSDataStore and if it doesn't exist will install the datafile. I have ...
-1
votes
1answer
157 views
Adding a datafile in an optional download group for ClickOnce
From the VS UI it seems I cannot assign datafiles to a download group.
If I change this to 'Include', the datafile gets installed to the app directory and not the data directory.
Is this possible at ...