Does the JDBC driver need to changin when moving Oracle 9i to Oracle 11g??

Hi All,
I have two cases
Case 1:
Application is deployed on WebLogic 10 (JDK 5) and connects to Oracle 9i database using the thin driver. Now the database is now moving from ORacle 9i to Oracle 11g. I have the following question:
1. Does the driver jar file and/or driver class need to be changed on the connection pool front?
2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
Case 2:
Application is deployed on WebLogic 8.1 (JDK 1.4) and connects to Oracle 10g database using the thin driver. Now the database is now moving from ORacle 10g to Oracle 11g and application is moving to WebLogic 10. I have the following question:
1. Does the driver jar file and/or driver class need to be changed on the connection pool front?
2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
Additioanlly, are there any other factors that I need to consider when upgrading these applications. Does any one have checklists?
Any help will be really helpful.
Thank you
Nikhil

nikhil.gonsalves wrote:
Case 1:
Application is deployed on WebLogic 10 (JDK 5) and connects to Oracle 9i database using the thin driver. Now the database is now moving from ORacle 9i to Oracle 11g. I have the following question:
1. Does the driver jar file and/or driver class need to be changed on the connection pool front?Advised to do so (bugfixes, possible performance optimisations), not required unless you want to use functionality the 9i driver doesn't support.
2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
Not unless you want to use things not supported by the old driver.
It is however a very good idea to at least update the name of the driver class, as the name used for the 9i driver has been deprecated (it's still allowed, but now leads to another method call which is a waste of CPU time).
Case 2:
Application is deployed on WebLogic 8.1 (JDK 1.4) and connects to Oracle 10g database using the thin driver. Now the database is now moving from ORacle 10g to Oracle 11g and application is moving to WebLogic 10. I have the following question:
1. Does the driver jar file and/or driver class need to be changed on the connection pool front?See above.
2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
See above (except for the driver class name which you should have used the new name already had the application been written to make use of the new name which was introduced in 10g).
Additioanlly, are there any other factors that I need to consider when upgrading these applications. Does any one have checklists?
You should always do a full regression test of your entire platform when attempting a migration like this.
Worst example of what can go wrong I ever encountered was an application where an upgrade of the database server it ran on led to a bugged batch job that for 5 years had (unnoticed to anyone) never completed because it always entered a timeout causing a rollback now suddenly no longer timing out and inserting 10k records of corrupt data every time it was run (where what it should insert were maybe a few dozen records of actual data at most).
The database engine upgrade had not been announced to the dev team, the team responsible for it didn't do regression tests (as application testing is the responsibility of the dev team), the sys admins who should make full backups at upgrade moments (so we could roll back to the previous release if something went wrong) made no backup because it was no application upgrade, and now one of the core applications for several dozen offices was fundamentally broken.
Technical lead for the application was literally on the other side of the world on a vacation, functional lead had left the company, the entire dev team consisted of me as a contractor brought in just 2 weeks prior and a new functional lead who'd arrived at about the same time, we were both still trying to get to know the system.
Potential financial loss: millions a week if it wasn't fixed quick.
That's the nightmare scenario from hell of course, where everything that could go wrong did go wrong all at the same time.

Similar Messages

  • Why does the hard drive keep spinning up when in sleep mode?

    When my iMac 27" is in sleep mode I have noticed that the hard drive spins up very regularly every 4 or 5 minutes. Also when placed in sleep, the monitor takes about 30 seconds to go black. It also wakes on its own for no apparent reason. No new software has been added, only normal updates, running Lion. Time machine backup is done every couple weeks.

    Power or other problems related to unexpected system sleep, shutdown, lights or fans call for an SMC reset. Read all the steps.
    Before Resetting the SMC
    Try each of the following steps in this order before you reset the SMC. Test the issue after completing each troubleshooting step to determine if the issue still occurs.
    Press Command + Option + Escape to force quit any application that is not responding.
    Put your Mac to sleep by choosing the Apple () menu from the upper-left menu bar and then choosing Sleep. Wake the computer after it has gone to sleep.
    Restart your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Restart.
    Shut down your Mac by choosing the Apple () menu from the upper-left menu bar and then choosing Shut Down.
    Resetting the SMC for Mac Pro, Intel-based iMac, Intel-based Mac mini, or Intel-based Xserve
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on the computer.
    If the problems persist after performing the above read the following.
    Open the Terminal app - it is in your Mac's Utilities folder and looks like this
    Select the entire line that follows (triple-click to select it), select Edit > Copy, and then Paste it into the Terminal window:
    clear; printf '\e[3J' && echo "**** Sleep/Wake events"; egrep -i 'eep\ cau|ake\ rea' /private/var/log/system.log; echo "**** Assertions"; pmset -g assertions
    Copy the text of that entire window by selecting Edit > Select All, then Edit > Copy. Paste the text in a reply to this Discussion.

  • Where and when is JDBC driver needed?

    I'm just getting started with JDBC + MySQL. I'm writing applets. But where/when do I need to install the JDBC driver?
    1. Only at compile time and only on the machine where I compile my java code.
    2. On my webhosts server.
    3. On the client as some sort of plug-in. Meaning everyone who views my web page would have to download & install something.
    Thanks.

    The JDBC driver will be downloaded to the client
    machine in the codebase. The client has to havethat
    class in order to connect to the server. So itdoes
    add to the size of the download, it's just not
    permanently installed on the client machine.
    wrong.
    NO you are WRONG again!!!
    this is an APPLET not a SERVLET
    this means....
    (and really try to use your limited intelligence to read this next part carefully)
    that the JDBC connection is coming from the client's machine where the applet is running.
    this means that the applet will download the JDBC driver as part of what it needs to run.
    if this is was a servlet then obviously the driver would only be needed on the server....
    but it isn't
    it's an applet
    >
    The database must be running on same server thatthe
    applet came from, according to the sandbox
    restrictions on an applet. You might haveadditional
    security problems trying to connect to a different
    port. wrongwrong again...
    see above.
    >>
    I'd recommend against have an applet connectdirectly
    to a database. Have the applet connect to anobject
    running on the server that will do the database
    connections and queries on its behalf. - MODdont know what you mean by an applet connect directly
    to a database. how? the rest seems to be correct. to
    be more precise, however, i must add that you would
    need to use servlets in between an applet and the
    server. an applet cannot connect to machines other
    than the one that hosts it, yet the database can be
    anywhere as long as it is visible by the jdbc code
    residing on the hosting server. like you said
    correctly, the jdbc code does not have to be
    wodnloaded to the client machine, thus it adds
    nothing to the size.
    hope this helps.this almost contains some useful information...
    to the original poster.
    the stuff posted by duffymo is correct, stuff posted here (and elsewhere) by daFei is garbage and should be ignored.

  • Does JDBC Driver needs to be downloaded ?

    Does JDBC Driver needs to be downloaded in order to be used?

    Does JDBC Driver ....Huh?
    JDBC is an inteface. It is part of the standard API that should come with most JVMs.
    JDBC uses 'drivers' which are specific to the purpose at hand. The jdbc-odbc bridge driver comes with the Sun JVMs and has since at least version 1.1.4 (years ago.) Other drivers must be downloaded or acquired. For example the Oracle drivers can be downloaded from the Oracle site and they also come on the Oracle client install.

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • CF 10 getting random resets : Detail: [Macromedia][SQLServer JDBC Driver]A problem occurred when attempting to contact the server (Server returned: Connection reset).

      These resets appear to coincide with a clearing of the cached queries for the DSN from memory, breaking all my sub queries that try to use the initial cached one.  I am grasping at straws to discover the reset culprit, the DSN tests always show OK, there is not packet loss at the switch level.  If anyone has some suggestions, I am all ears!
      The resets are completely random and under no load.  My sql 2008 r2 box is set to unlimited connections.
    An example of a DSN setup is :
    Maintain Connections [x]
    String Format [ ]
    Max Pooled Statements 100
    Timeout 20 Interval 7
    Query Timeout 0
    Login Timeout 30
    CLOB [ ]
    BLOB [ ]
    Long Text Buffer 64000
    Blob Buffer 64000
    Validate Connection [ ]
    I am running the following :
    CF Enterprise 10,0,13,287689
    Tomcat 7.0.23.0
    Ubuntu 1204 x64
    Java VM 20.4-b02
    Java 1.6 (Sun Microsystems Inc)
      I have seen it suggested to uncheck the maintain connections advanced options but this doesn't seem like a good approach to the problem and will cause more stress on the sql box IMHO.
      I have also seen it suggested to enable Validate Connection but documentation on this is a bit sparse...
    Here are more examples of the initial reset error and then the subsequent cache related errors :
    Database Error Information:
    Native Error Code: 0
    SQL State: 08S01
    Query Error: [Macromedia][SQLServer JDBC Driver]A problem occurred when attempting to contact the server (Server returned: Connection reset). Please ensure that the server parameters passed to the driver are correct and that the server is running. Also ensure that the maximum number of connections have not been exceeded for this server.
    Custom Error Code: 08S01
    Database Error Information:
    Native Error Code: 0
    SQL State: n/a
    Query Error:
    Query Of Queries runtime error.
    Table named GlobalDetails was not found in memory. The name is misspelled or the table is not defined.
    Custom Error Code: n/a
    Thanks in advance to anyone who has a suggestion.

    Hi, could DBA check MS SQL Server connection logs???
    May be server has some limits (for example sessions, memory and e.t.c.)

  • HT204414 does the system library need to be on the primary hard drive or can it be on my external hard drive and still be able to use the cloud?

    does the system library need to be on the primary hard drive or can it be on my external hard drive and still be able to use the cloud?

    I have the system Library on a second internal drive and it is syncing with iCloud with no problems. Also the Media Browser it seeing it there.
    Only make sure, your external drive is directly connected and correctly formatted MacOS Extended (Journaled).

  • Error oracle.sql.* and oracle.jdbc.driver.* not found when using oracle as a database

    I am using oracle as database and weblogic 4.5. I have copied the classes12.zip file in lib directory of weblogic. I am getting the error that oracle.sql.* and oracle.jdbc.driver.* not found when i am importing these packages in a jsp file. what i need to do to import oracle driver packages?I put it in the classpath also.
    Please Advice!
    Thanks in advance
    AnuPama

    Hi Anupama,
    First of all I would be surprised if you would not like to use the connection pooling feature of weblogic (in which case you might not be needing the import the classes directly), and would like to open direct connections to your database. Anyways for doing that I would recommend you to check out the readme doc that ships
    along with the jdbc oracle (classes12.zip etc). I am giving an excerpt over here:
    These are a few simple things that you should do in your JDBC program:
    1. Import the necessary JDBC classes in your programs that use JDBC.
    For example:
    import java.sql.*;
    import java.math.*;
    2. Register the Oracle driver before before calling other JDBC APIs.
    (This is not needed if you are using the JDBC Server-side Internal
    Driver because registration is done automatically in the server.)
    To register the Oracle driver, make sure the following statement
    is executed at least once in your Java session:
    DriverManager.registerDriver(
    new oracle.jdbc.driver.OracleDriver());
    3. Open a connection to the database with the getConnection call.
    Different connection URLs should be used for different JDBC
    drivers. The following examples demonstrate the different URLs.
    For the JDBC OCI8 Driver:
    Connection conn = DriverManager.getConnection(
    "jdbc:oracle:oci8:@<database>",
    "scott", "tiger");
    where <database> is either an entry in tnsnames.ora or a SQL*net
    name-value pair.
    For the JDBC Thin Driver, or Server-side Thin Driver:
    Connection conn = DriverManager.getConnection(
    "jdbc:oracle:thin:@<database>",
    "scott", "tiger");
    where <database> is either a string of the form
    <host>:<port>:<sid> or a SQL*net name-value pair.
    For the JDBC Server-side Internal Driver:
    Connection conn = DriverManager.getConnection(
    "jdbc:oracle:kprb:");
    Note that the trailing ':' character is necessary. When you use
    the Server-side Internal Driver, you always connect to the
    database you are executing in. You can also do this:
    Connection conn
    = new oracle.jdbc.driver.OracleDriver().defaultConnection();
    Hope this helps,
    Thanks,
    Anupama wrote:
    I am using oracle as database and weblogic 4.5. I have copied the classes12.zip file in lib directory of weblogic. I am getting the error that oracle.sql.* and oracle.jdbc.driver.* not found when i am importing these packages in a jsp file. what i need to do to import oracle driver packages?I put it in the classpath also.
    Please Advice!
    Thanks in advance
    AnuPama--
    Apurb Kumar

  • Upgrade MS SQL 2005 platform to MS SQL 2008 - Update the JDBC driver...

    Hello to all,
    This is the second post that I created reporting this error because in the first one I open this message in group of "SAP on SQL Server" but without any kind of help from community:
    My problem is...
    I´m planning to do an upgrade of a sap system (SAP ECC 6.0) from SQL Server 2005 to a SQL Server 2008 but I´m facing with a little problem. This system has two stacks - ABAP + JAVA - and because of that the Upgrade Guide to MS SQL Server 2008 describe which are the requirements for this upgrade DB platform, and one of them is this:
    "If you use a Java system, you have updated the JDBC driver as described in SAP Note 639702"
    ... the updated of JDBC driver when we have in system a Java part, like it has in this case! But I´m with a serious problems to find in SAP System Files in Windows 2003 Server the four files that is mentioned in that note 639702. I can´t find it anywhere... in note says:
    Depending on the SAP release and the system configuration, the driver files base.jar, util.jar, sqlserver.jar, and spy.jar are available in an installed system at:
    (NetWeaver'04, Java:) usrsap<SAP SID>JC<InstanceNumber>j2eejdbc
    (NetWeaver'04, ABAP+Java:) usrsap<SAP SID>DVEBMGS<InstanceNumber>j2eejdbc
    (NetWeaver 2004s:) usrsap<SAPSID>SYSexe<NUC|UC>Platformmssjdbc
    But... still I didn´t find them! I also read other note 1109274 - New JDBC driver for NetWeaver 7.0 and higher but even so I still can´t find it!
    Can you help me to find this files on my operation system? I have to update that JDBC... but of course for this task I have to find it first!!!
    Best regards,
    João Dimas - Portugal

    Hi,
    Have you considered the possibility that the directory that was supposed to contain the jdbc drivers has been replaced by a recent kernel upgrade and you never noticed?
    Anyway, looking forward, put in a new set of JDBC drivers in the correct location.
    Also, with reference to the following point from the first note:
    Check your JDBC Driver version before you download it. To do this, unpack the attached check tool SAPCheckVersion in the relevant JDBC directory (refer to the previous paragraph). Then open a command prompt there and execute the following command:
    SAPCheckVersion.cmd <server name> <username> <password>
    Replace <server name> with the name of the database server, <username> and <password> with the logon data of an SQL user (for example, sa or SAP<SID>DB). If you call SAPCheckVersion.cmd without a parameter, the system displays detailed help. The tool supports both DataDirect and Microsoft drivers.
    *The download name tells you which version of the driver you need to download from SAP Service Marketplace.*
    Run this SAPCheckVersion and find out which drivers you need to download and then download them and use them.
    Regards,
    Shitij

  • Upgrade MS SQL 2005 platform to MS SQL 2008 - Update the JDBC driver issue

    Hello to all,
    I´m planning to do an upgrade of a sap system (SAP ECC 6.0) from SQL Server 2005 to an SQL Server 2008 but I´m facing with a little problem. This system has two stacks - ABAP + JAVA - and because of that the Upgrade Guide to MS SQL Server 2008 describe which are the requirements for this upgrade DB platform, and one of them is this:
    "If you use a Java system, you have updated the JDBC driver as described in SAP Note 639702"
    ... the updated of JDBC driver when we have in system a Java part, like it has in this case! But I´m with a serious problems to find in SAP System Files in Windows 2003 Server the four files that is mentioned in that note 639702. I can´t find it anywhere... in note says:
    Depending on the SAP release and the system configuration, the driver files base.jar, util.jar, sqlserver.jar, and spy.jar are available in an installed system at:
    (NetWeaver'04, Java:) usrsap<SAP SID>JC<InstanceNumber>j2eejdbc
    (NetWeaver'04, ABAP+Java:) usrsap<SAP SID>DVEBMGS<InstanceNumber>j2eejdbc
    (NetWeaver 2004s:) usrsap<SAPSID>SYSexe<NUC|UC>Platformmssjdbc
    But... still I didn´t find them!  I also read other note 1109274 - New JDBC driver for NetWeaver 7.0 and higher but even so I still can´t find it! 
    Can you help me to find this files on my operation system? I have to update that JDBC... but of course for this task I have to find it first!!!
    Best regards,
    João Dimas - Portugal

    Hello John Feely,
    Yeah I already know that you mentioned! In my first post/previous message I mentioned that, I already read the note 639702 and it was there I read that explanation... regarding that creation that you refer in the case of files are not in those directories, so you said that I could download this four files and put in there... but where? and how..? Sorry but that solution seems does not make any sense!
    I also look other systems with double stack ABAP + JAVA and I one more time I didn´t see that directories or files that are mentioned in that note!! DAMN!
    Any tip?
    Kind regards,
    João Dimas - Portugal

  • Requirements for JDBC Driver needed for SOA 8 }connection pool

    Hi,
    I have an AS400 jdbc driver. This driver is JDBC API version 2.x. Also is a Driver Type 4.
    What are the requirements of a JDBC Driver needed for connection pool in SOA 8?
    Thanks.
    Lorenzo Jimenez

    You can use pretty much any jdbc driver, including type 2 and type 4.
    You need to make sure your shared libraries needed by the driver are available to the appserver when you boot.
    Other than that, it is no different than configuring any other driver.

  • How to omit parameter values from exceptions thrown by the JDBC driver

    Is there a way to get the Oracle JDBC driver to omit the parameter values from the message when it throws an exception?
    We have an application that persists credit cards and when an exception is thrown by the driver, it's including the credit card number in the error message, which ultimately gets logged by the application. There are too many layers and locations, including OpenJPA, Spring, and our own application, where we'd have to massage the error data to remove that card number.
    For example, we get the following exception:
    Caused by: org.apache.renamed.openjpa.lib.jdbc.ReportingSQLException: ORA-20104: Permission denied
    ORA-06512: at "PROTEGRITY.PTY", line 57
    ORA-06512: at "PROTEGRITY.PTY", line 383
    ORA-06512: at "SUBSDSYS.TORDERPAYMENT_UPD", line 16
    ORA-04088: error during execution of trigger 'SUBSDSYS.TORDERPAYMENT_UPD'
    {prepstmnt 6603044
    UPDATE PAYMENT
         SET CARD_HOLDER_NAME = ?, CARD_TYPE = ?, EXPIRY_MONTH = ?, EXPIRY_YEAR = ?, GATEWAY = ?
         WHERE UIDPK = ?
    [params=(String) Test Test, (String) VISA, (String) 03, (String) 2012, (String) CREDITCARD, (long) 106901]} [code=20104, state=72000]
    at org.apache.renamed.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:192)
    at org.apache.renamed.openjpa.lib.jdbc.LoggingConnectionDecorator.access$800(LoggingConnectionDecorator.java:57)
    The actual content of the message appears to come from the JDBC driver, not OpenJPA.
    This particular example doesn't show the card number, but only exposed that possibility as a risk.
    BTW: before you ask, for PCI compliance we're using a database layer service to encrypt the card numbers before they're stored in the table.
    Thanks much.

    [email protected] wrote:
    The actual content of the message appears to come from the JDBC driver, not OpenJPA.Wrong. This is a dump of parameters used to execute a query - and it comes from some upper layer, not the JDBC driver.
    I would start looking at the source code starting here:
    org.apache.renamed.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingConnectionDecorator.java:192)

  • How can I find the JDBC Driver version

    Hi,
    How can I find the JDBC Driver version installed on my Sun Solaris machine which
    has Weblogic Server 7.0 installed on it. Is there some kind of tool/command to
    do so or does Weblogic console say something about it
    Thanks
    Parikshit Khanna

    Parikshit Khanna wrote:
    Hi,
    How can I find the JDBC Driver version installed on my Sun Solaris machine which
    has Weblogic Server 7.0 installed on it. Is there some kind of tool/command to
    do so or does Weblogic console say something about it
    Thanks
    Parikshit KhannaThere is a jdbc DatabaseMetaData call getDriverVersion().
    The best thing to do is to download Oracle's latest appropriate
    driver from their site, and edit the start-weblogic script to
    make sure the downloaded driver is ahead of any weblogic stuff in
    the server's classpath. We do ship a driver, but Oracle usually
    has a newer better one very soon after that...
    Joe

  • How do I install the jdbc driver for sql server 2005, in sql developer 4.0 ?

    Hallo together
    I need access to tables in a MS SQL Server 2005 database.
    One possibility is the JDBC driver.
    How do i install this driver ?
    Thank you very much for your postings.

    Hi,
      This is from the documentation -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Alternative:
    As an alternative to using this preference, you can click Help, then Check for Updates to install the JTDS JDBC Driver for Microsoft SQL Server and the MySQL JDBE Driver as extensions.
    Regards,
    Mike

  • Where is the jdbc driver to change it in IAS folders

    Hello ...
    we are developing an application in Jdevelper 10.1.2. When we test the application in the jdeveloper embedded container, a specific query is not returning the correct information from the database. However, if we deploy the application in an IAS 10g instance in the A server, the specific query in the application works correctly. We deploy the same application in another server and the specific query doesn't work correctly... we belive that the reason of this error is the jdbc driver
    The question is: Where is located the oracle jdbc driver in the IAS 10g folders to change the driver.... i try in the jdbc folder from the Home folder but the folders in both servers are equals the applib folder in the instance path are diferent in some jar files but no one of this files are related with jdbc driver

    Hi,
    I don't want to use JDeveloper.
    I want to write a Java program that connects to the database using Jdbc.
    The PATH and CLASSPATH are defined for Java 1.4.
    Here is the current CLASSPATH:
    L:\oracle\product\10.2.0\db_1\jdbc\lib\ojdbc14.jar;
    L:\oracle\product\10.2.0\db_1\jlib\orai18n.jar;.
    What "import java......." should I code?
    Many thanks.

Maybe you are looking for

  • Since installing snow leopard, macbook pro keyboard is stuck on capitals so I cant log on. Any advice?

    I cannot log in to my laptop at all as the password isn't recognised. Can't start up in single user mode as requires lower case for commands. Any suggestions?

  • Batch Release of PO and PR

    Hi, I have created workflows for PO and PR release. I used the method Single Release for both. Is there a way that my workflow will go directly to tcode me28 instead of me29n, and me55 instead of me54n?  We would like to do this for collective releas

  • I'm missing Folio Builder Panel in Indesign CC

    I just downloaded InDesign CC, installed DPS tools but don't have Folio Overlays or Folio Builder panels under Windows in InDesign.  I am using inDesign CC on a MacBook Pro.  I have it all working in CS6 but not CC.  Is there something that I'm missi

  • How to sync edited contacts in MfE BOTH WAYS betwe...

    Hi, The contacts via MfE are only syncing in one direction when edited: phone-->google If I change something in some of my google contacts and then sync to my phone it is not working. However if I add a new contact in gmail then it is created and syn

  • Input Formatting

    I am very new to java, i am taking it as a course for my IS major. We have an assignment to create a program that takes in two coordinates and uses them to calculate various distance formulas. I was wondering if there was a way to make it so that two