Questions tagged [data-loss]

177 questions
2
votes
1 answer

node js how do you prevent data corruption when two users are editing the same file?

Im using a node.JS server for a test project im working on that involves a user connecting to the site via an app on their phone, and based on the URL used, will add that data to a doccument for access at a later time (not particualrly important as…
user2620255
  • 137
  • 1
  • 6
2
votes
1 answer

Files saved in /Documents are being lost after a short period of time

I've got an app which saves images (JPEGs) and text files in the app's documents directory. I have tested it in the xcode simulator and on two iPhones (4 and 5, running ios 7.1 and 8.1 respectively), and it works exactly as expected, and the data is…
2
votes
1 answer

How to avoid warnings about possible loss of data?

There is quite old code that I got, where exist such days delay calculation: #define _SECOND ((ULONGLONG) 10000000) #define _MINUTE (60 * _SECOND) #define _HOUR (60 * _MINUTE) #define _DAY (24 * _HOUR) FILETIME…
Arkady
  • 1,830
  • 2
  • 20
  • 42
2
votes
1 answer

Google Cloud SQL data loss

I have recently started using google cloud sql as the backend for an api. Today whilst adding a new IP to the access control the DB went down. I restarted it after a while and when it came back up several tables of data had been lost. I have it set…
DevMoss
  • 21
  • 1
2
votes
3 answers

C: socket connection and data loss

I have a client and a server that communicate via sockets. I set them up like this: sockfd = socket(AF_INET, SOCK_STREAM, 0); ... The client contacts the server and the server sends a response (in my test case 2906 byte): n = write(newsockfd,…
user2504694
  • 43
  • 1
  • 6
2
votes
2 answers

One of my table are suddenly gone, how do I trace this?

So I just noticed one of my table have been dropped/deleted, I am using MySQL anyway I can trace or see logs of this? I have no idea where to start look.
John
  • 2,512
  • 8
  • 33
  • 62
2
votes
2 answers

Losing data with jQuery.data()

I'm working on a utility web app that to help manipulate some domain-specific XML data. The flow goes like this: Load XML file Parse XML file using the browser's native XML objects (not jQuery!) and convert into JavaScript object. Store resulting…
Daniel Schaffer
  • 52,912
  • 28
  • 108
  • 161
2
votes
4 answers

Data loss even if remote socket is gracefully closed in java

I am using TCP in my application. I am facing data loss issue if even if close socket gracefully. Here is the two sample program to replicate scenario. //TCP Sender program continuously sends data public class TCPClient { public static void…
2
votes
1 answer

TClientDataSet.Cancel Loses TDBMemo Values

I have a form with the following controls: TDBEdit, TDBMemo, TDataSource, TClientDataSet If the user edits the fields and then clicks a button on the form that simply calls the MyCDS.Cancel method (to cancel the edits), the TDBEdit fields revert to…
James L.
  • 8,959
  • 3
  • 34
  • 74
1
vote
2 answers

Why does all data go away when restarting Neo4j?

I don't understand this paradigm I guess? For a small single server or development environment... I hate having to load 100's of thousands of records just to analyze it in a graph... am I missing the big picture here? UPDATE (3/21/2012 10:38a): My…
Joshua F. Rountree
  • 1,362
  • 2
  • 13
  • 27
1
vote
3 answers

Salesforce data loss prevention - can I embed JS on standard salesforce pages?

I'm looking into possible ways to control and monitor data leaving our Salesforce Org. Currently solutions appear to fall into two broad categories: Lock down features for users using profiles. E.g. Prevent certain kinds of users from having…
Ray
  • 3,188
  • 8
  • 23
  • 27
1
vote
1 answer

PHP and SOAP data loss when sending to client

I have an array of data that I want to send to a SOAP client. It all works, but one piece of data isn't transmitted, as revealed by __getLastRequest(). Here's my code array( "dateTime" …
Shmoyko
  • 59
  • 1
  • 3
1
vote
2 answers

event SOCKET_DATA does not receive all messages in AS3

My AS3 client program does not receive all the data that was sent to it when sending a lot of messages. I do know its not my server causing this problem because all the messages are received and send correctly. My as3 client just does not receive…
inControl
  • 1,875
  • 3
  • 18
  • 33
1
vote
2 answers

C# Sql Data not saving

I have a few tables in a c# application I'm currently working on and for 4/5 of the tables everything saves perfectly fine no issues. For the 5th table everything seems good until I reload the program again (without modifying the code or working…
Brandon
  • 1,197
  • 1
  • 9
  • 16
1
vote
2 answers

Flash losing variables on hide

I have a flash file in a div. This div is set to visible (display:block;). The div has two sister divs. All three divs are controlled by custom built jQuery tabs, so when another tab is clicked, the currently visible div turns display:none;. When…
rickyduck
  • 3,790
  • 13
  • 55
  • 90
1 2
3
11 12