Archiving files in database using PHP Programming Web Development by takeshi Hi.. I'am asking if you know how to code in archiving files in database.. I have a link in my webpage, and i want that if i click the link,the process of archiving files will perform..and all the records stored in database will archive or will compress .tnx in advance.. Re: Archiving part of database from VB6 Programming Software Development by Afi83 Thanks for really useful backup proc. But what about archiving part of database in another file. Re: Archiving current project Programming Software Development by Reverend Jim …(1) file = formatPrefix() + folder + ".zip" print() print("archiving folder:",folder) print(" as:",file) print() f… Outlook 2003 unknown error whilst archiving Hardware and Software Microsoft Windows by Coul … explains i've got a problem with archiving in Outlook 2003. I've been archiving the same way for months and its… it comes up with the following message: "Error while archiving foloder "Inbox" in store "Mailbox - Archive Manager… problems archiving in outlook 2003 Hardware and Software Microsoft Windows by thebourke … recently being upgraded to outllook 2003.Howver im having problems archiving.Ive created a new pst to archive to.It shows… up on the status bar that it seems to be archiving to this pst but when i go into this pst… Re: explanation about archiving email in outlook express Hardware and Software Microsoft Windows by Wazzza95 …]sir, can anybody tell me .what is the uses of archiving in outlook express.Kindly let me know the idea.any… in a similar way, but I'd turn off automatic archiving, and run it manually every six months or so. Just… Best archiving tool Hardware and Software Microsoft Windows by cancer10 Can someone please suggest me which is the best archiving tool I can use, which will support almost all type of compressed file? I used winrar from rarlab.com but Its quite buggy. It generates a CRC error after a couple of months when I try to unzip the same compressed file. please suggest me one.... Thanx outlook 2003 archiving problem Hardware and Software Microsoft Windows by LaKN Hello. I am having a problem with Outlook 2003's archiving funktion. What I wan't to do, is to be … Re: outlook 2003 archiving problem Hardware and Software Microsoft Windows by iamthwee do a google search for archiving. There are so many examples out there ya know. Outlook 2003 - Archiving Hardware and Software Microsoft Windows by Scooby1928 …, but after entering the appropriate settings, Outlook says it's archiving in the bottom right corner, creates a PST file, but… Need Help Archiving/Categorizing Old Projects Community Center by mantis350 … to answer. I have recently been put in charge of archiving and categorizing our old development projects. We have completed many… explanation about archiving email in outlook express Hardware and Software Microsoft Windows by firoz.raj sir, can anybody tell me .what is the uses of archiving in outlook express.Kindly let me know the idea.any help would be highly appreciated. New staff computers... recommendations for hard drive archiving? Hardware and Software Microsoft Windows by ilyons … best practices/recommendations as for how I could go about archiving (using minimal space) the usable information from these older hard… Best method for archiving MYSQL table data? Programming Databases by staticwave …/contests the company runs online. The client wants to begin archiving the registration data monthly, but still have the data accessible… Archiving part of database from VB6 Programming Software Development by Afi83 Hi there I have a database in access for using from VB6. In my access file I use many relationships. I use something for doing back up of my database frequently for preventing data loss. Every year many data added to this database (app50000). For maintaining the program at the best performance I want to archive the older data. What I have to … Re: Archiving part of database from VB6 Programming Software Development by debasisdas Try this sample code for taking backup and restore of access database [code=vb] Dim DBTempSource As Database Dim DBTempDestination As Database Dim RecTempSource As Recordset Dim RecTempDestination As Recordset Sub MBackup() Set FSO = CreateObject("Scripting.FileSystemObject") On Error GoTo Errors If OptBackup Then TxtRemarks = &… Re: Archiving part of database from VB6 Programming Software Development by omoridi you can copy all of the database in some folder like 2005,2006,2007,2008 and remove old value in current database. after that in ur program write choose cycle and show the folders was u created. Archiving a table as a CSV file within the same database Programming Web Development by CutRobot Hopefully someone can help me out with a bit of a quandry. I am writing up PHP for a registration system which will be reused on an annual basis. I want to take the entries in a number of tables and archive them before clearing the tables to be used with the new year's data. I can grab the data from the tables and create a CSV string from the… Re: Archiving a table as a CSV file within the same database Programming Web Development by sudeepjd Do you intend to back the data up to a file or to another table? Inserting data into a table does not create a file. If you want to create a file you can use the PHP file functions [iCODE]$handle = fopen("backup.txt", "w");[/iCODE] and then write to the file. If you want the archive database to be searchable later just use … Archiving with Constant Contact Community Center by art_wired Hi everyone, I have a client that has requested for me to make it so that their newsletters; created through the Constant Contact mailing service, will be automatically sent to and stored on the archive page section of their website. They would also like for these archives to be down-loadable for print. Has anyone had any experience with this? … Re: Archiving with Constant Contact Community Center by AndreRet No, its not a stupid question, I just think it is in the wrong forum. Your responses will be much less than for instance under the web dev forums.:) I have already requested the mods to have a look and maybe move it to where you will get more exposure/answers. Re: Archiving with Constant Contact Community Center by peter_budo I move it here from web services since it had nothing to do with it, based on scarce information provided. Till the time OP provide more info there is no point moving around again. archiving using stored procedure Programming Software Development by kapojian hi, im not that good in sql and i dont know how to make a stored procedure. in my windows form, i need to archive two table from my database but only those inactive user will be archived. if user is not updating his profile for a month.... e.g TABLE1 username(PK) | pasword| date | kapojian | 12345 | aug,4 2011 TABLE2 username(… Re: archiving using stored procedure Programming Software Development by kvprajapati >can someone show a sample code? . Show us your code work please? >is there better way to archive records rather than stored procedure??? Nope! >I dont know how to make a stored procedure. Buy a good book and learn something useful. Archiving current project Programming Software Development by pROKO I'm quite new to .net so would appreciate your help. My project is nearing completion and I would like to save my work prior to making changes each day, should something go wrong. Eventually I would like to end up with a series of archived projects so that I could revert back to the last one if need be. How would I do this? Or is there some … Re: Archiving current project Programming Software Development by pROKO [QUOTE=pROKO;1700351]I'm quite new to .net so would appreciate your help. My project is nearing completion and I would like to save my work prior to making changes each day, should something go wrong. Eventually I would like to end up with a series of archived projects so that I could revert back to the last one if need be. How would I do … Archiving Journals Programming Web Development by omoayan Hi, I am trying to build an archive for a website that will be publishing journals. However, I am having challenges building the archive where past journals will be stored and retrieved for future references and reading. My major challenge is how to retrieve the datetime from the DB and display it by year first and when a particular year is … Re: Archiving Journals Programming Web Development by diafol AN easy way to do this is to either store dates as unix date format or unix timestamp. If the former: Assume the date field is called 'dated': SELECT YEAR(`dated`) AS yr, MONTH(`dated`) AS mn, COUNT(`dated`) AS tot FROM `articles` GROUP BY yr, mn ORDER BY yr DESC,mn DESC That will give you a basic list of published articles by year and … Re: Archiving Journals Programming Web Development by omoayan Thanks diafol. I have tried to do this but what I actually desire to do is to have just one year description like 2012 and when it is clicked we see the months and we can then pick with months the publications for each month. Thanks and I am still open for further suggestions. Archiving small amounts of data--what's good? What about M-disc? Hardware and Software by Jane Curtis Currently have relatively small amount of data to archive. Any opinions? Has anyone used M-disc? All suggestions welcome Want a technology that will still be around in at least 50 years. And one that won't degrade. Thanks! Jane