Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
609 views

Change Journal for Blocks in Windows(NTFS)

I have written a backup tool that is able to backup files and images of volumes for Windows. To detect which files have changed I use the Windows Change Journal. I already use the shadow copy ...
4
votes
2answers
497 views

Where can I find “C/C++ Users Journal” code archive?

The articles can be found from Dr. Dobb's web site, but I can't find the links to the source code anywhere. I'm looking at this article in particular (http://www.drdobbs.com/cpp/184403758). Googling ...
4
votes
3answers
799 views

Shred: Doesn't work on Journaled FS?

Shred documentation says shred is "not guaranteed to be effective" (See bottom). So if I shred a document on my Ext3 filesystem or on a Raid, what happens? Do I shred part of the file? Does it ...
3
votes
4answers
216 views

how can I collapse all entries older than 3 months in my emacs org-mode journal file?

I have a large journal file with date entries like this: [2011-06-23 Thu] some text [2011-06-22 Wed] some more text [... 12MB of text later ...] [2000-01-01 Sat] first entry I would like to ...
3
votes
1answer
127 views

WPF FrameworkPropertyMetaData Journal — What is the point of this?

Basically, just as the title asks: What is the point of the Journal property? MSDN doesn't really explain it's actual usefulness.
2
votes
1answer
140 views

Need help using NtCreateFile() to open by fileIndex

I have written a program that queries the change journal records and lists them. The change journal returns: 1) filereferencenumber( combination of fileindex.high and fileindex.low) 2) ...
1
vote
0answers
52 views

How do you guarantee atomicity in transactions and consistency in a filesystem with agressive hard drive caching and reordering?

Todays hard drives are using more and more aggressive caching with reordering and are sometimes even completely ignoring cache flushes to boost performance values. Is it possible to guarantee ...
1
vote
1answer
104 views

Importing data from Exchange/Outlook Journal

We have users that have custom forms that store data in their Outlook Journal. We need to get at that data to report on it and combine with other reports, but so far I haven't found many good ...
1
vote
0answers
52 views

How to print HFS journal info

I am trying to print HFS journal info. I am able to print successfully the journal header. but unable to print the block_list(journal Buffer). Any help would be appreciated .......
1
vote
2answers
722 views

How to create a sidebar with latex?

I need to make a journal, and I want to have a "recommended books" on the side of the page within the last page of the journal, but I couldn't find anything that would give me this result. I'm already ...
1
vote
2answers
70 views

How to monitor screen updates?

I am trying to write a program that monitors when the screen has been redrawn. Meaning if any part of any window is redrawn, then the program is notified. As far as I understand I should use a ...
0
votes
0answers
25 views

Suggestions for a computer graphics journal to read and submit to [closed]

I would like to research the topic computer graphics. Could you please introduce a good place to help me write good articles?
0
votes
0answers
8 views

Looking for a meta academic search engine with an API

Per the title, I'm looking for something, preferably free but for a fee if it has more appropriate breadth, that covers many journals and sites like PubMed, can search by topic, and has an API that's ...
0
votes
1answer
51 views

How can i journal all my tables's schema in db2 iseries as/400?

I have created using system i navigator a jounral called abc in schema called TEST.Now i want to journal all the tables in my schema called mySchema how can i do that.I can only journal only one ...
0
votes
1answer
61 views

Opening a sqlite3 DB on a read-only filesystem with a -journal file

I've got a sqlite3 DB that I need to read (not write) sitting on a read-only filesystem. There is also a -journal file associated with the database, which is interfering with opening the database ...
0
votes
0answers
38 views

Sqlite Database Browser crahses - how to restore the DB with journal file

I worked on my sqlite Database with the program "SQlite Database Browser". The program crashed and I lost my changes. But the db-journal file is still there. How can I recover the database with the ...
0
votes
1answer
100 views

Is there any way to turn off sqlite journaling

Is there any way to turn off sqlite journaling I tried: PRAGMA journal_mode = OFF; when I ran: PRAGMA journal_mode; It returned nothing. And it still created journal file when I delete ...
0
votes
1answer
19 views

Research journals and conferences in XML related technologies

I am looking for research journals and conferences in XML related technologies. I have done some research in Binary XML and plan to publish it in any conference. This is my first attempt in the ...
0
votes
0answers
30 views

Change Journal Operations in java

is there any way to monitor the USN Change Journal Operations in java ? or is there any library to do so. or any cross platform script Thanks in advance.
0
votes
1answer
131 views

axapta 2009 finish journal

i need to insert a finish journal to a workorder by x++. how to set the dimensions, first of all location correctly? finish journal and referring line is created, but location isn't set, so booking ...
0
votes
0answers
66 views

Binary File Store getting Corrupted

We have a C# Application, and this C# application runs as a Windows Service, And it exposes WCF endpoints to be able to communicate with itself. We use Binary Deserialization to store the data, and ...
0
votes
0answers
39 views

Newscoop don´t upload images separate per directory

I´m using newscoop cms on a journal website. The problem is this cms save all images on the same directory, and with just 2 month of production, the website is with 10.000 images and counting... Ext3 ...
0
votes
0answers
50 views

Extract entries from a text file into different parts or files

In a text (RTF) ocument I keep a journal. Entries are separated by days, although I sometimes write very often and at other times not so often. The journal is a continuous document where each entry ...
0
votes
1answer
86 views

Journal in Outlook not calculating minutes for emails

I have a question about the Journal in Outlook 2010. Why Journal does not calculate my time spent on emails? I always have "0 hours" by every email. This is odd for me, because I would expect that ...
0
votes
2answers
246 views

how to purge journal queue in c#?

i am getting the purge to work on a queue but not on its journal any idea why? MessageQueue oque1 = new MessageQueue(Qname); oque1.UseJournalQueue = true; oque1.Purge();
0
votes
3answers
522 views

Looking for Object-Oriented Programming journal

I'm looking for a journal which discusses OOP and modern programming technologies. Can anyone recommend any?
-2
votes
1answer
42 views

JDBC SQLite journal file never commits

I have a Java-written server which uses a connection using JDBC with SQLite which is set in auto commit mode. However all the queries end up generating a journal file and when the server restarts, the ...