Questions tagged [dump]

Recording the contents of memory after application or operating system failure, or by operator request, in a core dump for use in subsequent problem analysis. Also, recording a file or medium as a backup.

1607 questions
0
votes
1 answer

parse a dump file like xml file as array

What I have : I have a software dump data like exactly below file : DMPDATA = { ["invent1"] = { ["1000:1"] = { ["I"] = "6948", ["C"] = 1, ["G2"] = "0", ["G3"] = "0", ["G1"] =…
Root
  • 2,269
  • 5
  • 29
  • 58
0
votes
2 answers

Cannot json dump a python dictionary with id key

json.dump({'id' : '3'}) File "/Library/Python/2.7/site-packages/simplejson/__init__.py", line 354, in dumps return _default_encoder.encode(obj) File "/Library/Python/2.7/site-packages/simplejson/encoder.py", line 262, in encode chunks =…
Robin D.
  • 41
  • 1
  • 3
0
votes
1 answer

change phpMyAdmin Dump Generation Time timezone

when i use the phpmyadmin to dump a mysql database. The commentline generation time is very helpful. However, how can i change it to my current timezone instead of UTC +00:00. -- phpMyAdmin SQL Dump -- version 3.4.10.1 --…
0
votes
1 answer

MySQL Join to show all rows

I have two MySQL tables with the following structure: TABLE `orders` order_id order_date product_id TABLE `products` product_id product_name product_price product_type I want to show all rows from table orders and if there is a product_id in…
NVG
  • 3,248
  • 10
  • 40
  • 60
0
votes
1 answer

svnrdump hits a svn precommit hook - how can I resolve

My company is merging a number of svn repositories. With svn 1.7 we're using "svnrdump dump --incremental --revision START:STOP SOURCE_URL > patch.dump" to download the contents of the old repository. And "svnrdump load NEW_URL < patch.dump" to…
Shane Gannon
  • 6,770
  • 7
  • 41
  • 64
0
votes
1 answer

Reeding BLOB values from Wikipedia dump file

I have downloaded a wikipedia dump file and transferred its data to MySQL. SELECT page_id, BINARY CONVERT(page_restrictions USING utf8) from page I used following query to convert page_restrictions field from blob to string. I also tried to use…
Handsome Nerd
  • 17,114
  • 22
  • 95
  • 173
0
votes
3 answers

Var_dump output

I've converted this array from stdclass object. I'm using var_dump to print the output of an array which is something like this: array (size=1) 'fruits' => array (size=2) 0 => object(stdClass)[2] public 'name' =>…
user2509780
  • 121
  • 2
  • 9
0
votes
0 answers

Unusual Constraint error while Importing Oracle 9i database into Oracle 11g

I am carrying out an import of an Oracle 9i Database into Oracle 11g.This is a routine operation that I carry out all the time and the import always terminates successfully without warnings. In my last operation, I encountered an unusual error…
0
votes
2 answers

php sql, regex digit comma digit

Ive got an sql dump and wanna loop through the rows then change, delete and insert specific field(s) in each row. Now I need to replace all occurrences of the sql ',' that starts and ends each fields value. I only need help for my last problem. I…
Jakob
  • 13
  • 3
0
votes
1 answer

PHP: appending data to an array inside a class results in an empty array dump from outside the class

I'm trying to append some data to an array declared inside a class by using a function local to that class, but a dump from the outside, after the append, is reporting an empty array: Checking... array(0) { } Here is the code: …
0
votes
1 answer

Export .sql dump

I have to make a dump file with the extension .sql, what is the correct way to do this? I am using Oracle database Express Edition 10g. Would this work fine if I enter it in the cmd? expdp system/system_password full=Y EXCLUDE=SCHEMA:\"LIKE…
arbast
  • 145
  • 7
0
votes
2 answers

Repeated querys to a db with JDBC or dump data to ArrayList and iterate over list whenever I want some data?

I am working on a trade's appointments agenda. The question is that what is better. When application initialize, dump data from database to an ArrayList and iterate over ArrayList whenever that I want appointments of a day OR execute one query…
Iker Ocio Zuazo
  • 331
  • 4
  • 13
0
votes
1 answer

How to get the output of the Freebase topic API from offline dumps

How can we obtain the output of the Freebase topic api (used like this from the web api) from offline dumps of the id: /m/09937 ? Actually, I would like to obtain similar (if not the same) output without querying the web.
Knight
  • 223
  • 2
  • 10
0
votes
1 answer

Can't figure out this segfault

Trying to issue an execve() syscall in Linux to touch a file called "Everything is OK" Here's the stack: 0xffffd33c: 0x6e69622f 0x756f742f 0x45006863 0x79726576 0xffffd34c: 0x6e696874 0x73692067 0x004b4f20 0x00000000 0xffffd35c: 0xf7ff000a …
gal
  • 486
  • 5
  • 17
0
votes
2 answers

Find the content of java.exe process apart from the HeapDump and ThreadDump

I have a java program in which i do quite more number of operations on an object of a class. The Object is created inside a for loop which runs a finite number of time. Once the loop is completed, i call System.gc() to clear the used space in Heap.…
Santron Manibharathi
  • 628
  • 5
  • 12
  • 26