Synching two seperate databases

Is there any way to sync two separate databases tomy 9630 tour?

Ahhh...OK then. So that's Contacts only, I am going to assume. From two separate sources. Challenging. Here is the list of compatible desktop PIMs...since Respond is not in there, I see no native method. However, all is not lost...I can see a few possibilities.
The RIM DTM software can import contacts from a CSV or ASCII file...see this KB and this KB. You'd have to somehow use Respond to export to the format that DTM can indeed read. However, I'm concerned about how this would result on your BB...I'm thinking that you'd have, on your BB, your Contact list and everything would be intermingled with no real way to tell them apart.
Another method might be to export from Respond and then import those into Outlook, assigning categories in Outlook that will synchronize to the BB.
Speaking of which, it sounds as if Respond may already be integrated into Outlook? If so, then enabling those contacts to sync to your BB may be as simple as ensuring that all of your Contacts are in the main Contact folder (in Outlook), divided by Category settings so that you can tell them apart (and apply a filter on the BB).
Or -- Outlook sub-folders can synchronize to the BB...placing all of your Respond contacts into a folder that is sub to the main Contact Folder could also achieve what you seek. See this KB for that method.
As you can see, there are several methods to achieve what you desire. Not knowing Respond is what makes it hard to be precise with a recommendation. But, if it were me, I'd probably go with the last one -- a sub-folder (to Contacts) in Outlook that I then configure to synchronize with my BB.
Hope that helps!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • How to compare two fields in two seperate databases

    Hi
    Can we compare two columns in two separate databases with a one script.
    Cheers
    Shabar

    Hi,
    if you mean Oracle to sqlserver then you would have to put hand in pocket and buy ODBC connectivity for this...
    If it is just a one off maybe export your data and import into Oracle table and do your one off comparision.
    regards,
    Robert.

  • Accessing two seperate databases

    Hi, new to discoverer, can a workbook access to seperate oracle databases? If so, how?
    Thanks,
    Kevin

    Yes.
    In Administrator, you can change the database parameter to reference tables in a foreign database's schemas.
    Alternatively, you can use a custom folder (useful if you want to join local and remote data before presenting it to the user, for example) - just say SELECT * FROM table@remote_DB.
    d.

  • Querying Tables from seperate Databases

    I'm sure this is very simple, but I cannot figure out how to query information from two tables that live in two seperate databases.
    Ex.
    Select database1.table1.field1, database1.table1.field2, database2.table1.field1
    from database1 left outer join database2 on database1.table1.field1 = database2.table1.field1
    Any help would be appreciated!

    If you are using "database" in the Oracle sense, rather than in the sense that other databases use the term (i.e. a SQL Server "database" is analogous to an Oracle schema), you would need a database link.
    In database 1
    CREATE [PUBLIC] DATABASE LINK dblink_name
      CONNECT TO username
      IDENTIFIED BY password
      USING tns_aliasThen
    SELECT tab1.field1, tab2.fieldN
      FROM table1 tab1 LEFT OUTER JOIN table2@dblink_name tab2 ON (tab1.field1 = tab2.field1)Justin

  • Synch Between Tables in Two different Databases

    Synch between Two Tables in two different Databases.
    I have two identical tables, table T1 in Database D1 and table T1 in Database D2. User can insert/update/delete/select from both of these tables in respective databases. Being said that how can keep them in Synch? Any thing added/modified/deleted should reflect in other. We like this to be Real-Time.
    We are thinking of creating a cross (two way) DB link between them and then update/insert/delete both the tables when changing one. Any suggestions?
    Thanks

    One of my colleagues used snapshot in their previous projects, but he told me that the performance of it wind down while the records in tables increase. I have no idea about the exact situation, but I'm believing we'd think twice about it.
    eilison
    [email protected]

  • Can you synch two ipods on one computer?

    I just bought a nano my husband has a classic, just wondering how to synch two, do I need to create a seperate folder or is this not possible?

    do I need to create a seperate folder
    No.
    or is this not possible?
    Yes it is possible.
    Plug in your iPod to sync it.

  • Two Oracle databases on one AIX Server - Note working, Pls Help

    Dear Friends,
    I have installed Two SAP systems with Two Oracle Databases on one AIX machine, The Installation of both the systems went fine without any errors, and also i have been able to login to both the systems seperately. (that means i cant start both the systems at a time, its one at a time)
    But the problem is of the Oracle Listener, i am not able to start both the systems with single Oracle Listener processes(tnslistener). I tried all the possible scenarios as mentioned in note 98252 but nothing seems to be of any use so far.
    the thing is i can start either one of the SAP Systems, But my objective is to start both the SAP Systems with one listener processes (LISTENER) and one listener port (1527)
    Or
    you can say i am also ready to keep two different listeners for TWO seperate Oracle databases, I tried doing so as per one of the sap notes in which you have to keep different names of listener and different numbers for listener port for second ORACLE database. I tried doing exactly mentioned in the note but yet unsuccessful...
    Now i am completely lost as what is to be done since its critical i want you to immediately look into it and suggest me the appropriate solution so that i can set up both of my DEVELOPMENT and QUALITY system running...
    To troubleshoot this if you require anything from my side then please feel free to ask me since our functional consultants have to soon start working on the SAP systems.
    Regards
    Ayush

    The note you specified talk about 2 database instances not 2 databases... (I was starting to wonder how you deploy 2 databases), you can have multiple database instances on a DB. The note also give you detailed explanation of the configuration of listener.ora
    Now, if this is the case and you have installed 2 instances (not databases) on the same host and configured the listener according to the note, then you should be able to call R3trans -d from both SID's.. if the R3trans fails please post the contents of trans.log here.
    the thing is i can start either one of the SAP Systems, But my objective is to start both the SAP Systems with one listener processes (LISTENER) and one listener port (1527)
    Then, the configuration of your listener.ora file must be incorrect.
    Regards
    Juan

  • Entity Bean Rollback fails: caches are out of synch with the database

    We are encountering a critical issue where the rollback of a session transaction rolls back any database changes, but doesn't roll back bean changes in memory. When we next access the bean, it returns information that should have been rolled back. The memory cache is out of synch with the database.
    We have a simple session bean S, using container managed transactions. We also have an entity bean E using bean managed persistence. E has a single member <name>.
    We implement a method s() in S with <trans-attribute> Required as follows:
    public void s() {
    Context lookupContext = getLookupContext();
    SHome shome = (SHome) lookupContext.lookup(SHome.NAME);
    S s = shome.findByPrimaryKey(thePrimaryKey);
    System.out.println("-- current name = " + s.getName());
    s.setName("IGNORE");
    EJBContext ejbContext = (EJBContext) getContext();
    ejbContext.setRollbackOnly();
    Since this is BMP, the setName call issues our SQL update against the S record. When the session transaction rolls back, the database changes are also rolled back. But the entity bean in memory shows the modified name. We can see this in the next call to s() since the getName() returns IGNORE rather than the original value. We have also gotten debugged into the underlying instance cache associated with the S bean descriptor. I.e.
    AbstractEJBHome ejbHome = (AbstractEJBHome) lookupContext.lookup(SHome.NAME);
    AlternateHashTable aht = ejbHome.getBeanDescriptor().getCache();
    Looking at this map of bean instances also shows that the bean instance for S is not rolled back.
    From previous conversations with the server technologies team, we understand that during the transaction, we should be working on a cloned copy of the S bean. Upon rollback, the copies should be discarded rather than merged back to the cached bean. They seem to be merged regardless of rollback state.
    We are using OC4J 10.1.3.0.0 (build 060119.1546.05277).

    Actually, what one or the developers in my group found out is two things:
    1) The clone is a shallow copy.They copy the references but not objects themselves. This has been causing problems for us.
    2) It seems that you don't work on a copy and you work on the original and they keep a copy. Now, this is fine IF you don't have multiple threads working on the same Entity bean and we moved our application from Weblogic where it throws an exception if that Entity bean is in use to OC4J which is suppose to copy the bean and doesn't so you have multiple threads possibly modifying the same object.

  • Merging files purchased under two seperate accounts.......

    I have song within I tunes that were purchased under a specific ITunes account. When I deleted that e-mail account I created another ITunes account with my new e-mail account. I now have a variety of files in Itunes under two seperate accounts. My first question is, how can I merge these accounts so that my files are listed under my active account? Secondly, this is creating problems as I have activated another pc and am trying to synch my original library on the new pc.
    Can anyone help?

    You can't merge 2 accounts. The purchase name is embedded in each file and you are going to have to authorize using both accounts forever.
    Each account has a limit of 5 PCs that you can authorize. So just activate both PCs with both accounts - use the Store > Sign Out menu item to switch between accounts.
    This is a user chat board, and you're welcome to ask iTS support to merge your accounts, but others have not been successful.
    http://www.apple.com/support/itunes/store/email/

  • APEX Application accessing data from two different databases

    Hi All,
    Currently as we all know that APEX Application resides in database and is connected to the schema of that database.
    I want APEX Application to be running and accessing data from two different databases. Elaborating my question,
    Currently, my APEX Production Application is connected with XXXX Schema of DB1 Database(Where APEX Resides). Now I want to add some pages into this APEX Application for REPORT Purpose, But I want to connect this REPORT APEX Pages to get data from Different Schema YYYY for Database DB2.
    Is it possible to configure this scenario?
    The reason for doing this is to avoid the REPORT related (adhoc queries) resource utilization effect on Production DB1 Database.
    Thanks
    Nil

    1. If you do the joining of two or more tables in DB1 then all data is pulled over to DB1 and then the join is executed: so more data over the databaselink and more work for DB1. Better keep the joining stuff where the data resides and just pull exactly that data over that you need.
    2. Don't know about your different block sizes. Seems a nice question for one of the other forums (DBA or SQL).
    3. I mean create synonyms on DB1 for reports VIEWS in DB2.
    Hope all is clear!

  • How to add two different database connections on Model

    Hi,
    In my application, I need to create View Objects on different databases. So I need to add two different database connections on the Model.
    But it seems like Model can be connected to only one database. I tried adding another project to add the second db connection. But after I created a read-only View Object in the second project, it didn't generate corresponding data control in the Data Controls panel.
    Could anyone help me on this?
    Thanks!

    Do you mean adding the second project folder in ViewController->Project Properties->Libraries and Classpath?Yes, either that or: ViewController -> Project Properties -> Dependencies
    And I didn't see the first Model project in the ViewController classpath. Otherwise it wouldn't work. The first model project IS in 'classpath'. Here's how:
    ViewController -> Project Properties -> Dependencies
    I tried this and recreated the View Object. Still didn't generate the datacontrol. No idea why you had to recreate the VO.
    Is your VO in an application module inside the SECOND project?
    After you are sure that everything is in the ViewController's classpath, just try restarting JDeveloper.
    This is very basic. has to work.

  • Ok... So can you have two seperate itunes accounts on the same computer?

    My dad is getting an ipod for christmas... and well I don't want him on iTunes draining all of my money. Is there a way that you can have two seperate accounts on one computer?

    Yes. If you want separate iTunes accounts, the easiest way is to set up 2 users on the computer, each with their own iTunes library.
    If the two phones share the same iTunes account this is not necessary.

  • I bought my daughter an ipod. Can I have two seperate itunes libraries on one computer? If so, how do I set this up?

    I bought my duaghter an ipod. Can I have two seperate itunes libraries on one computer? If so, how do I set this up?

    I followed these instructions & have created a new library file. However, all my music now appears in the new library as well as my own. (I bought my daughter an ipod nano for christmas & want to separate itunes libraries on one computer). How can this be so difficult?

  • Can I use one apple id to manage two seperate itunes libraries on two seperate pc's?

    First time forum user, bear with me. I have two seperate PCs with two seperate ITunes loaded (both completely dependant of each other). On itunes and one pc manages my ipod, i now wnat a seperate pc and itunes to manage my iphone. Can I use the same apple id for both?

    Hello Schurly
    Yes you can, you can have up to 5 computers authorized for playback on purchases. If you have not purchases, then there is nothing to worry about there as well.
    iTunes Store: Authorize or deauthorize your Mac or PC
    http://support.apple.com/kb/ht1420
    Regards,
    -Norm G.

  • How do I get my music from my account on old computer to new computer? And how do I have two seperate itunes accounts on one computer?

    I had my music on my itunes on my old computer (pc), and need to move it to my husband's computer. My husband and I both have iphones and want to keep using our seperate itunes accounts on one computer, as we both have our own media set up on our accounts. I had burned my music from the old computer onto discs and imported onto the new one...works in the library but I can't put them into playlists, which means I can't put the music on my iphone. As for using two seperate accounts on one computer, it was suggested to me to make another profile on windows (vista), and use the second account on that profile. I did that and have had such a frustrating time trying to get this to work. I don't know if I've done something wrong, but it's just headache after headache. Somehow my apps even ended up on my husband's account? Also, how can we share music between our profiles? It seems ridiculous that we should have to buy an album twice just because we have to different accounts. I would be willing to create a third joint account with my husband, but only if we can still have our own music, apps, etc, and can somehow transfer the music we have to this new account...if possible.  Suggestions please???? I'm so close to pulling out my hair over this!!!

    You'll need to copy the music currently on your iPod to your new PC and into iTunes first before you can sync it to the new iPod.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

