NAS! Is it possible to store files and catalog on a lokal NAS.

I would like to be able work on both my desktop and my laptop.

If you set up icloud on all devices/computers then pages, numbers, keynote and note pad will sync to all. You edit on ipad and changes will show up on same document on computer.

Similar Messages

  • How to repair my macbook pro when i had delete the app store file and know it telling that appstore file has been damage or incomplete and i had the version 10.6.8

    how to repair my macbook pro when i had delete the app store file and know it telling that appstore file has been damage or incomplete and i had the version 10.6.8

    so is their is any way that i can solve this matter

  • The File "(file name)" is an iTunes Store File and can't be burned to MP3cd

    I am using the most recent updates to OS 10.4.8 and iTunes 7. I am getting this error stating that iTunes Store Files, which are also protected AAC files, can neither be burned to MP3 CD or converted into MP3 files. I also tried using Roxio Toast, most recent version, which converts the files to QuickTime AIFF files, which will not even play in QuickTime. I did not have this problem with older versions of iTunes. It is only songs purchased from iTunes Store that have this problem.
    Any suggestions?

    Which version of Toast 6 are you using? Roxio made the change with the 6.1 update to "fix" Toast to no longer burn purchased iTMS content.
    http://www.roxio.com/enu/support/toast/version_history6.html
    "Following discussions with Apple, this version will no longer allow customers to create audio CDs, audio DVDs, or export audio to their hard drive using purchased iTunes music store content."
    If your CD version is previous to 6.1 and you updated it after the fact, you could try deleting it and reinstalling it and this time NOT updating it and see if you can now burn the iTMS songs.
    Patrick

  • What is this .DS Store file and why does it keep coming back?

    So a few weeks ago I noticed this .ds store hidden file showing up on my desktop of my MacBook Pro, I deleted it, so it's over with right? WRONG!!! Could not have been more wrong. This file now shows up in every single folder I open on my computer. I've deleted it form the same folder numerous times only for it to reappear again and again and again. It's even showing up on my USB Flash Drives. I've reached a point where I'd rather throw this computer out the window then have to keep dealing with this insufferable file. Can someone please explain to me what the heck is going on? And more importanly on I can actually fix this problem so I DO NOT have to deal with it anymore? Any help is greatly appreciated.
    Side Note: I have already used a bunch of different programs and none have yet to work. Everyone keeps recommending TinkerTools and it doesn't do squat.

    This will explain the .ds store file. As you've found out there's one for every file. If you don't want to see those hidden files, don't display hidden files.
    To make hidden file hidden, bring up terminal, enter "defaults write com.apple.Finder AppleShowAllFiles NO" (don't type the quote marks), then force quit finder and relaunch it. If that doesn't work, change NO to FALSE. 

  • Xjb binding file and catalog file

    I have two schemas that exist in separate projects.
    I utilize a catalog file to correctly take the namespace of a schema and refer to the specific location of the other schema. Long term the externalized schema will exist in a jar file.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE catalog PUBLIC "-//OASIS/DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
    <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public">
    <public publicId="http://foo.com/common/model/contactpoint" uri="file:/C:/Development/workspace/foo-model-member/src/main/sample/contactpoint.xsd"/>
    </catalog>
    The problem is that the xjb file does not appear to use the same catalog file for resolving the schemaLocation attribute. Is there a way to apply the catalog to the schemaLocation attribute of the binding element? In the xjc command, I supply a catalog file and it correctly integrates this into the build process.
    <jxb:bindings version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    >
    <jxb:globalBindings
    fixedAttributeAsConstantProperty="true" collectionType="java.util.ArrayList"
    typesafeEnumBase="xs:NCName" choiceContentProperty="false"
    typesafeEnumMemberName="generateError" enableFailFastCheck="false"
    generateIsSetMethod="false" underscoreBinding="asCharInWord" />
    <jxb:bindings schemaLocation="../xsd/member.xsd" node="/xs:schema">
    <!--jxb:globalBindings>
    <jxb:serializable/>
    <jxb:javaType name="java.util.Calendar" xmlType="xs:date"
    parseMethod="javax.xml.bind.DatatypeConverter.parseDate"
    printMethod="javax.xml.bind.DatatypeConverter.printDate" />
    </jxb:globalBindings-->
    <jxb:schemaBindings>
    <jxb:package name="com.foo.model.member">
    <jxb:javadoc>
    <![CDATA[<body>Package level documentation.</body>]]>
    </jxb:javadoc>
    </jxb:package>
    </jxb:schemaBindings>
    </jxb:bindings>
    <jxb:bindings schemaLocation="http://foo.com/common/model/contactpoint"
    node="/xs:schema/xs:complexType[@name='Address']">
    <jxb:class ref="com.foo.commons.model.contactpoint.Address"/>
    </jxb:bindings>
    <jxb:bindings schemaLocation="http://foo.com/common/model/contactpoint"
    node="/xs:schema/xs:complexType[@name='Email']">
    <jxb:class ref="com.foo.commons.model.contactpoint.Email"/>
    </jxb:bindings>
    <jxb:bindings schemaLocation="http://foo.com/common/model/contactpoint"
    node="/xs:schema/xs:complexType[@name='Phone']">
    <jxb:class ref="com.foo.commons.model.contactpoint.Phone"/>
    </jxb:bindings>
    <jxb:bindings schemaLocation="http://foo.com/common/model/contactpoint"
    node="/xs:schema/xs:complexType[@name='ContactPoint']">
    <jxb:class ref="com.foo.commons.model.contactpoint.ContactPoint"/>
    </jxb:bindings>
    </jxb:bindings>
    But it throughs exceptions on the jxb:bindings schemaLocation:
    [INFO] Scanning for projects...
    [INFO] ------------------------------------------------------------------------
    [INFO] Building Model
    [INFO] task-segment: [generate-sources]
    [INFO] ------------------------------------------------------------------------
    [INFO] [jaxb2:xjc {execution: default}]
    [INFO] Generating source...
    [INFO] parsing a schema...
    [ERROR] file:/C:/Development/workspace/model-member/src/main/xjb/member.xjb[28,57]
    com.sun.istack.SAXParseException2: "http://foo.com/common/model/contactpoint" is not a part of this compilation. Is this a mistake for "file:/C:/Development/workspace/model-member/src/main/xjb/member.xjb"?
         at com.sun.tools.xjc.reader.internalizer.Internalizer.reportError(Internalizer.java:501)
         at com.sun.tools.xjc.reader.internalizer.Internalizer.reportError(Internalizer.java:495)
         at com.sun.tools.xjc.reader.internalizer.Internalizer.buildTargetNodeMap(Internalizer.java:205)
         at com.sun.tools.xjc.reader.internalizer.Internalizer.buildTargetNodeMap(Internalizer.java:289)
         at com.sun.tools.xjc.reader.internalizer.Internalizer.transform(Internalizer.java:134)
         at com.sun.tools.xjc.reader.internalizer.Internalizer.transform(Internalizer.java:96)
         at com.sun.tools.xjc.reader.internalizer.DOMForest.transform(DOMForest.java:448)
         at com.sun.tools.xjc.ModelLoader.buildDOMForest(ModelLoader.java:342)
         at com.sun.tools.xjc.ModelLoader.loadXMLSchema(ModelLoader.java:374)
         at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:167)
         at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:113)
         at com.sun.tools.xjc.Driver.run(Driver.java:313)
         at org.codehaus.mojo.jaxb2.AbstractXjcMojo.execute(AbstractXjcMojo.java:297)
         at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
         at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
         at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
         at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
         at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
         at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
         at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
         at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    Thanks,
    Jay

    Andrew,
    I would agree, this implementation appears to be a retrofit and not properly
    thought out. The subject is very confusing and has caused me many hours of
    frustration while migrating several LR environments to new systems. Most
    importantly, there is now a reply and reference to my question that helps
    clear up the confusion. I have since changed my Preferences accordingly and
    hope to avoid this trap in the future. Following is the URL that I found
    most helpful.
    http://www.lightroomforums.net/showthread.php?14169-What-is-the-purpos
    e-of-the-quot-Store-Presets-with-Catalog-quot-option
    <http://www.lightroomforums.net/showthread.php?14169-What-is-the-purpose-of-
    the-quot-Store-Presets-with-Catalog-quot-option

  • Design of DB which stores files and has a history.

    We have a very simple requirement: Object 'A' might have several attachments. Attachment means either a physical file stored in the DB (max 10 MB) or URL pointing to a file in the web/network/anywhere. In case an attachment is a file,
    that file cannot be updated. Attachments might be deleted.
    We started with the following simple DB schema:
    Then we realized that we need to have a History table for the attachments to track changes in the FILE_NAME and URL columns. (The file stored in the ATTACHMENT column cannot be changed, but its name can be changed). The whole row in the
    attachments table might be deleted. So the initial thought was to create this table:
    However, this design has one drawback – the same file is duplicated (stored in several places). Since the file once inserted, can never be changed, there is no point to store it in the history table every time its name was changed.
    Option 1.
    My idea is to leave this schema unchanged, but to change the logic a bit. Every
    update in the ATTACHMENTS table should trigger copying only of ATTACHMENT_PID, TABLE_A_ID, FILE_NAME and URL fields from that table to ATTACHMENTS_HIST. The ATTCHMENT field is not copied. When the row is
    deleted from ATTACHMENTS table, then all fields including the file itself are copied to the ATTACHMENTS_HIST table. As a result of this, we store the file only in one place.
    See option 2 in the next message..
    Alexey

    Option 2.
    Split ATTACHMENTS table into 2 tables (ATTACHMENTS_META and ATTACHMENTS_DATA) to store the file in a separate table. Files will never be deleted. As a result, we can safely remove ATTACMENT column from ATTACHMENTS_HIST table. We don’t
    need it anymore because ATTACHMENT_ID will always point to the file:
    Here ATTACHMENTS_DATA table has FK:
    CONSTRAINT FK_ATTACHMENTS_DATA__ATTACHMENTS_META
    FOREIGN KEY (ATTACHMENT_ID)
    REFERENCES dbo.ATTACHMENTS_META
    (ATTACHMENT_ID)     
    Because of this, the relationship between ATTACHMENTS_META table and ATTACHMENTS_DATA table is 1:1.
    At first blush the idea possesses common sense, but on closer examination it fails because we cannot delete a row from ATTACHMENTS_META. Why? Because it is a Master table and ATTACHMENTS_DATA is a Details table. We cannot leave the detail
    without master. (The data in the ATTACHMENTS_DATA never deleted.)
    What if we swap Master and Details table? I mean if ATTACHMENTS_DATA is Master and ATTACHMENTS_META is Details. Well, in this case we can delete a row from ATTACHMENTS_META table and leave the corresponding file in the ATTACHMENTS_DATA.
    So it seems that it solves the problem.
    However, it raises another issue. Do you remember that instead of a file we can have URL? URL stored in the ATTACHMENTS_META table which is Details table in this case. And we cannot create a row in that table until we create a row in the
    Master table. But we don’t need a file for URL attachment. So this solution will not work.
    Eventually, option 2 has the following solution:
    Here ATTACHMENT_DATA table is Master and ATTACHMENT_META table is Details. Optional (null-able)   ATTACHMENT_DATA_ID column was added to ATTACHMENT_META table. It allows splitting PK and FK in this table. 
    Now the question: Which option (1 or 2) would you prefer? Can you suggest option 3?
    Option 1
    + There are only 3 tables
    - File is copied from ATTACHMENTS to ATTACHMENTS_HIST table before deleting from ATTACHMENTS.
    Option 2
    + File is not copied.
    - There are 4 tables.
    - Relationship between ATTACHMENTS_DATA table and ATTACHMENTS_META table is 1:n which actually does not reflect the reality.
    Thank you in advance.
    Alexey

  • Is it possible to store user and role information in MDS instead of jazn ?

    Hi
    I want to store the user and role details in mds rather than jazn xml. Is it posssible? Could any one tell the steps that to be follow?
    Thanks,
    Vishnu

    Hi,
    MDS is not a polic store nor an identity management system. It does not really make sense what you are asking for. Instead of jazn-data.xml you can use OID and RDBMS for holiding user identities and policies. If it is only user identities and groups you want to move to another store then you have OID, RDBMS, Active Directory. OAM etc.. The jazn-data.xml file btw. is used at design time only. Upon deployment - by default - users and groups are created from jazn-data.xml into the integrated WLS LDAP server. Policies in jazn-data.xml file are copied to system-jazn-data.xml of the target WLS server.
    Frank

  • Possible to lock file and move it afterwards?

    Hi Java-Gurus,
    I am trying for quite a while now to lock a file (with FileChannel/FileLock) and to move it afterwards.
    At the moment it seems like the file is locket for my java application as well as for other applications.
    Is there a way to lock the file first, read it and then to move it to another directory?
    Thanks for your help!

    I don't believe you can move a locked file, even if you locked it.
    Instead of locking the file you could move it to another directory (only one process can do this successfully) and move the file again, if required, when you are finished. No locking required.

  • Original files and catalog on same external hard drive?

    I am about to install Lightroom 3. I have read alot about creating catalogs. In order to get ready for the installation I am organizing all my photos in folders by year and putting them on ONE external hard drive. This requires a lot of effort to copy them from many different locations: a second external hard drive and from the desktop of my computer hard drive. I am on a Mac running Snow Leopard. Is it a good idea or doesn't it matter or is is wrong to have all my photos and the one catalog I will create on the same hard drive. What I'm asking is: should the catalog AND the original files be on the same hard drive or doesn't it matter. Thanks. 

    I am about to install Lightroom 3. I have read alot about creating catalogs. In order to get ready for the installation I am organizing all my photos in folders by year and putting them on ONE external hard drive.
    Completely unnecessary, but if it makes you happy, go ahead.
    If your photos come from a digital camera (and not a  scanner), then Lightroom will give you the ability to find photos by  years the instant your photos are imported into Lightroom. You don't  have to do the work to put the photos into year folders or other year  structures.
    What I'm asking is: should the catalog AND the original files be on the same hard drive or doesn't it matter.
    Doesn't matter. Catalog can be on any connected hard drive, photos can be on the same drive or different drives (plural), connected or disconnected.
    Advice: don't organize via folders. I think this is a sub-optimal use of your time. Folders should be used as storage locations, and are not organizational tools any more (they were organizational tools before you had Lightroom). Set up your folders however your want to meet your storage needs (so if you really want all your photos on one drive — a good idea in many but not all cases — then do that to meet your storage needs) but don't use folders any more to achieve organization/searchability/"easy to find". Use keywords and metadata inside of Lightroom to achieve organization/searchability/"easy to find".

  • Backing up Element 7 files and catalog

    Hi -
    Currently I am running Photoshop Elements 7 (PE7) on a computer with Windows XP.  All of my photos are on an external hard drive.  I want to back up all of my photos, tags, etc. (all the work I have done) and be able to access everything from my new PC running Vista.  I have already installed PE7 on the new PC (I'll delete it from the old one once I have everything working) but have not accessed any photos using it yet.  On the old PC, I have run the PE7 Inital Backup and an Intermittent Backup.  I have read through many threads about this subject but most discuss older versions of PE. 
    I'm a little confused about what all I need to have Backed up and how best to Restore it.  I've read I need the photos backed up (obviously) but I also need the "catalog" file if I want to retain the tags, notes, captions, etc.  I've only seen the catalog file referenced as "My Catalog.PSA".   It looks like PE7 uses the file "C:\Documents and Settings/All Users/Application Data/Adobe/Photoshop Elements/Catalogs/My Catalog/catalog.pse7db".
    Is this correct?
    Besides the pictures, is this the only other file I need to back up to retain all my work?
    Does the File - Backup option back up this catalog file automatically as well as the photos?
    Without knowing the above answers yet, here's what I think I need to do and makes the most sense to do - PLEASE correct me if I am wrong.
    1.  Run the "Backup Catalog to CD, DVD or Hard Drive" option as an Inital Backup so I have a backup of everything before I do anything else.
    2.  Since my photos are already on an external hard drive and the drive letter seems to be consistent when I move it between computers, I don't really want to (or need to) Restore them back onto that external drive and I don't want them on my new PC so I won't run the Restore option.
    3.  Copy the "catalog.pse7db" file to my Vista PC,   Question:  Where do I place it since the file structure is different than on my old XP computer?
    Lastly, under "File" there is the option to:  "Write keyword Tag and Properties Info to Photo".  It seems too easy to just write this info to the photos and then only have to back up the photos.  I would think the photo file sizes could increase significantly and there must be additional information that the catalog contains (such as file locations??) so I would still need to backup and move the catalog to the new PC in order for PE7 to find and process all my photos correctly.   Am I right about this?  When does it make sense to use this option?
    Thanks for your help!  This is my first foray into using Photoshop Elements (and a forum) and I don't want to lose all my work.

    To build on Paige's response:
    If you have photo creations (e.g. slideshows) or files that you moved offline to CD/DVDs, you should move the entire catalog folder (the one containing catalog.pse7db).  That folder contains the project files for your creations and it also contains the previews of your offline photos.  You can find the location on your old computer by doing Help > System Info in the Organizer.   The folder also contains other files that aren't essential to move, since PSE will recreate them if necessary.
    Regarding File > Write Keyword Tags, that command tries to write the tags, captions, notes, date/times, and star ratings into the metadata of your files.  The advantage of this is that metadata can be accessed by many other programs and services, e.g. when you upload to Flickr, it will pick up your tags.  It doesn't make an appreciable increase in the size of your photos.   However, the command is quite buggy and often doesn't get the data correctly written, even with JPEGs. 

  • Store files in the material master

    is it possible to store files (pictures) in the material master.. and then use this picture in a materials report?

    Dear,
    Please check step by step document with screenshots at below link:
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=180357002
    http://wiki.sdn.sap.com/wiki/display/SCM/AttachingDesignDiagramtoMaterial+Master
    Secondly, DMS - Document Management System will not included in SAP R/3, need to be installed separately.
    Regards,
    Syed Hussain.

  • Is it possible to retrieve files after trash has been emptied?

    Is it possible to retrieve files after they have been emptied from trash?
    I have over relied on USB sticks to transfer / store files, and have experienced a catastrophic failure of one particular USB stick,
    with info that took me months to prepare.  Any good news out there?

    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads. Recovery software usually provide trial versions that enable you to determine if the software would help before actually paying for it. Beyond this or if the drive has completely failed, then you would need to send the drive to a recovery service which is very expensive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • Possible to access files/folders on Time Capsule?

    I'm thinking of buying a Time Capsule. If I backup my Mac with Time Machine, will I then be able to eg. see the pictures from my mac on another Mac in the network? In other words; is it possible to access files and folders instantly from the Time Capsule?

    If you mean Time Machine backups, technically you can use it for both, but it presents some problems.
    See #Q3 in [Using Time Machine with a Time Capsule|http://web.me.com/pondini/TimeMachine/TimeCapsule.html] (or use the link in *User Tips* at the top of this forum) for details and a couple of workarounds.

  • My MacBook Pro came with Lion pre-installed so I can't re-download it from the app store. Is it possible to get the installESD.dmg file and how can I get it if I can't re-download Lion in Apple Store option?

    My MacBook Pro came with Lion pre-installed so I can't re-download it from the app store. Is it possible to get the installESD.dmg file and how can I get it if I can't re-download Lion in Apple Store option?

    FYI Mac OS X is not designed to be installed on additional Macs, unless you purchased it from the App Store, in which case you can make as many copies as you wish and install it on as many Macs as you own.
    From the Recovery Disk Assistant -
    Notes
    If the computer shipped with OS X Lion or Mountain Lion, the external recovery drive may only be used with the system that created it.
    If the system was upgraded to Lion or Mountain Lion purchased from the App Store, the external recovery drive can be used with other similarly-upgraded systems.

  • Disk Utility stopped repairing the disk. I was instructed to backup as many of my files as possible.reformat the disk and store my backed files.  I am using an I Mac 2010.  I am not sure what caused this problem.   I use time machine

    Disk Utility stopped repairing the disk. I was instructed to backup as many of my files as possible.reformat the disk and restore my backed up files.  Since I use time machine, can I assume that all my files and programs can be restored from my recent back ups? 

    Hi jeromefrodia, 
    Welcome to the Apple Support Community!
    I understand that you are concerned about your data before reformatting the disk. Because you use Time Machine your information should be safe. Please refer to the attached article for information about what Time Machine backs up and how to restore from that backup. 
    Mac Basics: Time Machine backs up your Mac
    Cheers,
    Joe

Maybe you are looking for

  • SCHEDULER with using dbms_job.submit package

    i want to use a procedure in SCHEDULER with using dbms_job. How i use this procedure in SCHEDULER Plz, Help me Message was edited by: Nilesh Hole

  • Cannot publish Muse in BC

    First I want to say, this adobe system is so great! Nevertheless, greatness brings problems... I have a webcommerce monthly and a muse monthly. I have the oxo theme preinstalled and (would like to keep it as a template; already duplicated it)  and wa

  • Generic import error - Lion - CS5.5 - Will not import

    Hi. I just upgraded to cs5.5 with Lion and now a number of my previous cs4 projects will not load various flavors of video. One major problem I discovered was that after installing Lion, both of my Quicktime folders in the user and system library wer

  • Where can i find files backed up to my computer instead to icloud

    I chose to back up my Iphone 4S to my computer instead of to Icloud. Where can I find those back up files on my computer?

  • VBS Scripting Error

    Good afternoon, I've been playing around with this script and cannot get it to run without "network path not found". I see the line that the message refers to, but I'm not seeing how it's an error given the variables set up top. Can someone shed a li