|
There's related thread on how to handle archiving . I'm asking on how to find the requirements in a company on the way archiving should be done, and also the requirements that need to be fullfilled so that archiving is actually done instead of just backups...
Started by Server Horror on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I use Global Relay for communications archiving, because they ....
In the archiving and backup business so they've got to have some info and guidelines that should of #1
3) The easiest ways are to use known 3rd parties for archiving.
|
|
I have a large Windows file server with about 2TB of data, about half of that is over 2 years old (based on modification date). What would be the best way of archiving off that old data, using scripts or whatever, but without spending big money on a full...
Started by 20th Century Boy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Rsync will check which files have been modified since the last time they were backed up and ... .
Even if the server is Windows (which mine are) you can backup with a Linux computer or even use a Windows version of Rsync .
I do all of my backups with Rsync.
|
|
I am familiar with archiving messages on the client side to .pst's... Are there good methods of archiving messages from multiple mailboxes on the server side?
Started by James Moore on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
GFI MailArchiver is a 3rd party tool will focus on easing archiving....
The whole process is detailed here.
I use it for archiving of old users, moving users between servers and backup of important users the archiving (Thanks MS).
Handy.
|
Ask your Facebook Friends
|
Is there a neat archiving library that automatically handles archiving a folder or directories for you out there? I am using Jython, so Java libs are also open for use. -UPDATE- Also Im looking for timestamp archiving. ie
archive-dir/2008/11/16/zipfilebypreference...
Started by Setori on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use java.util.zip, when I was using Jython the built in zip library in python didn't work
You have either the:
gzip library used here in a Jython servlet:
import javax.servlet.http.HttpServlet import cStringIO import gzip import string def compressBuf... .
|
|
Hey, I'm looking for an archiving library that functions like GNU's tar, but without any dependencies. I need some sort of archiving format to manage resources in my game engine and am still iffy about rolling my own.
Started by Orm on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Files? If yes I don't understand what's wrong with tar?
If you mean for your data structures (I see the question is tagged as C++) then try boost::serialization
Take a look at the BSD libarchive .
You mean for..
|
|
I use exchange for my emails on which I think I am running low on space. Yesterday Outlook prompted me about archiving email to reduce the size of my Inbox. What does archiving emails actually do and will the emails that are archived get removed from ...
Started by Connor W on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Archiving moves emails.
Outlook will prompt you to do this whether or not you are low on space .
Archiving in Outlook basically means that all e-mails matching the criteria for AutoArchiving.
|
|
What should I do about archiving Exchange mailboxes? People in the company are complaining of slow performance with their Outlook - these people have mailboxes over 5GB...
I want to know what is best practice for archiving old mail that is being used ...
Started by The Woo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
I don't like them archiving to their local drive because I think of local archiving feature if you....
I like my users to use auto-archiving, placing the archive files in their home folder on the server.
Access or activesync.
|
|
We're looking into a solution to do email archiving and near-line backup of our Exchange Server 2007 environment.
We currently have about 200 mailboxes and the Mailstore is approx 150 GB. We need to be able to archive email for several years for legal...
Started by BillN on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at serverfault):
Firstly, one can always look at better mailbox management have received it have no grounds for... .
There's a comparative review here of ten email archiving products which might give archiving products for a number of reasons.
It and Mimosa.
|
|
Following situation:
I have an instance of my NSObject sublcassed object. One of it's properties is a NSImage . After instanciating the object I convert it with NSKeyedArchiver to data, send it over the network, unarchive it with NSKeyedUnarchiver and...
Started by papr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is that NSImage is archiving the static bitmap of one frame only and discarding the original content.
|
|
I've implemented an save on applicationWillTerminate and load on applicationWillFinishLoading. There is a complete object tree, all implement the NSCoding protocol and I've check the types I enter.
One of the classes also stores an NSMutableData to the...
Started by Ger Teunis on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For....
To clarify - what do you do with the bools and int? Can you post some code?
For the bool and int, there are two methods: encodeBool:forKey: and encodeInt:forKey: (taken from the NSKeyedArchiver reference ) .
Sorry, cannot comment with my reputation.
|