LR on two and sharing?

So is it possible or even a good idea if I have LR on two separate computers
looking on the same images? Will it mess up the db? Any precautions I should
take in doing this? I do backup frequently my LR db and my images too.
Thanks for the input you can provide!

Both accessing the same database, but not running at the same time. The <br />database will reside on one computer.<br /><br />In thinking of this though, is there also a way to limit what changes can be <br />made to the database/pictures from a secondary computer or will they both <br />have to have the same privileges?<br /><br />Thanks much for the response! Hope to hear more!<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Do you mean you want to have both machines running LR at the same time? Or <br />> do you mean alternating between the two?

Similar Messages

  • Is connection pooling and sharing available on Oracle 9i RDBMS ?

    Hello,
    I would like to connect from oracle to sql server through db link and ODBC (Heterogenous connectivity). But every session in oracle launch session in sql server. Is it possible to have connection pooling and sharing from Oracle RDBMS level ? I need one solution : when (for example) i run 100 sessions in Oracle i would like to see 10 sessions on sql server. I would like remain 90 sessions from oracle to be queued.
    I would mention that i was using Heterogenous connectivity with multithreading agent (agtctl) without success.
    appreciate any help :-)

    There are two concepts you could evaluate, but they are mainly used for connections to the database, not to sqlserver, but if you can make them work with heterogeneous connectivity this could help:
    Connection Pooling. When many sessions are connecting to the same database, it could be that some of them remain idle. Oracle can detect them and timed them out letting another session to enter into the database, letting the idle session remain open without closing its session. This is configured by means of the shared server architecture.
    Session Multiplexing. Session multiplexing allows the same bandwidth to be used by many sessions at the same time, this enables the server to use fewer network connection endpoints for incoming request. In order for you to configure session multiplexing you have to configure connection manager.
    Ref. Oracle® Database Net Services Administrator's Guide
    10g Release 2 (10.2)
    Part Number B14212-02
    ~ Madrid
    http://hrivera99.blogspot.com/

  • How do I stop two iphones sharing contacts?

    How can I stop two iphones sharing contacts and apps?

    Stop syncing them with the same address book or cloud service.

  • Online Backup and Sharing issue

    I am having trouble with the restore part of my Online Backup and Sharing.  Whether I select specific files or a folder, the history shows that the backup was successful, but when I try to find it in the list of files that can be restored, the files that I want are not there.
    I can see the structure of folders and sub-folders, but the specific files are not anywhere in my restore list.  
    Also, there seems to be two different structures with some of my folders in one and some in another with some redundancy.  Neither is complete.
    Is there a way that I can wipe what is in my online storage completely clean and start over?

    There is a specialized team who troubleshoots issues with the backup and sharing program.
    A dedicated internal phone number (866-770-6800) has been provided for hand-offs to the VOL Backup & Sharing Technician.
    Hours of Operation are Mon - Sat 7am - 11pm EST.
    After hours the customer will be asked to leave a message and someone from VOBS support will return their call during business hours.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Datasocket and Shared Variables

    I am curious if there is any advantage to using Datasocket to read/write shared variables (as opposed to a direct read/write).  I'm specifically talking networked shared variables here.
    Is there any speed advantage to accessing shared variables thru the Datasocket functions?  Since both a direct read/write and a Datasocket PSP read/write talk to the same variable engine I assume they are equally efficient but I'm looking for confirmation here.  I've seen benchmarks for shared variable performance but none of them use DS/PSP to access the variables.
    Normally I would not even think of using Datasocket to access shared var's but where I currently work we have a large app that does this and it works great.  I suspect that this functionality only exists in LV8.x for backward compatibility and non-Windows OS compatibility and is not really meant to be used for new, Windows-based apps?   Am I off base on this?
    I am working in LV 8.5, BTW.....

    Hello Jared,
    Thank you for the reply with clarification. 
    Based on your comment, I changed the buffer parameters and also tried the programs with two different data types, previously StringArray and now String.
    In the attached LV8.6 project, you have all the programs, and shared variable library to review my tests. 
    There are two sets of two files - each set has a Write Shared Variable and Read Shared Variable file. One set is for StringArray type Shared Variable (named StrArr in the library), and the other set is for String type Shared Variable (named Str in the library).
    String Array example:
    MultipleDS-Write-SharedV-StrArr.vi / MultipleDS-Read-SharedV-StrArr.vi
    In my String Array shared variable, I use only 4 element array, each having 4 character strings - meaning 16 bytes per String Array data. I have two loops in the write file, writing to the same variable, an array of 4 strings, each loop continues until the loop index is >0. This means, sometimes, depending on the processor speed, the variable will be written 3 times or 4 times (the variable could have a new value before the loop condition is checked).
    So this means, if I have buffer of 100 bytes (16*4=64<100), it's enough for 4 such arrays (of 4 elements, each element with 4 characters) could be buffered to have sufficient time at the client (Read) program to read them. 
    I am putting 2048 bytes in buffer, which is much more than sufficient in my case. 
    The writer loops run with 200 ms to wait for each iteration. The reader loop runs with 100 ms in DS timeout and 100 ms in wait timer. This gives results without any loss. However, if I run the reader loop with 1000 ms to wait for each iteration, the data is lost. The buffer is not maintained for 2048 bytes.
    In the read program, just to make sure if all data is read or not, I am showing data in two different string indicators, showing data of each loop.
    String example:
    MultipleDS-Write-SharedV-Str.vi / MultipleDS-Read-SharedV-Str.vi 
    The String Array shared variable didn't show values in the Distributed System Manager. Hence, I created another simple variable with String datatype.
    The writer program writes strings of 4 characters, one-by-one, in two loops. Meaning, total 8 strings of 4 characters each are written in the "Str" Shared variable. 
    The reader program, however, doesn't always display all the 8 strings. Although the wait timer is not high (slow) it still misses some data usually. Data is overwritten even before the buffer is filled (in buffer, I have defined 50 strings with 4 elements in each).
    In both of the Read programs, I read using datasocket. I think thought datasocket has more ability to buffer. Earlier I had "BufferedRead" in DataSocket, which I have changed to just Read, because BufferedRead didn't give any special buffer advantage in the Shared Variable reading.
    ---- This is an update on the issue. 
    Ok, just while typing the last paragraph above, regarding datasocket, something clicked in my mind, and I changed the DataSocket functions to simple Shared variables (completely eliminating datasocket functions) in the read programs as well. And bingo, the buffer works as expected, even if I have reading loops very very slow, there is no data loss in any of the program sets. 
    The two changed Read programs are also included in the attached project - MultipleSV-Read-SharedV-Str.vi and MultipleSV-Read-SharedV-StrArr.vi
    So this means, I can completely eliminate DataSockets (not even using PSP URLs in DataSocket Open/Read functions) from my programs. 
    One question here, what will be an advantage of this (or any side effects that I should be keeping in mind)?
    Vaibhav
    Attachments:
    DataSocket.zip ‏71 KB

  • Verizon Online Backup and Sharing Error Message

    Started getting Verizon Online Backup and Sharing error message at startup about two weeks ago and can't connect via VISS.  Anybody else out there having this issue?  Tried downloading update but can't open the file.  Also seems to be affecting VIHA.  - takes forever to open.  Heard syncNshare has been hacked.  Is this true?

    Sorry to hear about the problems with your Verizon software. So we can get more information from you, I have copied your post to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD, they won't let me change the permissions and I keep getting errors that say the permissions should be 0 and are 501 and having files i can't delete that

    Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD, they won't let me change the permissions and I keep getting errors that say the permissions should be 0 and are 501 and having files i can't delete that go on and on ad infinitum... I think it's a virus or a corruption? Can anyone tell me or help me and let me know what I'm dealing with here or wether I'm mistaken and should leave it alone?
    I'd appreciate it.
    Thanks,
    Matt

    mattmakesvidiots wrote:
    Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD
    Why do you want to delete those?  What have you done so far to do that?
    I doubt that Mac has a virus.  On the other hand, your attempts to deleted those folders may have caused corruption.
    Two other comments:
    1) Is there a reason that Mac hasn't been updated to OS X 10.5.8?
    2) You've been misled by the poor field labeling on this Web site into trying to type your entire post into the "subject" field.  In the future, just put a short summary of your post into that field.

  • Leopard, Vista, Time Machine, and Shared on a single disk

    A friend of mine recently bought one of the new Mac Pros and I'm helping him set it up.
    Here's what I want to do and I've been having considerable trouble getting this to work.
    My friend got a single terabyte hard drive and I want to partition it into four partitions- one for Leopard, one for Vista, one for Time Machine, and one for Sharing files (FAT 32).
    I found out the long way that Boot Camp will not let you install Vista if you already have several partitions on your hard drive.
    Here's what I have done so far.
    1. Erased the drive and installed a fresh installation of Leopard
    2. Run Boot Camp to install Vista (this worked fine and I was able to boot into both operating systems)
    3. Booted from OS X install disk and used disk utility to create two new partitions from the HSF formated Leopard drive
    My problem is that creating these new partitions deactivated the Vista Partition. The windows partition still shows up in Disk Utility as it did before but when I hold down option to try booting into Windows, Vista no longer shows up. The Mac Works fine as does the Time Machine and Shared partitions.
    Could someone please help me to get Vista working again. I hope I won't have to reinstall everything to make this work but if that's the only way, could someone at least tell me how to accomplish my original goal with the computer setup?

    VaatiKaiba wrote:
    I'm going to install Windows on my Mac soon (for dev purposes, I love Leopard!), but was just wondering something. When I install Vista, will Time Machine backup the Windows partition of the HD?
    No but wait ...
    If not, can I backup the Windows partition using a Windows program? Also, can I back them up onto the same disc, or will that confuse Mac OS if it has to look back for a backup?
    Even better there is a program that will make an image of your Windows partition from OS-X!
    It's called Winclone and the latest version supports both NTFS and FAT32.
    Get it here - it's free.
    You should not backup a program onto the same HD. When the HD fails, you lose the backup as well as the original.
    Backup your Windows partition to your TM drive. It's a perfect match.
    http://www.twocanoes.com/winclone/
    Thanks!

  • Semaphores and shared memory's classes

    Hi there,
    I looking for the classes used to deal with semaphores and shared memory. Does anyone know which are these classes?
    Thanks

    The file mapping capability added in 1.4 may result in shared memory but this is not guaranteed. You can use JNI to call some C code which allocates shared memory and then uses the NewDirectByteBuffer method to return a ByteBuffer representing that shared memory to the Java code.
    You would also need to use JNI to wrap system provided semaphore or mutex operations to provide cross process synchronization.
    However, do your communication needs really require performance in excess of that available using sockets? I can get at least 7MB/s between two processes on a rather modest machine.

  • I seem to have at least two, and maybe four, iCloud accounts, across my iPhone, my iPad and my MacBook Pro. Can I combine them into one iCloud account?

    I seem to have at least two, and maybe four, iCloud accounts, across my iPhone, my iPad and my MacBook Pro. Can I combine them into one iCloud account? I have been able to log into what appears to be three of the four iCloud accounts I have. Two of them seem to be remarkably similar, and one appears to be only for my MacBook.I think I know which one my iPhone is backing up to, as I successfully restored from a back-up last week. The fourth iCloud account I can't access via password or security questions. Any advice would be much appreciated.
    Thanks.
    Cheers,
    Aaron
    Melbourne, Australia

    You cannot merge accounts.

  • My iPod Touch is running on ios 7. In the last two and a half months all the apps of my iPod have been wiped out twice. I had to download all the apps all over again. Why is this happening?

    My iPod Touch is running on ios 7. In the last two and a half all the apps of my iPod have been suddenly wiped out twice. I had to download all the apps all over again. Why has it happened?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              

  • Local disk access and sharing changes

    I have a Mac Dual 2.3 Ghz G5 operating OS X Server 10.4.6. Among other things I use this server to run duplicates of a local internal hard drive, as well as networked client hard drives, to external Firewire backup hard drives that are local to this server.
    Frequently the ownership and sharing attributes of these local external backup hard drives mysteriously change. Through Workgroup Manager, I set the disks to be shared, with certain users and groups having read/write privileges. Later, the read/write privileges mysteriously reset to "none", the owner is changed to "root", and the group is changed to "wheel." Sometimes the "share this item and its contents" box is mysteriously unchecked as well.
    Manually resetting the attributes back to the desired state does not prevent the problem from recurring.
    I use Retrospect 6.1.128 to automatically duplicate local and network files to these local external Firewire hard drives. I don't know if this is related to the problem or not. The backups run throughout the day.
    What's going on and how can I avoid this continual reset of sharing and ownership attributes?
    Thank you for any light you can shed on this frustrating problem.

    Just out of Morbid Curiousity- If you get info on those Firewire drives- do they have the "ignore Permissions...." box checked.

  • Downloads to iPhone gone after sync with iTunes 9 and shared libraries

    I have songs that I downloaded directly to my iPhone 3g-s. After the first time I synched the iPhone to my laptop after installing iTunes 9 and sharing songs with my desktop, songs have disappeared from my iPhone. When I search the song, the title is there but when I click the song, it says to purchase the song from iTunes. The songs are on neither of the 2 computers sharing songs. However, only some of the songs that I had downloaded directly to the iPhone from iTunes have disappeared.

    I read another post here and the solution is simple: goto file and select 'Transfer Purchases from iPod". It works perfectly!

  • My macbook is two and half year old, going to sleep mode randomly

    Having used this Macbook for almost two and half years, my machine has suddenly generated the problem of going to random sleep. It started as an infrequent thing, then it started happening on a regular basis, to the point that it became almost impossible to work with it. When the computer goes to sleep mode, it doesn't wake up with any key, it has to be woken up by pressing the power button lightly.
    Here are the steps I took:
    1. The normal thing I did was search Apple Forum and then reset SMC, PRam, then changed energy saving options, everything. Nothing worked.
    2. Ran the hardware test and no problems found.
    3. Ran the Macbook with all options: with just the battery, without the Magsafe connected, with Battery and Magsafe connected together, with battery removed and the computer running on Magsafe only. Random Sleep continues
    4. Thought must be a connection issue and ran to Apple Store in Kolkata, India, thinking that it could be a connection issue with the sleep-mode cable. Apple Store kept the Macbook for seven days, saying that they needed to check the machine, returned it on the seventh day saying that the machine was fine and charged me Indian Rupee 1,500/- (about $ 34). I came back home and the problem persists.
    (Here I would like to add that Apple Service in Kolkata *****, probably ***** all over India, simply because Apple is not a major player in this country. The service engineer at Apple Store was at a loss with my problem and after seven days could only say, "We have done our internal tests and found no problem with your Macbook." When I asked about the Sleep Mode sensor connection, he said, "That is working fine, we have checked that.")
    5. After coming back home, I faced the same problem, this time with lesser time gap. It would go off to sleep every one minute or so. I decided to set my computer on "never to sleep mode" in the enery saving option. Alas, that didn't help either.
    6. I redid the hardware check, only to find that my computer hasn't detected any hardware problem.
    7. Now, as a previous Windows user, I thought that the problem must have been with the OS. So, at the risk of losing all my files, I decided to reload the OS. (My original OS DVD was Leopard, but it was later upgraded to Snow Leopard by the vendor free of cost). I took backup in Time Machine, and backed up the documents in another Disk and reloaded the OS. All seemed fine so far, for about 10 minutes. I was now confident that finally I could solve the problem and was then planning to migrate my previous files to my newly loaded OS-X. Alas, I was wrong. Before I could connect the external HDD to my computer, my Macbook went back to its previous trick of falling asleep.
    I'll definitely take back my Macbook to Apple Care tomorrow, but with my experience here in Kolkata, don't know whether they would be able to solve anything. Last time I had to show them the posts in Apple Forum to prove that Random Sleep is a problem that happens to Macbook.
    PS: My Macbook is with aluminium body bought in January 2009. Out of warranty. My optical drive conked off long ago (after about 15 months or so after I bought the Macbook) and I live with an external drive.  

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • How can I use TopLink for querys that have two and more tables?

    I use TopLink today, and I can use one table to query, but how can I use TopLink for querys that have two and more tables?
    Thank you for see and answer this question.

    You can write a custom SQL query and map it to an object as needed. You can also use the Toplink query language "anyOf" or "get" commands to map two tables as long as you map them as one to one (get command) or one to many (anyOf command) in the toplink mapping workbench.
    Zev.
    check out oracle.toplink.expressions.Expression in the 10.1.3 API

Maybe you are looking for