Setting up MySql Driver for J2SDKEE

Hi all
Right now I am developing a web application in J2SDKEE1.2.1 using Cloudscape databse.
But my project specs says that I have to use MySql for this application.
I need to know what steps I have to take to replace Cloudscape with MySql.
Please help.
Thanks
Rajani
P.S I am using CMP to communicate with the database.

Has anybody used MySql with J2SDKEE1.2.1

Similar Messages

  • Setting up iCloud Drive for a family is a nightmare!

    Setting up iCloud Drive for a family is a nightmare!  I have spent the last two hours trying to figure out a smart way to make it work!  First off, even though the name is similar, iCloud Drive seems to be a very different thing than Google Drive or Dropbox.  There is no "sharing" option.  This is what is so frustrating at the moment.
    My family has used one main Apple ID for years.  I recently upgraded the iCloud space so my daughter could sync her iPhone to the cloud.  So, I updated to Yosemite and iCloud Drive and REALLY LIKED many aspects of the new system.  However, in order to make many of the new features work, like having the text messages come to the computer, and having the phone calls (which are linked to Facetime) come to the computer I am faced with all kinds of dilemmas.  My wife and I have two Macbooks.  In order for her to get her phone calls forwarded to her Macbook she needs to have her phone number AND e-mail address that's associated with the specific iCloud Account that her computer is logged into.  We have mainly been logging in to the same Apple ID.  In order for her to access her own phone vs. mine she will have to log her computer in to a different Apple ID - but that will also mean a new iCloud Drive.
    I think these new features in Yosemite are great - but they are geared towards individual people.  There have been many articles written about how to deal with Apple IDs within a family.  There need to be some updated articles on how to deal with iCloud Drive and a family.  To me it's just way, way too complicated. It seems like it doesn't "just work" anymore.

    It will depend on how much data has to be moved to iCloud Drive. 30 minutes is a long time, but not unbelievable.
    talltenor wrote:
    My MacBook Air has been "setting up iCloud Drive" for 15 hours!
    It's failed. Reboot and try again.

  • How to set oracle thin driver for jdbc2.0 in WLS6.1?

    I want to use oracle thin driver for jdbc2.0 in WLS6.1.
    I just set it like what it look in jdbc1.2.
    In my code, I import the classes under package oracle.sql.* and oracle.jdbc.*.
    When I cast the connection from (DataSource)ctx.lookup("myPool").getConnection();
    to oracle.jdbc.OracleConnection,
    it raise the exception java.lang.ClassCastException: weblogic.jdbc.rmi.SerialConnection.
    Can any one tell me how to solve it? Thanks

    Hi Andy,
    You can not cast a connection returned from datasource
    to oracle.jdbc.OracleConnection as it's a kind of an RMI
    stub thus has nothing to do with oracle. Could you tell us
    what you're going to acomplish? We'll try to offer a solution.
    Regards,
    Slava Imeshev
    "Andy Qiu" <[email protected]> wrote in message
    news:3d74787c$[email protected]..
    >
    I want to use oracle thin driver for jdbc2.0 in WLS6.1.
    I just set it like what it look in jdbc1.2.
    In my code, I import the classes under package oracle.sql.* andoracle.jdbc.*.
    When I cast the connection from(DataSource)ctx.lookup("myPool").getConnection();
    to oracle.jdbc.OracleConnection,
    it raise the exception java.lang.ClassCastException:weblogic.jdbc.rmi.SerialConnection.
    Can any one tell me how to solve it? Thanks

  • Help me i need mm.mysql driver for my sql

    i tried to connect my jsp page with mysql database but it is giving me type 4 org.gjt.mm.mysql.Driver error it says that it is not found.
    i went to mysql official site and it is saying that they have finished mm driver and now have made connector j driver for jdbc ....
    my code is this...
    <%
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection myConn= DriverManager.getConnection("jdbc:mysql:///poll?user=123&password=123");
    Statement stmt=myConn.createStatement();
    ResultSet myResultSet=stmt.executeQuery("select * from pollInfo");
    if (myResultSet != null){
    while (myResultSet.next()){
    String name=myResultSet.getString ("pollname");
    String option=myResultSet.getString ("pollOption");
    String votes=myResultSet.getString ("pollvotes");%>
    <tr>
    <td><%=name%></td>
    <td><%=option%></td>
    <td><%=votes%></td>
    </tr>
    <%
    stmt.close();
    myConn.close();
    %>
    here poll is my database name and pollInfo is my table name
    user name and passwords are 123
    and when running it it give me this error.
    >>>>>>>>>>>>>>>>>>>>>
    500 Internal Server Error
    /dbquery.jsp:
    Exception thrown on line '11' from page 'C:\\Program Files\\Allaire\\JRun\\servers\\default\\default-app\\dbquery.jsp'.
    java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver [org.gjt.mm.mysql.Driver]
         at allaire.jrun.servlet.JRunServletLoader.loadClass(../servlet/JRunServletLoader.java:430)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at allaire.jrun.jsp.JSPClassLoader.loadClass(../jsp/JSPClassLoader.java:118)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at jrun__dbquery2ejspc._jspService(jrun__dbquery2ejspc.java:44)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    I am using jrun 3.1 the release of Allair ...
    now any one please help me what to do
    i willl be great ful to all of u very much thanx
    bye

    Hi,
    The driver needs to be on your classpath. So download it to (say C:\jars), what I do is rename it to mysql.jar
    Then add the C:\jars\mysql.jar to the classpath
    If you are using it with tomcat at runtime, which you are probably not, then you could also copy the jar in the tomcat\lib directory - but I have never done this.
    If you are still experiencing problems, open the jar file using winxip or the jar command and make sure that the jar build is exactly as it should be, i.e. the correct names etc.
    best
    kev

  • How do I set default dvd drive for burning

    I am looking for a way to set a default dvd writer.
    The system I am working on has multiple writers attached (one is a duplicator).
    Unfortunately, the software or OS seems to latch on to the most recently added drive.
    In one instance it defaulted to a removable backup drive we attached.
    I have been getting around this by using the "build and burn" option then using the drop down box to select the proper DVD writer.
    Is there a way to set a default and eliminate this step and the confusion that results when people instinctively click "burn" and the machine tries to write to improper locations?
    Thanks for your help, this has been a thorn in my side for quite some time.
    DVD Studio Pro 4
    OS X 10.4.11
    -Scott

    Well not what I wanted to hear but thanks for confirming what I had found to be true. Would still like to hear if anyone has any creative workarounds.

  • Suggestions on setting up RAID drives for sharing files

    Looking for some suggestions on how to best set up my schools mac lab...
    What I have:
    The lab admin computer is a MacPro 8GB ram two internal 1TB drives (no RAID card)
    HD one is currently not raided and is running leopard 10.5.4, ARD3, CS3, etc. The HD 2 is waiting to be utilized.
    The student computers are (intel) iMacs 2.66ghz 4GB ram running 10.5.4 and used primarily for running CS3 apps with yearbook and art students.
    What I would like to do:
    Use the second HD on the MacPro to share files with the imacs. My yearbook students need to be able to access their photos and layouts from any imac they log into, but I would also like to protect the files (from accidental deleting) and possibly make it quicker for them to access them (since our school network tends to be a bit slow).
    I don't know wether I should partition the second HD, RAID and if so in what configuration? or some combination of both. I have never really used a RAID disk before so I am not sure how it could apply to what I want to do. Or am I going about this the wrong way?
    Any suggestions?
    Thanks

    Because you are in an enterprise situation your major concern should be backup. Your data and all student data are at risk without a proper backup strategy. With a single 1 TB drive in use you should consider using the second 1TB drive as the backup drive. Daily backups should be scheduled to back up all user data and user accounts stored on the main drive. I suggest you use a top-grade piece of backup software that will do scheduled backups at designated times to assure you have a current daily backup on the second hard drive. If you are willing to go the extra bit then buy a third 1 TB hard drive and set up a mirrored RAID with the second drive you now have. This will provide some redundancy in the event of the loss of a hard drive due to mechanical failure (it does not protect you in the event of data corruption.) You should then set up a method of providing additional archival backups on a weekly or monthly basis. The archival backups should be done on separate hard drives (perhaps an external Firewire drive) or to multiple DVDs. A third backup would be a copy of the archival backups that would be stored off-site in the event of fire, theft, or other catastrophic loss as well as for security purposes.
    There are few backup programs capable of doing it all including backing up across multiple optical discs - Retrospect is the least expensive one. Other suitable backup programs are:
    Backup Software Recommendations
    My personal recommendations are (order is not significant):
    1. Synchronize! Pro X (Commercial)
    2. Synk (Backup, Standard, or Pro)
    3. Carbon Copy Cloner (Donationware)
    4. SuperDuper! (Commercial)
    5. Restore option of Disk Utility can be used to make only full backups.
    The following utilities can also be used for backup, but cannot create bootable clones:
    6. Backup (requires a .Mac account with Apple both to get the software and to use it.)
    Also read How to Back Up and Restore Your Files.
    More expensive enterprise backup solutions are:
    1. NetVault
    2. BRU Server or BRU LE

  • NW2004S Setting up JDBC driver for Sybase jconn2.jar

    Hi everyone, has anyone had experience setting up the sybase driver jconn2.jar using the visual admin?   I am following the guide BI JDBC Connector as described in http://help.sap.com/saphelp_nw70/helpdata/en/43/e35b3315bb2d57e10000000a422035/frameset.htm
    I have executed the Prerequisites and imported the jar file.   Now reading from the help guide it talks about connector properties such as username, password, url ...etc.  I don't know where to set these.  Are they referring to The tab additional properties.
    I select "Drivers" -> NEW, gave it the name Sybase.  After I loaded the driver, I slected DataSources -> Create.  I gave it a name "Sybase", selected the Driver name "Sybase" from the drop down list, select JDBC version 2.0, it the Object Factory  I entered com.sybase.jdbc2.jdbc.SybDataSource (I also verified this class is in the jar file.
    For the DatSource Type I select ConnectionPoolDataSource. and for the CPDS classname I enterd com.sybase.jdbc2.jdbc.SybXADataSource (also verified the class is in the jar file.  Now for Addtional properties, I entered key/value DatabaseName/Password, PortNumber, ServerName, User.  For SQL Engine I selected open SQL.
    Now when I hit save I get "Error occurred while starting application com/Sybase. 
    I looked at the default trace file and can't figure the error is all about.  Also.  I tried using SQL Engine "Vendor SQL" and got same error message, then I selected DataSource Type XADataSource.   Same problem and it just won't start.
    Here is the error I am seeing in the default trace file.
    om.sap.engine.services.connector##com.sap.engine.services.connec
    tor#J2EE_ADMIN#16239####e77b19006dd811dcaea40003ba21a6f5#SAPEngine_Application_Thread[impl:3]_39##0#0#Error##Plain###ResourceObjectF
    actory.getConnectionSet(Sybase), Exception: com.sap.engine.services.connector.exceptions.BaseResourceException: ConnectionFactory "S
    ybase" does not exist. Possible reasons: the connector in which ConnectionFactory "Sybase" is defined is not deployed or not started
            at com.sap.engine.services.connector.ResourceObjectFactory.getConnectionSet(ResourceObjectFactory.java:671)
            at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.listFreeConnections(DataSourceManagerImpl.java:540)
            at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.getCurrentSize(DataSourceManagerImpl.java:950)
            at sun.reflect.GeneratedMethodAccessor129.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
            at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
            at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
            at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
            at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
            at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
            at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
            at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
            at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
            at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
            at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
            at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
            at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
            at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
            at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
            at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessag
    eListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.#0003BA21A6F5005A000003F8000012D000043B340955A9AE#1190994587789#com.sap.engine.services.connector##com.sap.engine.services.connec
    tor#J2EE_ADMIN#16239####e77b19006dd811dcaea40003ba21a6f5#SAPEngine_Application_Thread[impl:3]_7##0#0#Error##Plain###ResourceObjectFa
    ctory.getConnectionSet(Sybase), Exception: com.sap.engine.services.connector.exceptions.BaseResourceException: ConnectionFactory "Sy
    base" does not exist. Possible reasons: the connector in which ConnectionFactory "Sybase" is defined is not deployed or not started.
            at com.sap.engine.services.connector.ResourceObjectFactory.getConnectionSet(ResourceObjectFactory.java:671)
            at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.listUsedConnections(DataSourceManagerImpl.java:565)
            at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.getUsedConnectionsCount(DataSourceManagerImpl.java:967)
            at sun.reflect.GeneratedMethodAccessor130.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
            at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
            at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
            at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
            at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
            at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
            at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
            at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
            at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
            at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
            at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
            at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
            at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
            at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
            at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
            at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
    And it goes on and on.

    Used the following jconn3.jar from http://www.sybase.com/detail?id=1041013.
    Changed, DriverName to com.sybase.jdbc3.SybDataSource

  • How to install MySQL driver for ODI Studio?

    Hi,
    I follow the docs to install driver. http://download.oracle.com/docs/cd/E14571_01/core.1111/e16453/install.htm#CHDBIFAJ
    First I downloaded MySQL Java connector from http://dev.mysql.com/downloads/connector/j/. Then copy the jar file to C:\Users\MyName\AppData\Roaming\odi\oracledi\userlib. But ODI Studio cannot show this JDBC driver, when I created a new Data Server.
    Is there any additional step need to do?

    Hi Sukande,
    Deployment procedure is same irrespective of operating system.
    On AIX, you have to copy the file com.sap.aii.adapter.lib.sda to your desktop and modify using winrar as explained in the below article and copy the modified file back to the respective path on AIX server.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00b4a020-4ae6-2c10-5a95-fed4ad9a4b60?QuickLink=index&overridelayout=true
    Thanks,
    Siva Kumar

  • Using Time Machine and external USB drive for multiple Macs

    I just bought a 1.5TB external portable drive.  I have 4 macs in the household that might have about 400 - 500 GB of total HD capacity for the four of them.  I am very confused on whether to create a separate partition for each mac, or let Time Machine manage the entire, single-partition drive.
    The reason I ask is because I have run into issues with a smaller external HD where it didnt seem to know to remove old backups to make room for new ones.  But, its' possible the 750 GB drive was too small to do what it needed to do.
    So, I am looking for some definitive information on the best way to do this.  Obviously, i'd rather leave the 1.5TB as a single partition, and hope (and expect) Time Machine to manage the backups of the four macs in such a way that it can properly make room as backups are added to the drive.
    THoughts?

    D/FW wrote:
    Use a 1TB Time Capsule to backup wirelessly and a FW800 external drive for speed in case I need to reinstall. Therefore having 2 backups?
    You can do that, but not simultaneously. TM only has one destination a a time; you can back up to the TC, then select the external HD via TM Preferences, then switch back.
    I've been down the road of using SD (cloning) and am ready to move on to another backup strategy. Cloning works fine but it dedicates a drive 100% of the time where TM doesn't.
    I don't know what you mean by that. I use CarbonCopyCloner (similar to SD) in addition to full TM backups, so I have two separate, independent backups, on two separate drives, and get the advantages of both. You can partition an external drive (but not a Time Capsule), so you could have your clone on one partition, and other things in one or more additional partitions (I do that as well). As long as the "clone" partition is the same size as your internal HD (or at a minimum, at least 15% larger than the amount of data on it), you can use the rest of the space for anything else.
    See #5 in the Frequently Asked Questions *User Tip* at the top of this forum for detailed instructions on setting-up a drive for Time Machine. The same procedure works for setting one up for a clone and other partition(s), too.

  • Can I use an optical drive as a backup drive for File History?

    I wish to use a DVD drive as a backup...win now calls it file history... drive.  The flash drives and HDs show up an an option but not the external or internal optical drives.  Can they be used?
    This question was solved.
    View Solution.

    Which OS are you referring to?
    An external drive, network or Cloud drive are seen the best options. DVD drives are not seen as viable options. Read this microsoft document about setting up a drive for file history.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Using Time Capsule and External FW Drive for TM Backups

    Wondering if this can be done, or if anyone is successfully doing it.
    Here's what I want to do:
    Use a 1TB Time Capsule to backup wirelessly and a FW800 external drive for speed in case I need to reinstall. Therefore having 2 backups? I've been down the road of using SD (cloning) and am ready to move on to another backup strategy. Cloning works fine but it dedicates a drive 100% of the time where TM doesn't.
    One thing I did with an old 2.5" 80GB HD in an enclosure that I like a lot is put 10.6.2 on it along with Disk Warrior 4.2, Tech Tool Pro, and Drive Genius to use as a startup and repair disk.

    D/FW wrote:
    Use a 1TB Time Capsule to backup wirelessly and a FW800 external drive for speed in case I need to reinstall. Therefore having 2 backups?
    You can do that, but not simultaneously. TM only has one destination a a time; you can back up to the TC, then select the external HD via TM Preferences, then switch back.
    I've been down the road of using SD (cloning) and am ready to move on to another backup strategy. Cloning works fine but it dedicates a drive 100% of the time where TM doesn't.
    I don't know what you mean by that. I use CarbonCopyCloner (similar to SD) in addition to full TM backups, so I have two separate, independent backups, on two separate drives, and get the advantages of both. You can partition an external drive (but not a Time Capsule), so you could have your clone on one partition, and other things in one or more additional partitions (I do that as well). As long as the "clone" partition is the same size as your internal HD (or at a minimum, at least 15% larger than the amount of data on it), you can use the rest of the space for anything else.
    See #5 in the Frequently Asked Questions *User Tip* at the top of this forum for detailed instructions on setting-up a drive for Time Machine. The same procedure works for setting one up for a clone and other partition(s), too.

  • PASTA driver for Xerox Workcenter?

    Hi,
    i've set PASTA Universal driver for my Xerox Workcente Pro 55 and i use CUPS for install and manage the printers, in CUPS i've choose HP laserjet drivers.
    The cups test page is ok, but when i print from EBS with style LANDSCAPE of PASTA, the rows are truncated at left margin.
    There is some driver that working with Xeorx WorkCenter?
    thanks
    Andrew

    Thanks for trying guys, but no joy. I have been to the Xerox website. I can't even find the printer listed anymore.
    I tried the HP suggestion to no avail. Should I try more of the HP drivers or was the series 6 my best hope?
    It is a work printer and as I live in Korea at he moment the only computer attached to it has a Korean version of XP. Looks like I will have to struggle through.
    Cheers
    Mike

  • "setting up iCloud drive" keeps going, and never stops?

    completed documents don't open when I open Pages.

    It will depend on how much data has to be moved to iCloud Drive. 30 minutes is a long time, but not unbelievable.
    talltenor wrote:
    My MacBook Air has been "setting up iCloud Drive" for 15 hours!
    It's failed. Reboot and try again.

  • Two drives for iTunes?

    I have a 1TB hard drive full of movies and TV shows, almost. When it is full, what do I do? Is there a way to set a second drive for movies and TV shows, or do I just have to buy a bigger hard drive?
    bob

    the following reads may be helpful: one and two.
    JGG

  • Problem with JDBC driver for mysql

    I have downloaded the Connector/J3.0 mysql-connector-java-3.0.7-stable.tar.gz from www.mysql.com/downloads/api-jdbc-stable.html web site and used gunzip and tar to extract the file. I have received the following error message:
    tar: directory checksum error
    Will this error cause some problem later on?
    Which directory should I put the driver into? Can I put it in any directory?
    Do I need to set the classpath for the driver? If yes, how can I set it?
    What is the connect string? Can you give a sample for me? I am using Solaris 5.8 and mysql is on the same machine.
    Thanks a lot,
    Lisa

    this is an example of a connect string for mysql that i used...
    public Connection CreateConnection () throws Exception
         Connection myConn = null;
         String driverName = "org.gjt.mm.mysql.Driver";
         String dbUrl = "jdbc:mysql://www.desres.com/jhazrd?user=jhazrd&password=????";
         Class.forName(driverName);
         myConn = DriverManager.getConnection (dbUrl);
    return myConn;
    }

Maybe you are looking for

  • Parsing Excel's CSV file in PL/SQL

    Someone may need this... This procedure parses a line of Excel's CSV file into a PL/SQL table's elements. FUNCTION func_split_csv (p_string IN VARCHAR2) RETURN gt_tbltyp_strings IS * NAME: func_split_csv * PURPOSE: Split the passed Excel's CSV string

  • PDF on iPad

    Is there any easy way to download PDF files forgot safari or any other applcations and save it to iBooks with out using iTunes or Mac? I would like to arrange all my PDFs in iBooks but using iTunes every time is annoying.

  • Cannot copy iTunes folder from Windows to Mac because of Permission

    I have my iTunes library on a windows machine, running windows 7. The library is organized inside the iTunes folder. I am trying to put this same iTunes onto my new macbook pro. I tried copying the folder to an external HD and plugging that into my m

  • Retreiving data from 2 tables using a sender JDBC Channel

    Hi all, We got anew requirement where we have to select data from 2 tables and update fields in 2 tables at the sametime. I have a few queries regarding this. Can we retrieve data from 2 tables using select query in sender JDBC channel? If yes, how w

  • Transferring picture from lightroom to new computer

    How do I get all my photos in lightroom to another computer when I haven't exported all of them?