Maybe you are looking for

  • Problem uploading images with php script.

    As a webdebdesigner i developped a cms system to upload images with php to a mysql database. Firefox version 5.0.1 for MAC and earlier have no problems with uploading through the script. But after that version it is impossible to upload images bigger

  • WRT54G V5 Log Files

    Is anyone having any luck using the Log files, under the Administration tab, in this router? I'm trying to verify traffic is actually trying to get out to the Internet and vice-versa. Incoming log NEVER shows any info. Outgoing log sometimes shows a

  • While importing from my digital camera (Olympus XZ-2), iMovies quits, WHile importgin from my digital camera (Olympus XZ-2), iMovies quits

    While importing from my digital camera (Olympus XZ-2), it "unexpectedly quits" - seems to happen on slightly larger clips (over 90 seconds) - not sure if it is related to the model camera or iMovie 11'. Any advice?

  • Cannot complete request. App Store Error. Please try again (20)

    When trying to update iTunes in the App store, I repeatedly get this error message: We could not complete your request. There was an error in the App Store. Please try again later (20)

  • QUERY_DATA_SOURCE_NAME

    Hi Everyone. I have to change the data source name of a block at runtime, ive placed this code in one of the button on when_button_pressed trigger. sql_string:= '(select a.cust_id , a.booking_date , a.claiming_code , a.appointment_id , b.first_name ,