Questions tagged [data-loss]
202 questions
-1
votes
1 answer
Entity Framework Core, DB First. Beginner questions about losing data accidentally
I haven't written a single line with EF Core yet but I have been reading tutorials and trying to get a grasp of the concept first. I have not been abl to find any answers to these questions regarding losing data accidentally:
Using Database First,…

hk1980
- 95
- 1
- 7
-1
votes
1 answer
Array loses data after for loop
I have the following code:
cin >> r >> c;
char map[c][r];
for(int i = 0; i < r; i++)
{
string line;
cin >> line;
for (int j = 0; j < c; ++j) {
map[j][i] = line[j];
}
}
int n;
cin >> n;
//cout << "first " << endl <<…

Sofus Øvretveit
- 323
- 1
- 3
- 10
-1
votes
1 answer
ffmpeg png to png quality loss
I did a python script that managed to unshuffle a shuffled (png) image according to a specific pattern, that python script uses ffmpeg and does 12 encodes to unshuffling it (by cropping a specific part and pasting it over the existing picture).
As…

kilo
- 1
- 1
-2
votes
0 answers
is there anyway to make a program use it's lost TMP files?
My computer has turned off when I was using google chrome and it made my bookmarks to disappear ; there is a bookmarks.bak file in user data folder that the extension of it will be erased if this happens and you can restore your bookmarks by…

Arman.clo
- 1
- 3
-3
votes
1 answer
How to continue resizing partition after unexpected shut down manjaro
Good morning everyone, I had a BIG problem. I was resizing a partition of my computer with Manjaro KDE x64 and my PC unexpectedly shut down and I loss my partition table and my data apparently.
Partition table after shut down
The last 2 volumes…

Basura
- 1
- 2
-3
votes
1 answer
How to recover deleted partition?
I have accidently applied CLEAN command in diskpart. After that I have created new partitions and installed windows. Is there any way of recovering the lost data even after creating new partitions and installing new windows?
Please guide me. If you…

Ammar Bukhari
- 33
- 1
- 14
-4
votes
1 answer
Class function doesn't save member values
For some reason the function doesn't save member values for an array of objects except the first one. I condensed the code to highlight the nature of this problem.
classFile.cpp
myClass objectArray[10];
void myClass::Set(float x, int elementID)
{
…

michalmonday
- 441
- 5
- 11