Questions tagged [data-loss]
202 questions
4
votes
2 answers
SerialPort received data lost at high baudrates when stream contains 0x1A
I am implementing a C# application which reads binary data from a microcontroller at a high baudrate (8 MegaBaud) using an USB-Serial adapter (FTDI FT232H). The problem is when the stream contains 0x1A, sometimes a big chunk of data (thousands of…

nnn
- 3,980
- 1
- 13
- 17
4
votes
1 answer
git (sourcetree) go back to commit that has not been pushed and was 'reversed' accidentally
I'm still quite new to git revisioning and maybe just lost plenty of work (but I hope there is a way to go back, that's why I'm asking here).
I use SourceTree on OsX for git revisioning.
I didn't commit for quite a long while and now just wanted to…

matthias_buehlmann
- 4,641
- 6
- 34
- 76
4
votes
1 answer
Avoiding data loss: suggested reading
I am about to work on an app which handles extremely valuable data. Any loss of this data for the user would be very costly, so I'm interested in finding out more about the best architecture design for our needs.
The user will be inputting this data…

deepseadiving
- 763
- 5
- 18
3
votes
1 answer
json_decode data loss
I have a JSON string (external file) which has an element which can either have FALSE or TRUE as a value. In the file, the true or false IS there. However, after I use json_decode on it, the true or false is lost. Why?
The JSON is valid, it is made…

axiomer
- 2,088
- 1
- 17
- 26
3
votes
1 answer
JSF PrimeFaces lose data and session
I am developing an application with JSF and PrimeFaces.
I have a managed been, session scoped, that has username, password and isUserLoggedIn.
When I process a login component it works and changes my page accordingly. As soon as I move to another…

Viola
- 113
- 4
- 13
3
votes
0 answers
Visual Studio database project publish fails with "data loss might occur" although all rows have NULL in that column
I guess this is an old issue, but does anyone know if it is fixed or addressed by Microsoft.
I have a database project in Visual Studio (.sql) and I want to drop a column when publishing it.
The error is:
RAISERROR (N'Rows were detected. The schema…

user736570
- 469
- 4
- 15
3
votes
0 answers
The type 'System.Void' may not be used as a type argument! Error occurs
I am getting weird error on c# winforms. I summarize the problem step by step.
I have 1 model (public class)
I have a winform that includes a datagridtable and this is binded to model.
Winfom.cs is opened.
Close the visual studio and reopen.
I am…

Xazar Cengiz
- 31
- 6
3
votes
1 answer
Compensating for missing jpeg bytes
I am making a program for a micro-controller connected to a radio that has to send bytes of a JPEG image to a computer. I want to know if there is a way to compensate for a situation where some bytes of the JPEG are lost. As it is now, if even 1…

Grimmer
- 45
- 3
3
votes
0 answers
Best way to detect a "data loss" publish action when calling SSDT's SQLPackage.exe
When calling SQLPackage.exe (syntax described here) with publish action /a:Publish, there are cases when data loss occurs and the execution will be halted; this is specified by setting the parameter /p:BlockOnDataLoss (default to be 'true').
I need…

Nam G VU
- 33,193
- 69
- 233
- 372
3
votes
1 answer
printk data loss and truncation
I am using printk in my kernel loadable module to log parameters of system calls. For each system call, several printks are used to print the variables whey they appear with "\t" as delimiters. To redirect the data in the kernel log buffer to…

user1718039
- 41
- 2
3
votes
2 answers
Coping with data loss for RTSP via UDP
I am receiving RTPs via UDP (video data).
The RTPs are holding H264 that I need to decode. Unfortunately, most of the RTPs hold fragmented data. As RTP sequences are missing, I cannot reconstruct the H264 properly.
Any idea on how to reduce data…

Display Name
- 349
- 2
- 10
- 19
3
votes
1 answer
Using "ndb --initial" causes data loss on MySQL Cluster?
I have a MySQL cluster with 1 management node, 2 data nodes and 2 mysql nodes.
I shutdown the cluster and then started it with the '--initial' flag on both the management node and the data nodes just to notice a little later that '--initial' does a…

Cleber Goncalves
- 1,936
- 3
- 18
- 23
2
votes
2 answers
SSIS: SQL 2008 R2 to MySQL data loss
I have an SSIS package set up to export data from a SQL Server 2008 R2 table to a MySQL version of that table. The package executes however, I am getting about 1% of the rows failing to be exported.
My source connection uses the SQL…

user1025443
- 21
- 2
2
votes
0 answers
DMA data loss when changing PWM frequency during the DMA reading
First time working with DMA here and I'm getting data loss when the frequency of a PWM signal is varied during the DMA reading. The DMA request is triggered by a 16MHz clock. I'm using DMA2 on STM32f429zi.
The DMA direction is peripheral to memory,…

linda123
- 21
- 2
2
votes
0 answers
Mongo aggregate query results in less document with sorting
I have faced a weird issue while querying one of our collections and aggregating the result out to another collection. I am querying unique users who have done some action and projecting the count of action performed per user in the aggregation…

Naman
- 27,789
- 26
- 218
- 353