Export command to back up data

Dear All
I am developing a system for a store system, and I want to use the export command to let the user back up the data , but I have those four questions:-
1. Is using the export command a good practice for doing the back up process?
2. At what time in the day the customer should do the back up for his system?
3. let say he will do the back up at the end of each working day , then could he only back up the new data that have not been backed up before, or he always should back up all the data in the database regardless if this data were backed up before.
4. And if the user do a back up for his work at the end of each day then what will happen if the system crashed during a working day, will he lose the data that have been updated and not backed up before?

An export backs up the data, not the database. That's the fundamental difference between a 'logical' and a 'physical' export. Instead of copying files (from disk to disk or disk to tape), you are selecting out the data that has been previously inserted into the database.
There's nothing wrong with that as such, but it doesn't scale: selecting out 100 million rows is going to take about 100 times as long as selection out just 1 million. That's why you heard that export was OK as a backup mechanism for small databases: for large databases, it's a non-starter, simply because it would take days to select all the data out (and even longer to insert it all back again). On the other hand, physical backups do scale to a certain extent, because a lot of data files are mostly empty space for a lot of the time. So a 100GB database could probably be storing 1 million rows or 10 million rows or even (at a pinch) 100 million rows: data files don't grow every time you insert a new row, in other words. So almost regardless of how much data you are storing in the database, the time taken to back it up isn't going to vary that much. (There will be periodic points, of course, where you fill all available space and make the database jump in size by an increment... but between two of those points, you can keep piling the records in and the database size won't change).
So that's one thing: export doesn't scale.
Second big thing is that once you start dealing with rows of data, you've completely lost the ability to recover things using Oracle's entirely physical recovery mechanism. That is, with a physical backup of a datafile made on Sunday night, and a record of all the changes done to data on Monday, Tuesday and Wednesday (called redo), if I lose a datafile on Thursday morning, I can restore that one file from Sunday's backup, replay all the data changes in the redo stream and get my entire database back up and running exactly at the point it had gotten to when the datafile was damaged. That's called a complete recovery and it is such a reliable and robust mechanism that you are guaranteed not to lose any committed data using it: you get everything back (so long as you keep all your redo since your last backup).
But that guarantee only applies when you are taking physical copies of data files and storing redo in physical redo logs. If, instead, you are storing rows of data in export dump files, then that mechanism doesn't apply to you at all.
So, if you export a big table on Sunday, do lots of transactions to it on Monday, Tuesday and Wednesday, and then accidentally drop or damage the table on Thursday, the best you can do is import the table from Sunday's export... and that is it. You cannot apply the Monday, Tuesday and Wednesday redo to that restored table data. You cannot roll the table forward in time. Therefore, you lose all the committed data that was entered into that table on those three days.
Export is, in other words, a snapshot technology: you have replicas of your data as they were at some point in the past. You can always "restore" that snapshot, but that is as good as the recovery gets.
That's a big issue. It means that if you care about your data at all, or at least value it enough not to want to lose any of it, you cannot rely on export as a way of backing it up. If export is your only backup mechanism, you will lose data. That's a promise, incidentally: it absolutely will happen one day. It's not a 'maybe', just a question of time.
If you only did physical file copies, though, you would not lose data (again, always assuming you look after that stream of redo).
On the other hand, there are times when you positively want to extract data out of one database and re-insert it into another -such as when you decide your database was created using the wrong block size, for example. In those circumstances, physical backups don't help (because they simply copy the 'wrong' block size around the place). But an export does exactly what's required: separating the data from the physical files its normally stored in, and so is very handy for that sort of situation. Similarly, if I need to preserve one table for audit purposes, copying the entire 16GB data file in which it's 1000 records are stored is not a very efficient way of doing that! The fact that export works on an object-by-object basis, rather than a file-by-file one, means it's perfect for that sort of data extraction job.
Think of export, therefore, more as a system utility that happens to involve copying data. Yes, a copy can come in handy when disaster strikes and all else fails, but that's not its principle purpose. It might be sufficient functionality to provide the level of data protection you need, but it doesn't and cannot provide complete data protection, because it lacks that essential 'roll-forwardability' that physical backups (datafile copies) have.

Similar Messages

  • TM backup: can I use two drives to back up data on two other drives?

    Hi to all!
    I have with me a 1 TB/ Thunderbolt EHD [external hard drive], a Lacie 2 TB/FW, EHD, a Seagate 2 TB/ 2 USB, EHD, a Seagate 3 TB/ 2 USB, EHD and [to be purchased] a Seagate 2 TB/ 2 USB, EHD.
    I mainly use my Mac for making HD videos using FCPX.
    I am planning to use these drives in the following manner as indicated by the table below:
    Drive:
    a
    1 TB,
    Thunderbolt,
    Buffalo
    b
    2 TB/ FW
    LaCie
    c
    2 TB/ 2 usb
    Seagate
    d
    3 TB/ 2 usb
    Seagate
    e
    2 TB/ 2 usb
    Seagate backup
    [to be purchased]
    f
    500 GB, internal
    Macintosh HD
    Partitions
    1
    1
    1
    2
    1
    USAGE:
    editing videos, one
    active project at a time
    mainly for camera
    archives, music files,
    FCP events, projects
    and exported movies
    same as the LaCie,
    as a backup of data
    intend to have 2
    partitions of 1.5 TB each;
    one partition for personal
    data and the other partition
    to back up data on the
    Thunderbolt [current project]
    intend to use this for
    TM back up of my
    Mac's internal HD
    applications, documents etc.
    backed up by:
    one partition of 'd'
    by the 2 TB Seagate
    backup 'e'
    I would like to know whether I could do these things:
    Can I use the TM backup feature in this manner of using 2 separate drive/partition [e/d] to back up data on 2 other drives [f and a]?
    Further, I am manually copying files from 'b' drive to 'c' drive; without incurring further expense, can I ensure that whatever I write onto the LaCie [b] gets copied to the 'c' drive automatically?
    Any thoughts, suggestions and instructions in these matters are welcome.

    EXT. DRIVES:
    a
    1 TB
    Thunderbolt
    b
    2 TB/FW
    [LaCie]
    c
    2 TB/ USB
    [Seagate]
    d
    3 TB/USB
    [Seagate]
    e
    2 TB/USB
    [Seagate]
    USAGE:
    scratch disk
    [planning to have
    only one active
    project at a time]
    camera footage
    FCPX events, projects
    and completed movies
    Same as the LaCie,
    as it's backup
    To be used as TM
    backup for my Mac's
    internal and also to
    the scratch disk.
    Planning to have it in
    2 partitions: to have
    a 'secondary' copy of
    my Mac's IHD on one
    partition and to have
    personal 'net retrievable'
    data on the other partition.
    'MY
    OBSERVATIONS'
    my projects are usually
    less than 10 minutes
    and hence I trust that
    work would be fast and in
    case of drive failure, I
    would be losing only
    one project.
    I am importing camera footage
    primarily into this drive and
    being FW, data transfer is
    fast.
    Am manually copying
    files from the LaCie
    onto this.
    This drive is not a
    brand new one, but
    has been given to me
    by the company's
    agent as a replacement
    to my earlier 2 TB drive
    which had failed.Hope
    this also will not fail!
    Because of the 'uncertain'
    performance of the
    3 TB Seagate, I intend
    to have a copy of my
    Mac's IHD in one
    partition. I intend to place only
    such data upon the other
    partition that I will not be
    greatly affected should the
    drive fail.
    If you can analyse this plan and give your insight upon this matter, I will be immensely happy.
    Further, if this proposed use of the 3 TB Seagate is okay with you, I need to know how to remove the Thunderbolt from doing it's temporary role of TM backup and how to coronate the 3TB Seagate as its successor.
    FYI, I would be switching off TM from functioning whenever I am editing video; I would be switching it on only after a full editing session.
    Another question on my mind is this: do I need to partition the drive 'e' at all?
    Message was edited by: somanna

  • How do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full

    how do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full.. HELP!

    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.

  • I'm trying to retrieve contacts from iCloud on my new samsung but it says that there is no back up data in my account

    I'm trying to retrieve contacts from iCloud on my new samsung but it says that there is no back up data in my account

    If your contacts are on icloud.com, download them as a vCard as explained here: iCloud: Export contact information as a vCard.  Then import them to your phone as explained in your manual.  If you aren't able to, you can create a Gmail account and import the vCard to Gmail as explained here: https://support.google.com/mail/answer/183711?hl=en, then add the Gmail account to your phone and sync your contacts from Gmail.
    If they aren't on icloud.com, I'm not sure how you would access them from a backup on a Samsung, even if there was a backup.

  • Export to PDF - Can a single report (rpt file) create multiple PDF files using the export command?

    Post Author: markeyjd2
    CA Forum: Exporting
    Greetings forum members,
    My question is, in its entirety: Can a single report (rpt file) create multiple PDF files using the export command, ideally one PDF file per DB record?
    In my case; I have a Crystal Report that reads data from a DB table containing ~ 500 records.  When I export the report to a PDF file, I get one PDF file, with ~ 500 pages.
    What I would like to do is export the report to ~ 500 individual PDF files; One file per DB record.  The file names would be based on the table's primary key.
    Is this possible?

    Post Author: Micha
    CA Forum: Exporting
    Hi,
    you need some lines of code, but its easy. Dependend on how to start the generation of your 500 PDFs, you can write an ASP page and start it via Web Browser, or a Windows Script and start it via scheduled job...
    Here's an abstract of the ASP code I use:
    First, you create a recordset (here: "rsc") which gives you the list of ID fields you want to export, then you create CrystalRuntime.Application object, then you loop through the recordset, open your report (here: "oRpt") and set login info. Then set the selectionformula, so that the report displays only the data of the current ID, e.g.:
      oRpt.RecordSelectionFormula = "(" & oRpt.RecordSelectionFormula & ") AND {myTab.myVal}=" & rsc("myVal")
    Then you export the report, move to the next record in recordset, and repeat the loop until recordset.EOF. Then you close recordset and connection.
    Micha

  • I loaded my ipad photos from camera and all the pictures sorted by date.  Next, I did a sync with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files?

    I loaded my ipad photos from camera and all the pictures sorted by date.  I later sync my ipad with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files other than reloading all of them from camera?

    What version of iPhoto?
    Select one and rotate it. Then rotate it back. Does that make it appear? 
    A much better work flow is the keep the photos after importing.  Check the success the import, wait for at least one successful backup cycle then use you camera's format command to reformat the card
    LN

  • Exporting whole database (10GB) using Data Pump export utility

    Hi,
    I have a requirement that we have to export the whole database (10GB) using Data Pump export utility because it is not possible to send the 10GB dump in a CD/DVD to the system vendor of our application (to analyze few issues we have).
    Now when i checked online full export is available but not able to understand how it works, as we never used this data pump utility, we use normal export method. Also, will data pump reduce the size of the dump file so it can fit in a DVD or can we use Parallel Full DB export utility to split the files and include them in a DVD, is it possible.
    Please correct me if i am wrong and kindly help.
    Thanks for your help in advance.

    You need to create a directory object.
    sqlplus user/password
    create directory foo as '/path_here';
    grant all on directory foo to public;
    exit;
    then run you expdp command.
    Data Pump can compress the dumpfile if you are on 11.1 and have the appropriate options. The reason for saying filesize is to limit the size of the dumpfile. If you have 10G and are not compressing and the total dumpfiles are 10G, then by specifying 600MB, you will just have 10G/600MB = 17 dumpfiles that are 600MB. You will have to send them 17 cds. (probably a few more if dumpfiles don't get filled up 100% due to parallel.
    Data Pump dumpfiles are written by the server, not the client, so the dumpfiles don't get created in the directory where the job is run.
    Dean

  • Can i export without double quotes in data files?

    How can i export without double quotes in data files using dataexport commands in MaxL?

    I don't know of any way to do any formatting in a straight export out of Essbase.  BSO lets you choose between a columnar vs. free form (really Essbase) format.  That lack of formatting includes removing double quotes.
    If you're willing to put up with the limitations (and formatting issues) of an MDX extract to a log file, that approach does not put double quotes around member names.  The same is true in Report Scripts although I have a vague recollection that you can put in double quotes if you want it -- obviously you do not.
    There are limitations to the above two approaches, the biggest being that they they are not as efficient as a true MaxL export.  OTOH, you may want only part of a database to get exported out in which case either approach may be more to your needs.
    If in fact you do want to do a full export, there are lots of OS-level ways of removing double quotes.  Here's a Windows-based approach:
    Removing double quotes in a batch program in Windows 2003 - Stack Overflow
    What would life be without hacks like the above?  Probably not worth living. 
    Regards,
    Cameron Lackpour

  • Export Web Application [EXPORT] Command in WAD

    HI Gurus,
    Here is a strange problem. I would like a real solution because I've read just about any documentation there is out there. So, thanks for thoughtful answers in advance.
    We created a custom template ZZANALYSIS_PATTERN off of SAP delivered standard 0ANALYSIS_PATTERN. We have also created a copy of 0ANALYSIS_PATTERN_EXPORT to ZZANALYSIS_PATTERN_EXPORT template in order to modify the look and feel of how reports look once exported to MS Excel.
    Here is the problem. When specifying parameters for Export command, we put ZZANALYSIS_PATTERN_EXPORT in the Internal Display -> Web Template section which forces it to go to that new custom template once user clicks on Export to Excel button vs going through a standard 0ANALYSIS_PATTERN_EXPORT template. The problem is that once that setting is specified when we test an extra pop-up window shows up when clickin on Export to Excel button - http://server/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher. That window is confusing to the users and it never closes, just blank window stays. Now, if we go back to Export command parameters in WAD and reset/leave the Default parameter setting for Internal Display section, no extra pop-up is showed and the user just gets open Excel file little window, which is what we need. So, that makes me wonder if there is some kind of backend config table where this Default setting could be changed from 0ANALYSIS_PATTERN_EXPORT to ZZANALYSIS_PATTERN_EXPORT, or maybe it is something in the BEx Web Analyzer iView in the portal.
    Thanks for your help.
    Andrei

    Hi Marcio,
    I have done this before long time ago. Yes there is no specific web item available to export as .txt ot TAB delimited file. But, it is possible from hard coding the HTML script in WAD to achieve it.

  • Export oracle database schema without data

    Hi All,
    cany any one tell me how to export oracle database schema without data using exp command not datapump command.

    step 1
    type exp help=y
    step 2
    read the output
    step 3 now run exp ... rows=n
    Life can be so easy when you aren't lazy. You don't waste time asking to be spoon fed by others if you can do something yourself in 2 seconds.
    Sybrand Bakker
    Senior Oracle DBA

  • HT1766 Is there way of accessing your back up data without the use of an i-phone?

    Is there a way of accessing your back up data from the computor without the use of an i-phone?

    If it wasnt activated prior icloud wont help now. Did you ever use the save and print option to "send it itunes"?  I did that all the time prior to icloud to back up my docs. Then you can "copy from itunes" in the new document dialog.
    I still recommend doing the export to iTunes to create a local back up copy on ocassion.
    For future reference, To activate icloud for documents, go into the main settings app, tap icloud, then documents and data, and turn it on. Then go to the app (maybe numbers) further down the main settings list, tap it and turn on "use icloud".
    Jason

  • Get export of cpce schema without data

    exp system/***** file=cpceschema.dmp log=cpceschema.log rows=n full=n owner=cpce
    Is this the right command, for getting export of cpce schema without data, i took export and Export terminated successfully with warnings, need suggestions.

    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    Export done in WE8ISO8859P15 character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    Note: table data (rows) will not be exported
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user CPCE
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user CPCE
    About to export CPCE's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export CPCE's tables via Conventional Path ...
    . . exporting table COLLECTEDDATA
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table CONFIGURATION
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table DCCONTEXT
    . . exporting table DCPLAN
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table EQUIPMENT
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table FDCCONTEXT
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table GPCDATA
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table INDICATOR
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table JOBS_TBL
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table MAINTENANCEERROR
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table MAINTENANCELOG
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table MESCONTEXT
    . . exporting table MODULE
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table PARTITIONMETHOD1
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table PARTITIONMETHOD2
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table RECIPE
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table REQUESTS_TBL
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table STRATEGY
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table TREATEDDATA
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table VARIABLE
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully with warnings.

  • Exporting photos with full meta data

    Hi all, I'm trying to export some pics. I'm exporting them to a folder on my desktop, after the export I go to any of the pics and click CDM+I to check the info on the pics and it is showing the pic as having been created now, not when it taken. I would like to be able to keep the original data on the pic. What an I doing wrong ? I've tried several ways under file-export but always lose the date and time when the pic was taken, all other camera info is intact.. Thanks for any help.
    Randy

    Hard to recall when I last so so much incorrect material in a single post. It's quite obvious that you have little understanding of how digital photography works, the relationship between photos, files, Exif and IPTC metadata and how a Photo Manager works. Indeed, you seem clueless as to how the forum works too.
    There is no bug in iPhoto. Yes you do get out what you originally put in, plus whatever you added.
    First misunderstanding: A File is not a Photo. A file is a collection of data. The file has a creation date, a file has modification date. Neither of these things necessarily reflect the date of the Photograph. Simple example: When you copy a file from a camera to your computer a +new file is made+. That's a simle fact. One file cannot be both on your camera and your computer.
    To overcome this difficultly Exif metadata was created. This is part of the Photo. It records - along with a lot of other data - the date and time the Photo was taken. As you copy files this data is copied and so, even though the dates on the file may change the dates on the photo doesn't.
    Exif is standard metadata supported by every camera manufacturer, every computer OS and any significant photo applications out there. Perhaps you should read up a little on it. It might help clear up your thinking.
    Also an export might appear to fail when 90% done due to a volume error.
    A volume error has nothing to do with Metadata, nothing to do with where you imported files from, nor indeed where the files are stored. This is utter twaddle. It's a bit like saying "If the children are in the back seat, the front wheel might fall off your car". Rubbish.
    The Folder Structure of the Library - or indeed the one the files are imported from - matters not a single whit. A photo app gets +no information whatever+ about a photo from the folder it is in. Nothing. Zilch. Nada.
    Now as well as not understanding much about Photos, files and metadata, you demonstrate that you are equally clueless about iPhoto.
    . You will see two folders named Originals and Modified and if you want to just bail on iPhoto and possibly retain some organization of your photos, you can just drag these out of the iPhoto library to your hard drive
    Now there's an excellent way to lose lots and lots of metadata. For a start you lose any metadata you've added in iPhoto - titles, descriptions, keywords. The only way to get this data is to export from iPhoto. Really, there is never a need to enter the library in this way. What you suggests causes data loss and you might take the time to warn folks: "Oh by the way, doing what I suggest will cause dataloss."
    The error people keep getting... is likely because the export combines all your photos into one folder,
    Export will not do this +unless you tell it to+
    and most people have multiple duplicate file names like 1.jpg or family.jpg etc.
    Most people?
    so iPhoto can't complete an export of "originals" and your only other likely option is to do an export in numeric sequence, which will likely lose all the original file names.
    A really basic misunderstanding. This is a (very sensible) limitation of the Finder You can't have two files of the same name in one folder. One will overwrite the other and so you lose data. If you ask iPhoto to export two files of the same name to a single folder it won't do it as the second would overwrite the first. You wouldn't want that would you? So, your "bug" is a simple and sensible precaution against dataloss.
    There are several possible naming schemes within iPhoto to avoid this problem, but the easiest is the one is sequential. Why? Because you can choose your Prefix. So, if you have two files called "Family" then you can give them the Prefix family and export sequentially. Result: two files called Family1 and Family2.
    But all this can be avoided simply by not exporting into one large folder. If, instead, you export Event by Event (something that can be done manually, or automated with Automator or with a free 3rd party app) then the problem doesn't arise at all.
    This IS a bug in iPhoto IMHO and there should have been a warning that you could lose all your original organization when doing a destructive "Import" and a warning that you will become locked into iPhoto without making tedious exports and renaming.
    So, no bug, no need of a warning, no lock into iPhoto.
    The problem with ignorance, as someone once said, is that it gains confidence as it goes along. And so, to your misunderstanding of how this forum works.
    What these cryptic mods
    Cryptic? Mods? No one posting here is a Moderator. We're all just iPhoto users. This is explained clearly in the Terms of Use you agreed to when you signed up to the forum. Read them sometime.
    ...is that your original photo metadata is still in the photo,
    Oh but it is... see that whole Exif metadata thing above...
    you need some third party program to read it.
    No. For a start, on your Mac, iPhoto and Preview will read it. Whatever software came with your camera will read it.
    Apple made NEW file dates when it imported them.
    Yes. But as explained above, the photo date is not the fie date.
    Regards
    TD

  • ESSCMD "export" command

    While using the ESSCMD "export" command with the option of All data (option: 1) and a .txt file as the output, is it necessary that the .txt file created be greater than the .pag file for that particular database ?

    Necessary, no -- but I've never seen it smaller. The size of the text files vary a lot, but are usually within the ballpark of 3 times the compressed page file. This assumes of couse that you aren't doing a column export (which takes even more). In fact, I've seen them orders of magnitude larger than the page file.-Doug

  • How do I use Display Dialog to get back a date?

    Can anyone tell me how to use Display Dialog to get back a date?
    I am using the following code that does not work. It does not accept anything.  And I have searched high and low for an answer to my question and found nothing.
    repeat
           display dialog "When should I remind you (date)?" default answer ""
           try
                 if the text returned of the result is not "" then
                        set the requested_text to the date returned of the result as date
                        exit repeat
                end if
           on error
               beep
    end try
    endrepeat
    display dialog requested_text
    The code is based on what I found in AppleScript 1-2-3 (page 300). It shows examples for getting text and numbers but not one for dates.
    For what it is worth, my goal is to create a script that will convert an email from Evernote into an iCal Reminder. To do so, I want to ask the user (myself) for the reminder's date and time. I am assuming I need to ask for each separately. I also assume that once I get the date and time for the reminder, it should be relatively straightforward to 'make' a 'todo' with an alarm.
    Thanks in advance.
    -David

    Hi David,
    Try this:
    repeat
        set theCurrentDate to current date
        display dialog "When should I remind you (date)?" default answer (date string of theCurrentDate & space & time string of theCurrentDate)
        set theText to text returned of result
        try
            if theText is not "" then
                set theDate to date theText -- a date object
                exit repeat
            end if
        on error
            beep
        end try
    end repeat
    display dialog (date string of theDate & space & time string of theDate)
    You might also have a look at this page of the AppleScript Language Guide.
    Message was edited by: Pierre L.

Maybe you are looking for

  • Satellite M30X-134 - I'm looking for a new motherboard

    Hello, im looking for a new motherboard for my Satelite M30X-134! I was offered one with the Toshiba number K000019680 with the advice that this one is for all M30X notebooks. Im a little irritated, because my thoshiba trader told me, that I need one

  • Maximum Line items for Equipment BOM

    Dear Experts, Is there a limit to the number of line items of components we can have in equipment BOM. I am not able to add anything above 999. It doesnt show any error, but doesnot save any value after 999. Please let me if there is a work around. T

  • Disappearing items with new update

    i updated to the most recent version of muse and was asked by a client to make a slight change to their site. i checked the new version at the business catlayst address and was glad i did, as items have completely disappeared from the new version. th

  • Panning issues in Premiere CC

    Something is wrong with the audio panning feature in Premiere pro CC: I've been panning my audio clips to the left and right for about a year now. never had a problem before today. On the sequence time line: Select the audio clip in A1 in the "Audio

  • Management Tools on Windows for X2200 and X6220

    Hi I am totally new to Sun Systems so please forgive my ignorence. i am much more used to HP servers but we have completely moved away from them to Sun in a Data Centre. The servers were installed by a third party company and they have been left in a