Commit issued , but physical file date modified still

Hi,
i have update a record and commit
i am still see all the files in my db with the same modified date like before the update
if i shutdown the db , everything get updated
how is that , i ithink Redo logs should be written immediately after commit , otherwise an electricity outage will make this committed transaction lost
thanks

Hi Anand,
but when i commit ,
no file have been change , even the redo log date modified is still the same. so where oracle writes the data....
or it writes in redo log file and for some reason , redolog file date modified don't change??!!!!!

Similar Messages

  • Detection Method of Date Modified fails due to copied files date modified change

    I've been working through an issue for some time now and I think it's a bug with SCCM 2012 SP1. I've built literally 50 deployments in "Application Management" in SCCM 2012, but I've been chasing my tail on a few of them throwing the
    "succeeded but couldn't detect" error. The few that have given me problems are all copying text files and then detect the modified date to verify that the file is there. All worked when I initially built them in Windows 8 but are now failing
    randomly...even on a machine where they previously worked and I deleted the files to test the deployment again. 
    What I'm doing:
    My java deployment requires policies which we control with the Deployment.config, deployment.properties and java.policy files. A simple script creates the directories and copies the files. I then create a deployment type for this "ConfigFileCopy.cmd"
    and create a detection rule for each file that I am moving over. The detection rule looks for a "date modified" date between the beginning and end of the date for the day I modified the file. This allows me to modify the files to change our
    java policies and then redeploy them with the "new" modified date as the detection rule, which forces the update.
    The problem:
    When I first created my deployment, everything worked pretty well. The files copy out and the script runs successfully. There were some minor tweaks I need to make to my scripts, so I did and then updated the content for the deployment type. I believe this
    is where things go a little wonky. At this point, my deployment starts failing with the "0x87D00324" error.
    Looking through the logs, everything looks good. The reason configuration manager is failing on detecting the modified date for those files, as it turns out, is because the modified dates don't meet the criteria. So that part is properly failing the detection.
    The problem is that the modified dates are correct on the server but not the client. Looking in c:\windows\ccmcache, I can see multiple folders....presumably one for each version of the application that I updated. Looking at any of the newer content folders
    for this app, the modified dates are the date and time the file was copied out to the workstation, which is incorrect as the file hasn't been modified during that process.
    The odd part, is that this doesn't happen EVERY time on EVERY machine. My primary desktop is windows 8.1 and received the files correctly and installed without issue. My test win 8.1 laptop initially received them correctly, but then as I refined the scripts
    it began picking up the wrong modified dates and started failing.
    I found a similar issue to this existed in SCCM 2007 (http://support.microsoft.com/kb/2276865) so I suspect that this is truly just a bug that hasn't been addressed (or maybe is fixed in R2). Unfortunately
    we have business reasons we can't upgrade to R2 at this time so I'm hoping someone has experienced this and has some sort of work around that might get me by for now. If someone can confirm it is fixed in R2, that would help my case to upgrade as well.  
    I can work around the issue by changing my logic to detect any date greater than a specific date. But I shouldn't have to do that and I'm concerned there are scenarios I haven't thought of that will cause unexpected behavior or failures with that.
     

    This outlines the behavior. It's apparently by design. 
    "SCCM has a habit of changing the ‘Date Modified’ timestamp of all files it delivers when it detects an ‘upgrade’ of the source files for that application. It typically does not touch the timestamp
    of the source files if it delivers a brand new install to a client that has never received the software, however if a single file in the source folder is changed for that application, then SCCM tries to use a previous version of the application in the cache
    (C:\windows\ccmcache) and only downloads the new file that has change. This results in all files having their ‘Data Modified’ timestamp changing (except for the brand new file). Therefore determining if that application has delivered
    successfully using ‘Date Modified’ timestamps is not recommended. The key to seeing this process in action is looking at the file properties in the
    C:\windows\ccmcache\<sccm code> folder for that application, particularly before and after a file is updated in the original source SCCM application folder."
    http://blog.kloud.com.au/tag/sccm/

  • File date modified on imported pictures

    Hello,
    I have imported a large number of pictures into iPhoto '08 from an external hard disk. Then I have checked the content of the "Originals" folder into the iPhoto Library. Some pictures have their file date changed to the date of the importation. I am not talking about the EXIF data but the files themselves.
    All the pictures stored on my external hard disk have their file date set to the date of the shot. This is normal because I have transferred them from the camera to the disk then I have not modified them.
    Do you know why iPhoto has changed the date of some of my pictures? Everything is fine for 99% of them, it happened only on the last pictures but I have not changed the way I transfer them...
    I know that this is not a big deal because I can see the original date into iPhoto but I like to see it directly from the Finder when looking at file details.

    LarryHN wrote:
    Not weird at all - this is because when you import a photo into iPhoto it is copied into the originals folder - a new copy is "created" which of course sets that time as the "creation" time. The creation date is "when the finder created the file" - not at all weird
    I understand and it sounds logic. But why are the other 99% of my pictures unaffected then?
    Although this is probably relatively safe - I see no advantage to changing the creation date of the files since iPhoto ignores it and uses the EXIF date - and any time you make any change to any file within the iPhoto library you are risking corruption of the library
    I synchronize the "Originals" folder with a Windows PC and I browse the pictures with the file explorer on that one... in "Details" mode. So, it is nice to see at first sight in the files list when the picture has been taken.
    I know, it's not a big deal...

  • How to show time as well as date in Finder for file Date Modified

    Completely mystified... Folder is only showing the mm/dd/yy modified for any file not modified Today (which then says Today and the time).
    Why on Earth would the Date AND TIME not show for all files? I can't seem to find any option to do this. Definitely want a way to:
    o make the change globally (not folder by folder)
    o and extra credit if i can get four digit years showing too.
    Complete mystery why this isn't the default view or maybe I did something inadvertantly to make things easier for people who don't want too much information. (?)

    Try this:
    Double click the Macintosh HD on the desktop > Cmd + J > Check the buttons you want concerning the date and time > press the button Use as default. Hopefully it will rub off on all the other folders too!

  • Commas in my CSV file data

    Hi everyone,
    I am trying to create a csv file.
    One field that I am trying to out put is the description and has commas, that is throwing my columns out of sync.
    I have tries putting the charactor ' around the data but all it does is output that charactor in the data.
    my code is this
         public File createFile(Vector downloadObject){
              Iterator iterator = downloadObject.iterator();
              String query ="";
              try {
                   Format formatter2 = new SimpleDateFormat("ddMMyyyy");
                   String fileName="DELIVERY" + ".csv";
                   File file = new File(fileName);
                   StringBuffer output = new StringBuffer();
                   while (iterator.hasNext()){
                        VODownloadObject downloadObject2 = (VODownloadObject)iterator.next();
                        query =
                             "'" +
                             downloadObject2.getStrokeNumber().trim()
                             + "','"+ downloadObject2.getJdeIdNumber()
                             + "','"+ downloadObject2.getRollNumber()
                             + "','"+ downloadObject2.getSupplier()
                             + "',"+ ",'"+ downloadObject2.getQuality()
                             + "','"+ downloadObject2.getColour()
                             + "','"+ downloadObject2.getSupplierRollNumber()
                             + "',"+ ",'"+ downloadObject2.getDeliveryDate()
                             + "','"+ downloadObject2.getFabricComposition()
                             + "',"+ ","+ ",'"+ downloadObject2.getTicketLength()
                             + "','"+ downloadObject2.getTicketWidth()
                             + "',"+ ","+ ","+ ",";
                        output.append(query + "\r\n");
                   BufferedWriter out = new BufferedWriter(new FileWriter(fileName));
                   out.write(output.toString());
                   out.close();
                   return file;
              } catch (IOException e) {
                   e.printStackTrace();
                   return null;
         }the output is this.
    'PA?????T','2/664659 ','153920','Menswear Formal, Shirts ',,'null','null',' ',,'11/07/2006','null',,,'-330000',' ',
    in the "'Menswear Formal, Shirts " field, this is one field but it is splitting up into 2 fields because there is a comma after Formal. Anyone know how I can keep this as one field but with a comma in it?
    thanks in advance

    I have abandoned my last appoach altogether
    I am using com.Ostermiller.util.CSVPrinter
    here is my final working class
         public File createFile(Vector downloadObject){
              Iterator iterator = downloadObject.iterator();
              String query ="";
              try {
                   Format formatter2 = new SimpleDateFormat("ddMMyyyy");
                   String fileName="DELIVERY" + ".csv";
                   File file = new File(fileName);
                   BufferedWriter out = new BufferedWriter(new FileWriter(fileName));
                   ExcelCSVPrinter ecsvp = new ExcelCSVPrinter(
                             out
                   while (iterator.hasNext()){
                        VODownloadObject downloadObject2 = (VODownloadObject)iterator.next();
                        String quality = " ";
                        if (downloadObject2.getQuality()!=null){
                             quality = downloadObject2.getQuality().trim();
                        String colour = " ";
                        if (downloadObject2.getColour()!=null){
                             colour = downloadObject2.getColour().trim();
                        String fabricComposition = " ";
                        if (downloadObject2.getFabricComposition()!=null){
                             fabricComposition =downloadObject2.getFabricComposition().trim();
                        ecsvp.writeln(new String [] {
                                   downloadObject2.getStrokeNumber().trim(),downloadObject2.getJdeIdNumber().trim(),
                                   downloadObject2.getRollNumber(), downloadObject2.getSupplier().trim(), " " ,
                                   quality , colour , downloadObject2.getSupplierRollNumber().trim() , " ",
                                   downloadObject2.getDeliveryDate().trim(), fabricComposition , " ", " ",
                                   downloadObject2.getTicketLength(), downloadObject2.getTicketWidth().trim(),
                   out.close();
                   return file;
              } catch (IOException e) {
                   e.printStackTrace();
                   return null;
         }

  • Classpath Issue - but JAR file is in the classpath

    I'm having an issue getting a JAVA Application Client to run and would welcome any suggestions or input to resolve this problem. I'm not a developer, just the builder/deployer of the applications. There are two developers looking at this problem too, but they are stumped too.
    It complains that it can't find sun/jdbc/rowset/CachedRowSet, which is contained in the rowset.jar - which is in the classpath. I've put all the supporting information below, if you need additional information please let me know and I'll provide it.
    ***** ERRORS FROM RUNNING SCRIPT BELOW *****
    *** NOT Using Verbose: ***
    Exception in thread "main" java.lang.NoClassDefFoundError: sun/jdbc/rowset/CachedRowSet
    *** Using Verbose (only included the output with the error): ***
    [Loading superclasses of com/actuate/schemas/SubmitJobResponse]
    [Loaded java.sql.SQLException from /usr/java130/jre/lib/rt.jar]
    [Loading superclasses of java/sql/SQLException]
    [Signaling in VM: java/lang/NoClassDefFoundError, message: sun/jdbc/rowset/CachedRowSet]
    Exception in thread "main" java.lang.NoClassDefFoundError: sun/jdbc/rowset/CachedRowSet[Loaded sun.i
    o.UnknownCharacterException from /usr/java130/jre/lib/rt.jar]
    [Loading superclasses of sun/io/UnknownCharacterException]
    [Preparing sun/io/UnknownCharacterException]
    ***** SCRIPT TO RUN THE JAVA COMMAND *****
    #!/usr/bin/ksh
    LIBDIR="/actuate/Mace/lib"
    JAVA_CP=""
    MAIN_JAR="MaceEXT.jar"
    JAVA_PATH="/usr/java130/jre/bin"
    JAVA_HOME="/usr/java130/jre"
    JAVA_FULLVERSION=`$JAVA_PATH/java -fullversion`
    JAVA_EXE=${JAVA_HOME}/bin/java
    PATH=$JAVA_PATH:$PATH
    export PATH
    export JAVA_HOME
    JAVA_CP="${LIBDIR}/sljcx.jar"
    JAVA_CP="${LIBDIR}/sljc.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/rowset.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/wsdl4j.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/tt-bytecode.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/servlet.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/saaj.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/log4j-1.2.4.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/jaxrpc.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/commons-logging.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/axis.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/ivjejb35.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/j2ee.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/activation.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/mail.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/ns.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/xmlParserAPIs.jar":${JAVA_CP}
    JAVA_CP="${LIBDIR}/xercesImpl.jar":${JAVA_CP}
    JAVA_CP="$JAVA_HOME/lib/rt.jar":${JAVA_CP}
    echo ""
    echo "Classpath"
    echo $JAVA_CP
    echo ""
    echo "JAVA_Home"
    echo $JAVA_HOME
    echo ""
    echo "JAVA_EXE"
    echo $JAVA_EXE
    echo ""
    echo "JAVA_Path"
    echo $JAVA_PATH
    echo ""
    echo "JAVA FullVersion"
    echo $JAVA_FULLVERSION
    #$JAVA_EXE -cp $JAVA_CP -jar $MAIN_JAR -h dev -c adduser -u 000 -p ""
    $JAVA_EXE -verbose -cp $JAVA_CP -jar $MAIN_JAR -h dev -c adduser -u 000 -p ""
    ***** JAR -tvf OF ROWSET.JAR *****
    server105:/actuate/Mace/lib $ jar -tfv rowset.jar
    0 Tue Jun 13 19:45:42 EDT 2000 META-INF/
    66 Tue Jun 13 19:45:42 EDT 2000 META-INF/MANIFEST.MF
    0 Tue Jun 13 19:45:30 EDT 2000 sun/
    0 Tue Jun 13 19:45:30 EDT 2000 sun/jdbc/
    0 Tue Jun 13 19:45:42 EDT 2000 sun/jdbc/rowset/
    551 Tue Jun 13 19:45:30 EDT 2000 sun/jdbc/rowset/BaseRow.class
    9112 Tue Jun 13 19:45:32 EDT 2000 sun/jdbc/rowset/BaseRowSet.class
    35562 Tue Jun 13 19:45:36 EDT 2000 sun/jdbc/rowset/CachedRowSet.class
    597 Tue Jun 13 19:45:36 EDT 2000 sun/jdbc/rowset/ColInfo.class
    1290 Tue Jun 13 19:45:36 EDT 2000 sun/jdbc/rowset/InsertRow.class
    18442 Tue Jun 13 19:45:38 EDT 2000 sun/jdbc/rowset/JdbcRowSet.class
    2109 Tue Jun 13 19:45:38 EDT 2000 sun/jdbc/rowset/Row.class
    4489 Tue Jun 13 19:45:38 EDT 2000 sun/jdbc/rowset/RowSetMetaDataImpl.class
    4707 Tue Jun 13 19:45:38 EDT 2000 sun/jdbc/rowset/RowSetReaderImpl.class
    8270 Tue Jun 13 19:45:38 EDT 2000 sun/jdbc/rowset/RowSetWriterImpl.class
    4745 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SQLInputImpl.class
    3287 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SQLOutputImpl.class
    2326 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SerialArray.class
    1560 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SerialBlob.class
    1948 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SerialClob.class
    592 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SerialRef.class
    2419 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/SerialStruct.class
    1903 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/WebRowSet.class
    257 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/XmlReader.class
    15620 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/XmlReaderDocHandler.class
    2029 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/XmlReaderImpl.class
    258 Tue Jun 13 19:45:40 EDT 2000 sun/jdbc/rowset/XmlWriter.class
    9797 Tue Jun 13 19:45:42 EDT 2000 sun/jdbc/rowset/XmlWriterImpl.class
    ***** ECHO OF VARIABLES FROM SCRIPT *****
    Classpath
    /usr/java130/jre/lib/rt.jar:/actuate/Mace/lib/xercesImpl.jar:/actuate/Mace/lib/xmlParserAPIs.jar:/ac
    tuate/Mace/lib/ns.jar:/actuate/Mace/lib/mail.jar:/actuate/Mace/lib/activation.jar:/actuate/Mace/lib/
    j2ee.jar:/actuate/Mace/lib/ivjejb35.jar:/actuate/Mace/lib/axis.jar:/actuate/Mace/lib/commons-logging
    .jar:/actuate/Mace/lib/jaxrpc.jar:/actuate/Mace/lib/log4j-1.2.4.jar:/actuate/Mace/lib/saaj.jar:/actu
    ate/Mace/lib/servlet.jar:/actuate/Mace/lib/tt-bytecode.jar:/actuate/Mace/lib/wsdl4j.jar:/actuate/Mac
    e/lib/rowset.jar:/actuate/Mace/lib/sljc.jar:/actuate/Mace/lib/sljcx.jar
    JAVA_Home
    /usr/java130/jre
    JAVA_EXE
    /usr/java130/jre/bin/java
    JAVA_Path
    /usr/java130/jre/bin
    JAVA FullVersion
    java full version "J2RE 1.3.0 IBM build ca130-20020504"
    ***** DIRECTORY LISTING *****
    server105:/actuate/Mace $ ls -lat
    -rwxr-xr-x 1 actuate actuate 1673 Apr 04 09:11 go.sh
    -rw-r----- 1 actuate actuate 476699 Apr 03 12:37 MaceEXT.jar
    drwxr-xr-x 2 actuate actuate 4096 Apr 02 10:49 lib
    -rw-r----- 1 actuate actuate 1818 Mar 28 11:15 MaceConfig.xml
    server105:/actuate/Mace/lib $ ls -lat
    -rw-r----- 1 actuate actuate 32033 Apr 02 10:49 ivjejb35.jar
    -rw-r----- 1 actuate actuate 329096 Apr 02 10:49 j2ee.jar
    -rw-r----- 1 actuate actuate 374291 Apr 01 16:39 ns.jar
    -rw-r----- 1 actuate actuate 654326 Apr 01 16:31 sljc.jar
    -rw-r----- 1 actuate actuate 81987 Apr 01 16:31 sljcx.jar
    -rw-r----- 1 actuate actuate 54368 Mar 31 08:32 activation.jar
    -rw-r----- 1 actuate actuate 867459 Mar 31 08:32 axis.jar
    -rw-r----- 1 actuate actuate 24287 Mar 31 08:31 commons-logging.jar
    -rw-r----- 1 actuate actuate 32069 Mar 31 08:31 jaxrpc.jar
    -rw-r----- 1 actuate actuate 378778 Mar 31 08:31 log4j-1.2.4.jar
    -rw-r----- 1 actuate actuate 305414 Mar 31 08:31 mail.jar
    -rwxrwxrwx 1 actuate actuate 62388 Mar 31 08:31 rowset.jar
    -rw-r----- 1 actuate actuate 18468 Mar 31 08:31 saaj.jar
    -rw-r----- 1 actuate actuate 78350 Mar 31 08:31 servlet.jar
    -rw-r----- 1 actuate actuate 130773 Mar 31 08:31 tt-bytecode.jar
    -rw-r----- 1 actuate actuate 109356 Mar 31 08:31 wsdl4j.jar
    -rw-r----- 1 actuate actuate 933730 Mar 31 08:31 xercesImpl.jar
    -rw-r----- 1 actuate actuate 78440 Mar 31 08:31 xmlParserAPIs.jar

    All that script made my eyes glaze over, but it appears you are running your main class from an executable jar file. Is that correct? Executable jar files don't use the classpath. If you want them to refer to anything outside the executable jar, you have to put Class-Path entries in its manifest.

  • Date Modified STILL broken in Bridge CS6 :(

    This started in CS5 and I posted about it over a year ago. I was hopeful CS6 would resolve it but no cigar.
    See anything funny in this screen shot?
    The top Today is actually today, the second Today is yesterday, Yesterday is actually two days ago and so on. This happens on all machines in our studio. We're based in New Zealand so I suspect it's a time zone thing, but that's no excuse.
    Cheers
    Luke

    Have seen this problem a year or so ago, but can not find it now to see how it was resolved.
    I think this is a thread with the similar problem but it doesn't seem to be solved.
    http://forums.adobe.com/message/3392963#3392963
    Luke, did you file a bug report for this?

  • How to set "Date Modified" as default tab in Open File window

    Photoshop CS5.1
    When I click on Open File, the window that comes up has several default columns (FileName, Date, Size, etc).
    I can right-click on the tab bar and add "Date Modified" to the tabs, but I would like to have "Date Modified" be a default column whenever I open the file selector (and no matter which folder I open up).
    I cannot find a way to do this. I want to know the last date I modified a file, not when it was created.
    Is there a way to universally set this column as a default?

    Date modified always shows for me in Details view.
    I believe what columns are showing has to do with what columns you've set in Windows Explorer...
    Here's an excerpt paraphrased from my Configure the Windows 7 "To Work" Options book that may cover what you need:
    Open Windows Explorer...
    Navigate to a folder of the type you want to see (e.g., one containing your Photoshop images) and set Details view. 
    Make the window look the way you'd like future Explorer windows to look.  Reorganize Details view columns, e.g., to Name, Size, Type, Date Created, Date Modified, Attributes, etc. and size them so they fit.
    Choose Tools - Folder options, then click the View tab.
    Click [ Apply to Folders ] to apply the above settings to all folders.
    [ OK ] to exit.
    Hope this helps. 
    If the Date modified still doesn't stick for you, there are some other things I've done (and documented) to tweak the configuration of my systems that may help make my seeing the columns being set as shown in the attached image when I choose File - Open in Photoshop.
    -Noel

  • Date modified is incorrect on exisiting files?

    Hello all - We have a NW 6.5 SP8 server with Win7 and XP clients. All clients though report the existing shared files date modified attribute incorrectly (31/12/1984). This applies to all files - folders seem to be ok. Create a new file and it's fine. Copy and paste an existing file and the modifed date will remain the same (1984) but the created date will be the current time and date.
    I've had a good search and the small mentions of it point to it being possibly an AV or backup issue? There's no AV on the NW server (not ideal I know but it is on all the Windows servers) and I don't "think" it's anything to do with backup either (but I will check/investigate further)
    Has anyone any ideas please?
    Many thanks

    Originally Posted by HvdHeuvel
    On Tue, 14 Aug 2012 22:46:02 +0000, ataubman wrote:
    > Always an AV or backup issue, in my experience. Is there AV on the
    > clients?
    >
    > Also: has this always happened, or only since what change or update?
    The OP most likely have Windows XP Clients with A/V software installed
    (Sophos ?)
    After scanning mapped network drives from the Workstation, the dates of
    the files on the network drives have been reset to 1985.
    This problem has been introduced with an update to the A/V software that
    has invalidated the check that was in place for this in the Novell client.
    We have now made another update to the client, which can be downloaded
    from here [1] :
    Few customers have already confirmed this to be the solution to the same
    problem
    Regards
    Hans
    [1] NOVELL: Downloads - Novell Client 4.91 Post-SP5 (IR1) NWFS.SYS 3
    Thanks for this Hans, much appreciated.
    Yes - well guessed, Sophos on the clients. Mostly clients are Win7 though - is there a recommeded client for Win7 that has been customised to avoid this issue?
    If I install the client you posted on the XP machines will it rectify this issue, as in will the dates be reset with the correct data - or is that modified tag info missing for ever?
    Thank you so much for taking the time to help!
    Echo

  • Using USMT to manually backup to USBHD and Keeping File Dates

    I am currently using USMT as a method of backing up user data in a corporate environment before a migration to windows 7.  in out process we are just using the tool to perform the backup portion and calling USMT from a batch file manually.  We
    are not using the loadstate function as we like to keep the new user profiles clean and avoid loading setting that are not required, and in our batch file i have set the "/nocompress" option so scanstate.exe creates a folder structure inthe backup
    store folder that gets created on our External usbhd's.  This process is working well for us as we can quickly see what data was backed up and only copy back the data needed.  The only issue is the files dates on all data is set to the time and date
    that scanstate.exe is run and we would like to have the dates saved with the files as using have requested this. (even a manual copy and paste will keep the date).  I have looked into the "includeAttributes" function but when i attempt to use
    this any data that would have been backed up before making the change is now skipped completely.  The documentation on the use of this function i find minimal and i also have not found much help searching message boards.  I am using MigDocs.xml,
    MigApp.xml, and a custom.xml that has some custom includes and excludes.  If someone can give me some help or point me to somewhere i can get better info with saving file dates using USMT that would be appreciated.
    thanks.

    Thank you for your reply, but I have read that thread many times as it seems to be the only one I can find that references the "includeAttributes" function. I have attempted to use the feature as described but can not get it to function. Any file
    <pattern type> listed in the <objectset> </objectset> area are skipped entirely when using it.  If I set the <includeAttributes attributes="Timefields"> back to the standard <include> the data will backup again
    but with date set to time scanstate.exe was run. I can include my custom.xml for reference.  I'm hopeing that someone can post a working example that I can reference to figure out what I'm doing wrong. 
    Thanks.
    <?xml version="1.0" encoding="UTF-8"?>
    <migration urlid="test">
      <library prefix="MigSysHelper">MigSys.dll</library>
        <_locDefinition>
            <_locDefault _loc="locNone"/>
            <_locTag _loc="locData">displayName</_locTag>
        </_locDefinition>
      <component type="Documents" context="User">
        <displayName>custom includes and excludes user context</displayName>
        <role role="Settings">
            <rules context="User">
                <include>
                    <objectSet>
                        <!--<pattern type="Registry">HKCU\Printers\* [*]</pattern>-->
                        <pattern type="Registry">HKCU\Network\* [*]</pattern>
                    </objectSet>
                </include>
      </rules>
     </role>
     <role role="Data">
      <rules content="User">
       <include>
           <objectSet>
         <pattern type="File"> %CSIDL_STARTMENU%\* [*] </pattern>
            </objectSet>
       </include>
      </rules>
     </role>
      </component>
      <component type="Documents" context="System">
      <displayName>custom includes and excludes system context</displayName>
       <role role="Data">
      <rules context="System">
       <include> !-- <includeAttributes attributes="TimeFields"> This is where I would make the change --
        <objectSet>
         <pattern type="File">%CSIDL_COMMON_STARTMENU%\* [*] </pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office X3\Languages\EN\Macros\* [*]</pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office 12\Languages\EN\Macros\* [*]</pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office 11\Languages\EN\Macros\* [*]</pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office X3\Languages\EN\Template\* [*]</pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office 12\Languages\EN\Template\* [*]</pattern>
         <pattern type="File">%ProgramFiles32bit%\WordPerfect Office 11\Languages\EN\Template\* [*]</pattern>
         <pattern type="File">%WINDIR%\Fonts\* [*]</pattern>
        </objectSet>
       </include>  !--</includeAttributes> --
       <unconditionalExclude>
                    <objectSet>
         <pattern type="File">c:\i386\* [*]</pattern>
                        <pattern type="File">c:\NDPS\* [*]</pattern>
         <pattern type="File">c:\Novell Client *\* [*]</pattern>
         <pattern type="File">c:\MININT\* [*]</pattern>
         <pattern type="File">c:\SwSetup\* [*]</pattern>
         <pattern type="File">c:\lexmark\* [*]</pattern>
         <pattern type="File">c:\Quarantine\* [*]</pattern>
         <pattern type="File">c:\Xerox\* [*]</pattern>
         <pattern type="File">c:\Compaq\* [*]</pattern>
         <pattern type="File">c:\Intel\* [*]</pattern>
         <pattern type="File">c:\Windows\Media\* [*]</pattern>
         <pattern type="File">c:\~data\* [*]</pattern>
         <pattern type="File">A:\*[*]</pattern>
         <pattern type="File">B:\*[*]</pattern>
         <pattern type="File">D:\*[*]</pattern>
         <pattern type="File">E:\*[*]</pattern>
         <pattern type="File">F:\*[*]</pattern>
         <pattern type="File">G:\*[*]</pattern>
         <pattern type="File">H:\*[*]</pattern>
         <pattern type="File">I:\*[*]</pattern>
         <pattern type="File">J:\*[*]</pattern>
         <pattern type="File">K:\*[*]</pattern>
         <pattern type="File">L:\*[*]</pattern>
         <pattern type="File">M:\*[*]</pattern>
         <pattern type="File">N:\*[*]</pattern>
         <pattern type="File">O:\*[*]</pattern>
         <pattern type="File">P:\*[*]</pattern>
         <pattern type="File">Q:\*[*]</pattern>
         <pattern type="File">R:\*[*]</pattern>
         <pattern type="File">S:\*[*]</pattern>
         <pattern type="File">T:\*[*]</pattern>
         <pattern type="File">U:\*[*]</pattern>
         <pattern type="File">V:\*[*]</pattern>
         <pattern type="File">W:\*[*]</pattern>
         <pattern type="File">X:\*[*]</pattern>
         <pattern type="File">Y:\*[*]</pattern>
         <pattern type="File">Z:\*[*]</pattern>
        </objectSet>
       </unconditionalExclude>
      </rules>
        </role>
      </component>
    </migration>

  • Finder window date added date modified show date time always

    Is there a preference setting to have a finder window with Date Added and Date Modified columns enabled to always show the date and time? Currently, the column information is dynamic, like just providing a time where you infer Today, or one column does show the date and time but the other only shows the date, or it reads Today, 12:31pm.
    I want every window when displaying Date Added or Date Modified columns to always, consistently show the date and time, e.g. 3/15/14, 7:31AM.
    Aloha and Mahalo!

    I found half of the answer: View:Show View Options - Deselect Use Relative Dates.
    Now I just need a solution to always show the time and not only the date.
    Curiously, when you initially enable a column in a Finder window, it shows both the date and time; however when you return to the window after closing it, you lose the time of day on Date Added, but not on Date Modified. -- Bug or Feature?

  • Date Modified Date/Time Issues on Files Exported to Excel

    Hello -
    I am using Crystal Reports XI, Release 2 and Visual Studio 2005 Enterprise Edition for my ASP.NET application.
    CrystalReports dll version : 11.5.3700.0
    .NET Framework 2.0.50727
    I use the CrystalDecisions.CrystalReports.Engine.ReportDocument to export a report to Excel (ExportFormatType.Excel).
    When you view the exported file in Excel 2007 (just open and close it, making no changes), the Date Modified date of the file changes to whatever date/time the file was last viewed.  I have also noticed this same behavior when exporting to Excel from Crystal, using a vendor desktop application that is written in C++ and uses Crystal XI.
    Does anyone else experience this issue and have a resolution?
    Edited by: Meg Thickman on Feb 3, 2009 8:59 AM

    Hi Meg,
    Just to clarify did you mean viewing the PDF?:
    "Why would/should the file system date change merely by viewing the report?"
    Our exported files are not linked to the master RPT file.
    As I indicated the XLS file is likely in an older format and Excel is detecting and updating something which the file system then detects a change and updates the date stamp. Or excel is writing something back to the file. Did you notice if the file size changed or possibly the byte hash?
    This is not something we are going to be able change. For compatability reasons we cannot stop Excel from updating the file.
    As a work around add the Data Date field to your reports and your auditors can use that as the reference. It will reflect the actual date and time the report was run. Or use Excel API's to update the file format once the report has been exported in your code. You may also want to check with Microsoft to see if it's an option in Excel not to update the format or possibly a registry key to disable the option.
    Thanks again
    Don

  • Is there a way to change settings for "date modified" to reflect true file changes instead of changing upon viewing files? This is not just a Word issue.

    My team and I open and view files all the time without editing them but the date modified changes anyway. This gets especially troublesome when we are working on files on each others desktops remotely. Is there any way to change these settings to reflect only changes instead of views, moves, and the like? I've read similar posts that have all reference Microsoft products but that is not the case. Our systems here operate in this way regardless of application/file type.

    This discussion is going on in another thread where there has been more responses, one fix and a work-around noted. Please go here to read them: https://discussions.apple.com/message/18157324?ac_cid=142432#18157324

  • Possible fix for Word2004 "Date Modified" issue

    I'm not sure if anyone else is still dealing with this problem - we discussed it a year ago here:
    http://discussions.apple.com/thread.jspa?messageID=7610823
    But just in case there's someone else out there with the problem - I think I've found a fix (requiring OSX Server 10.5, tested on OSX Server 10.5.6)
    The problem:
    When you have a Word 2004 file (whatever.doc) stored on a server (10.4.0-10.5.6) then you have an annoying Date Modified issue. Whenever someone who is not the owner simply opens the file, the Date Modified date updates. When the owner of the file opens it, the date does not change. So by simply opening the document (and making no changes, and not re-saving it) you trigger an update of the Date Modified field.
    More info can be found following the link above.
    Well. I think I've found a work-around that's better then the current "Have everyone login as the same user" one.
    In OSX Server, setup the permissions for the share with group as "read only" - so the POSIX permissions only give non-owners read-only access. (Everyone should also be RO or None)
    Then you need to apply a Custom ACL. You want to give them Read & Write, but then edit the Write permissions to not allow Write Attributes and Write Extended Attributes.
    So the ACL is:
    [ ] Administration
    [Y] Read
    [-] Write
    --[ ] Write Attributes
    --[ ] Write Extended Attributes
    --[Y] Create Files (Write Data)
    --[Y] Create Folder (Append Data)
    --[Y] Delete
    --[Y] Delete Subfolders and Files
    [Y] Inheritance
    Obviously this means your users cannot write attributes - so for photos and other files where meta-data is critical, this is not a great idea. But for the vast majority of shares, this is fine - they can still "read and write" all the files and folders, but the Date Modified problem does not arise.
    I'd be interested to see if this works for anyone else. Please let me know
    Charles

    Interesting and understood. I always tell people/clients that want to use dates either date created but definitely date modified to add that into the name of the file or call them revisions each time, ie:
    lawsuitJamesrev2
    or
    lawsuitJames_5_1209
    Reason being is depending on the backup system or worse yet disaster recovery you might not see or be able to see modified dates. IF the file is labeled as shown above it makes it easier. Again each person is different but from experience this works best as well as sorting. Also law firms I worked with have a number system since they needed to follow regulations on how to secure content. Again just ideas...hope you find an answer and pass it on

  • "Date Modified" for all files being changed if "Automatically write to XMP" is on

    Recently upgraded from LR3 (v3.4.1) from LR2 on OSX 10.6.8 and have always had Catalog Settings > Automatically write changes into XMP turned on.
    When browsing existing JPG files in my Library (no Develop changes, no keywording, no Presets, no Import), LR3 is writing to disk — i.e., when I look at files in Finder, almost every viewed file’s “Date Modified” is being set to today’s date and time. (It actually creates a .swp file, then changes it's name back to .jpg)
    This is really bad, as it's making it impossible for me to use Finder to figure out when I last worked with a file, it is triggering needless Time Machine and Backblaze backups, and unnecessarily churning my disk.
    If I turn off "Automatically write..." this behavior stops. Per David Marx at thelightroomlab.com, I tried turning off this preference, manually doing a "Save Metadata to File" for all files, letting that complete, then turning the preference back on. This does not solve the problem.
    Per a suggestion at photoshop.com, I used ExifTool to see what changes LR was writing to a sample file; from the diff below, you can see that LR is adding a bunch of new fields as well as moving other fields around. But my point is that LR3 should never overwrite a file on disk if all I am doing is browsing thru them.
    Is anyone else seeing this? Any ideas would be greatly appreciated!
    -- David
    diff Exif5609_original Exif5609_update
    2c2
    < FileName: DSC_5609_original.JPG
    > FileName: DSC_5609_update.JPG
    5,6c5,6
    < FileModifyDate: 2009:11:27 21:32:54-08:00
    < FilePermissions: rwxr-xr-x
    > FileModifyDate: 2011:08:07 22:06:47-07:00
    > FilePermissions: rw-r--r--
    27a28,29
    > ShutterSpeedValue: 1/200
    > ApertureValue: 7.1
    55d56
    < SerialNumber: 3209521
    75d75
    < Lens: 18-200mm f/3.5-5.6
    185,188d184
    < UserComment:
    < SubSecTime: 00
    < SubSecTimeOriginal: 00
    < SubSecTimeDigitized: 00
    211a208,299
    > XMPToolkit: Adobe XMP Core 5.2-c004 1.136881, 2010/06/10-18:11:35
    > CreatorTool: Ver.1.00
    > MetadataDate: 2011:08:07 22:06:47-07:00
    > SerialNumber: 3209521
    > LensInfo: 18-200mm f/3.5-5.6
    > Lens: 18.0-200.0 mm f/3.5-5.6
    > ImageNumber: 26634
    > RawFileName: DSC_5609.JPG
    > SavedSettingsName: Import
    > SavedSettingsType: Snapshot
    > SavedSettingsParametersVersion: 6.4.1
    > SavedSettingsParametersProcessVersion: 5.0
    > SavedSettingsParametersWhiteBalance: As Shot
    > SavedSettingsParametersIncrementalTemperature: 0
    > SavedSettingsParametersIncrementalTint: 0
    > SavedSettingsParametersExposure: 0.00
    > SavedSettingsParametersShadows: 0
    > SavedSettingsParametersBrightness: 0
    > SavedSettingsParametersContrast: 0
    > SavedSettingsParametersSaturation: 0
    > SavedSettingsParametersSharpness: 0
    > SavedSettingsParametersLuminanceSmoothing: 0
    > SavedSettingsParametersColorNoiseReduction: 0
    > SavedSettingsParametersChromaticAberrationR: 0
    > SavedSettingsParametersChromaticAberrationB: 0
    > SavedSettingsParametersVignetteAmount: 0
    > SavedSettingsParametersShadowTint: 0
    > SavedSettingsParametersRedHue: 0
    > SavedSettingsParametersRedSaturation: 0
    > SavedSettingsParametersGreenHue: 0
    > SavedSettingsParametersGreenSaturation: 0
    > SavedSettingsParametersBlueHue: 0
    > SavedSettingsParametersBlueSaturation: 0
    > SavedSettingsParametersFillLight: 0
    > SavedSettingsParametersVibrance: 0
    > SavedSettingsParametersHighlightRecovery: 0
    > SavedSettingsParametersClarity: 0
    > SavedSettingsParametersDefringe: 0
    > SavedSettingsParametersHueAdjustmentRed: 0
    > SavedSettingsParametersHueAdjustmentOrange: 0
    > SavedSettingsParametersHueAdjustmentYellow: 0
    > SavedSettingsParametersHueAdjustmentGreen: 0
    > SavedSettingsParametersHueAdjustmentAqua: 0
    > SavedSettingsParametersHueAdjustmentBlue: 0
    > SavedSettingsParametersHueAdjustmentPurple: 0
    > SavedSettingsParametersHueAdjustmentMagenta: 0
    > SavedSettingsParametersSaturationAdjustmentRed: 0
    > SavedSettingsParametersSaturationAdjustmentOrange: 0
    > SavedSettingsParametersSaturationAdjustmentYellow: 0
    > SavedSettingsParametersSaturationAdjustmentGreen: 0
    > SavedSettingsParametersSaturationAdjustmentAqua: 0
    > SavedSettingsParametersSaturationAdjustmentBlue: 0
    > SavedSettingsParametersSaturationAdjustmentPurple: 0
    > SavedSettingsParametersSaturationAdjustmentMagenta: 0
    > SavedSettingsParametersLuminanceAdjustmentRed: 0
    > SavedSettingsParametersLuminanceAdjustmentOrange: 0
    > SavedSettingsParametersLuminanceAdjustmentYellow: 0
    > SavedSettingsParametersLuminanceAdjustmentGreen: 0
    > SavedSettingsParametersLuminanceAdjustmentAqua: 0
    > SavedSettingsParametersLuminanceAdjustmentBlue: 0
    > SavedSettingsParametersLuminanceAdjustmentPurple: 0
    > SavedSettingsParametersLuminanceAdjustmentMagenta: 0
    > SavedSettingsParametersSplitToningShadowHue: 0
    > SavedSettingsParametersSplitToningShadowSaturation: 0
    > SavedSettingsParametersSplitToningHighlightHue: 0
    > SavedSettingsParametersSplitToningHighlightSaturation: 0
    > SavedSettingsParametersSplitToningBalance: 0
    > SavedSettingsParametersParametricShadows: 0
    > SavedSettingsParametersParametricDarks: 0
    > SavedSettingsParametersParametricLights: 0
    > SavedSettingsParametersParametricHighlights: 0
    > SavedSettingsParametersParametricShadowSplit: 25
    > SavedSettingsParametersParametricMidtoneSplit: 50
    > SavedSettingsParametersParametricHighlightSplit: 75
    > SavedSettingsParametersSharpenRadius: +1.0
    > SavedSettingsParametersSharpenDetail: 25
    > SavedSettingsParametersSharpenEdgeMasking: 0
    > SavedSettingsParametersPostCropVignetteAmount: 0
    > SavedSettingsParametersGrainAmount: 0
    > SavedSettingsParametersLensProfileEnable: 0
    > SavedSettingsParametersLensManualDistortionAmount: 0
    > SavedSettingsParametersPerspectiveVertical: 0
    > SavedSettingsParametersPerspectiveHorizontal: 0
    > SavedSettingsParametersPerspectiveRotate: 0.0
    > SavedSettingsParametersPerspectiveScale: 100
    > SavedSettingsParametersConvertToGrayscale: False
    > SavedSettingsParametersToneCurveName: Linear
    > SavedSettingsParametersCameraProfile: Embedded
    > SavedSettingsParametersCameraProfileDigest: D6AF5AEA62557FCE88BC099788BBD3CC
    > SavedSettingsParametersLensProfileSetup: LensDefaults
    > SavedSettingsParametersToneCurve: 0, 0, 255, 255
    > IPTCDigest: d41d8cd98f00b204e9800998ecf8427e
    228,230d315
    < SubSecCreateDate: 2009:11:27 21:32:54.00
    < SubSecDateTimeOriginal: 2009:11:27 21:32:54.00
    < SubSecModifyDate: 2009:11:27 21:32:54.00
    http://feedback.photoshop.com/photoshop_family/topics/lr3_date_modified_for_all_files_bein g_updated_when_browsing_photos_if_catalog_settings_automatically_write_changes_into_xmp_is /replies/6313647

    clvrmnky wrote:
    davidpope007 wrote:
    Then when LR3 loaded my old LR2 images into memory, it "dirtied" the in-memory copy of the file by adding in these new LR3 XMP fields. Then, because I had "Automatically write XMP" on, it said "I better write these changes to disk".
    Yuck. As a former software engineer, this is very bad software engineering.
    It should wait until the user dirties the file (via Develop, keywords, etc.) before presuming to add a bunch of metadata fields that are unique to the new version of LR3.
    Well, I'm a current software developer, and this is, really, a perfectly reasonable thing to do. It is a reasonable trade-off for a convenient feature required by a small subset of users.
    Yes, in most cases the in-memory copy should "never" be dirtied unless the user makes a gesture of some sort, but like I said earlier, this option (once set by the user) sets up the situation where this gesture becomes implicit. This is a clear trade-off for the sake of convenience. And if the XMP is out of date and needs to be updated en masse, so be it.
    The fact is, there is no easy way around this. Do we save up /every/ dirty buffer somehow until you make a gesture that /might/ require the XMP to be up-to-date before acting on that gesture? Now we have to worry about unflushed buffers if something goes wrong and the app exits. Do we save the buffers to the DB? Now we have to block some calls to make another blocking call to flush some or all of those to DB, and then write some or all of it out to one or more files. In what order? What if there is a gesture to have X files with up-to-date XMP and some or all of those are in unflushed buffers, unflushed DB writes or we have to wait for the DB.
    As you can see, this is a transactionality nightmare, and the easiest and safest thing to get what the user wants (i.e., up-to-date XMP for the purpose of talking to a third-party XMP aware app) is to simply update the sidecar or XMP block in an atomic manner using the correct file IO. The file will have to change at some point, so it may as well be now.
    [Thanks to both of you for your detailed replies. I am aware of the need for tradeoffs so when you say the approach taken is quite reasonable, I do believe you. I also apologize in advance for the length of the following and am extremely aware of the time it must have taken you to compose the above replies, but I'm going to add a bit more, if only for my own piece of mind and in hopes of coming up with a solution for my workflow.]
    From my naive point of view, I was expecting the answer to be simply "don't raise the XMPDirtyFlag upon reading in a file". Obviously if your architecture requires you to "upgrade to latest XMP format" upon read, and another part of the system auto-detects "out of date XMP", then it's going to write those changes to disk.
    But it didn't need to be designed that way. LR obviously has mechanisms to know when a user has made a change to XMP so it is able to write XMP changes to disk only when necessary.
    The promise (to me) of "Automatically Write XMP changes to disk" was to auto-save my changes, and not those made for any internal (i.e., XMP versioning related) changes.
    Perhaps the premise is that it is LR3's job to update an individual file's XMP to the latest version so that other XMP-aware apps can make use of it? I would argue that those third-party XMP-aware apps already have to know how to deal with all prior versions of XMP, so LR3 should just leave well enough alone.
    You asked if my problem with your approach was that it was "inelegant"; not at all, it is based on my own perception of what I need from my workflow, so let me describe that so maybe we can find a better way:
    * Part of the appeal of LR to me is that it preserves my original file as it came off the memory card, allowing me to move to a different workflow/toolset in 2025 if I choose to do so
    * However, with all of changes contained in a single database file, I'm concerned about rare (but possible) corruption, so to mitigate this risk, I let LR backup my database weekly and it's also backed up continuously in the cloud via Backblaze
    * Even with backups of the database, there is still a chance that I could lose changes made to individual files (e.g., LR corrupts the DB and I have to go back to last week's DB)
    * Thus the appeal of the "auto-write to XMP" flag -- that way critical changes (develop, crop, keywords) are saved on a per-file basis; I liked the "automatic" part of this (as opposed to a manual save) because then I don't have to teach others in my family how to manually save XMP changes
    * A nice side-effect of this setting is now when I use Finder to find a file and double-click on it to edit it in Photoshop, all my develop changes are right there; (in other words, I like the flexibility of not having to fire up LR in order to just invoke PS from within it); also when I use Bridge I see all the keywords there
    * So with LR2, I had gotten used to what I thought was the best of all worlds -- autosave of changes at the file level via XMP + raw negatives untouched (i.e., Date Modified == the date I took the picture); this allows me to use operating-system-level tools -- Finder -- to locate/search for files
    * Now I upgrade to LR3 and I'm finally now understanding that a concept "XMP versioning" is going to result in changes to many, but not all my files. (That's something else that's annoying about this issue -- I open up the Grid and browse a folder of files, and only seemingly random ones I've cursored over seem to get written to disk -- if it's so urgent that LR3 update the XMP, then it should do it for all the files in the catalog or at least in that directory)
    Here's a screenshot from Finder of what I see everytime I look at this folder:
    * So now I have to assume that each new version of XMP and/or LR is going to touch my files on disk. Sigh.
    * What I don't like about this is that it is ruining the promise of "untouched raw negative". Yes, the image data is untouched -- which I agree is most of the benefit; but the file has been touched.
    * Perhaps you might empathize a bit more if you imagined that someone went thru all your source code or Word files and randomly changed the date to "today" because you upgraded compilers or moved to Word 2011.
    I agree all of this would be solved by having an XMP sidecar file for JPGs, but you indicate that's not going to happen.
    You've also alluded to the solution of "resetting the Date Modifed" to it's original value -- which I believe is what Finder does when you move or copy a file -- but that that is fraught with issues as well. I believe you when you say there are issues, but again the naive part of me wonders why that soultion would be so bad...
    I just thought of another potential solution -- turning on Date Created in Finder -- but it turns out that's changed, too.
    I am really at a loss as to what to do and would welcome your suggestions.
    Thanks again and kind regards,
    -- David

Maybe you are looking for

  • How can I edit a speach only MP3 recording on my Mac?

    I have a MP3 recording of my speach imported from an Edirol Wave/MP3 recorder that I want to edit then burn or upload to You Tube. How can I do this? Can I use iVideo or GarageBand or do I have to download Amadeus from the App Store?

  • APO livecache

    I am faceing problem with live cache is down ....when i was checked xsercer is down then i start the xserver and check at sap level LC10 it shows down...i tryed to start the livecache at sap....but it shows error message...Error DBMCLI_COMMAND_EXECUT

  • Why is my filter selection greyed out

    What cause the filters tap and everything under to be greyed out

  • What's wrong with SEARCH THIS FORUM?

    For the past several days everything I search for returns 0 hits, even for common terms I know are there such as "clone" and "levels".

  • My vote for PQ-DVD for video transfer

    I would like to share my great experience with PQ-DVD. They released an iPod version of there famous PSP software and let me tell you, it works great. I have transfered serveral DVDs, home movies of course wink. You can also transfer videos files of