Annoying Assertion errors using the DB2 Driver "com.inet.drda.DRDADriver"

I am using the "com.inet.drda.DRDADriver" DB2 Driver.
My query works fine and returns everything ok but I get these annoying Assertion failed errors on the console.
Any Ideas how to stop these?
I do not have assert enabled on JBuilder.
Thanks ... J
Assertion v1 == 0 failed: s.v1@ca=75
Assertion v1 == 0 failed: s.v1@fb=250
Assertion v1 == 0 failed: s.v1@128=75
and so on

Prior to using the JDBC:DB2 driver I was using the JDBC:ODBC driver and there were no such errors. So the errors are related to using the db2 driver.
All that has changed is the lines you see commented out replaced by the new driver class.
Nothing has changed in my Database interface layer.
    //Set up DB url using a JDBC:DB2 driver and get a connection
    String url = "jdbc:inetdb2:" + host + ":" + port + "?database="+tableOwner;
    String driverClass = "com.inet.drda.DRDADriver";
    //Set up DB url using a JDBC:ODBC driver and get a connection
    //String url = "jdbc:ODBC:"+tableOwner;
    //String driverClass = "sun.jdbc.odbc.JdbcOdbc";
Connection connection = Tools.setUpConnectionToDB(driverClass, url,username,password);
List appletsFound = Tools.processStatement(Query, connection);I did have Asserts enabled before this but they are not enabled now because I disabled it after I was happy all my JUnit tests were passing.

Similar Messages

  • Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver

    Trying to Install RMS application 13.2.2 and I get past the pre-installation checks and when I get to the Data Source details and enter the data source details with the check box checked to validate the schema/Test Data Source I get the following error:
    Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver. Please check that the library path is set up properly or switch to the JDBC thin client oracle/jdbc/driver/T2CConnection.getLibraryVersioNumber()
    Checks performed:
    RMS Application code location and directory contents:
    [oracle@test-rms-app application]$ pwd
    /binary_files/STAGING_DIR/rms/application
    [oracle@test-rms-app application]$ ls -ltr
    total 144
    -rw-r--r-- 1 oracle oinstall   272 Dec 7  2010 version.properties
    -rw-r--r-- 1 oracle oinstall   405 Jan 16 2011 expected-object-counts.properties
    -rw-r--r-- 1 oracle oinstall   892 May 13 2011 ant.install.properties.sample
    -rw-r--r-- 1 oracle oinstall 64004 Jun  6  2011 build.xml
    drwxr-xr-x 9 oracle oinstall  4096 Jun 16 2011 rms13
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 installer-resources
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 antinstall
    drwxr-xr-x 2 oracle oinstall  4096 Jun 16 2011 ant-ext
    drwxr-xr-x 5 oracle oinstall  4096 Jun 16 2011 ant
    -rw-r--r-- 1 oracle oinstall 11324 Dec 18 09:18 antinstall-config.xml.ORIG
    -rwxr-xr-x 1 oracle oinstall  4249 Dec 18 10:01 install.sh
    drwxr-xr-x 4 oracle oinstall  4096 Dec 18 10:06 common
    -rw-r--r-- 1 oracle oinstall 16244 Dec 19 10:37 antinstall-config.xml
    -rw-r--r-- 1 oracle oinstall   689 Dec 19 10:37 ant.install.log
    [oracle@test-rms-app application]$
    Application installation:
    [oracle@test-rms-app application]$ ./install.sh
    THIS IS the driver directory
    Verified $ORACLE_SID.
    Verified SQL*Plus exists.
    Verified write permissions.
    Verified formsweb.cfg read permissions.
    Verified Registry.dat read permissions.
    Verified Java version 1.4.2.x or greater. Java version - 1.6.0
    Verified Tk2Motif.rgb settings.
    Verified frmcmp_batch.sh status.
    WARNING: Oracle Enterprise Linux not detected.  Some components may not install properly.
    Verified $DISPLAY - 172.16.129.82:0.0.
    This installer will ask for your "My Oracle Support" credentials.
    Preparing installer. This may take a few moments.
    Your internet connection type is: NONE
    Integrating My Oracle Support into the product installer workflow...
         [move] Moving 1 file to /binary_files/STAGING_DIR/rms/application
    Installer preparation complete.
    MW_HOME=/u01/app/oracle/Middleware/NewMiddleware1034
    ORACLE_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/as_1
    ORACLE_INSTANCE=/u01/app/oracle/Middleware/NewMiddleware1034/asinst_1
    DOMAIN_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/user_projects/domains/rmsClassDomain
    WLS_INSTANCE=WLS_FORMS
    ORACLE_SID=rmsdbtst
    JAVA_HOME=/u01/app/oracle/jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    Launching installer...
    To make sure I have connectivity from the app server to the database (on a database server) here are the steps followed:
    [oracle@test-rms-app application]$ tnsping rmsdbtst
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 19-DEC-2013 10:41:40
    Copyright (c) 1997, 2008, Oracle.  All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = test-rms-db.vonmaur.vmc)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SID = rmsdbtst)))
    OK (0 msec)
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ sqlplus rms13@rmsdbtst
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Dec 19 10:46:18 2013
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ ping test-rms-db
    PING test-rms-db.vonmaur.vmc (192.168.1.140) 56(84) bytes of data.
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=1 ttl=64 time=0.599 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=2 ttl=64 time=0.168 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=3 ttl=64 time=0.132 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=4 ttl=64 time=0.158 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=5 ttl=64 time=0.135 ms
    --- test-rms-db.vonmaur.vmc ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4001ms
    rtt min/avg/max/mdev = 0.132/0.238/0.599/0.181 ms
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ uname -a
    Linux test-rms-app.vonmaur.vmc 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ cat /etc/*-release
    Enterprise Linux Enterprise Linux Server release 5.3 (Carthage)
    Red Hat Enterprise Linux Server release 5.3 (Tikanga)
    [oracle@test-rms-app application]$
    The database is created and all the batch file scripts have been successfully deployed.  Now working on the application server.  The  Weblogic server is installed and 11g forms and reports are installed successfully.
    Any help would be helpful.
    Thanks,
    Ram.

    Please check MOS Notes:
    FAQ: RWMS 13.2 Installation and Configuration (Doc ID 1307639.1)

  • My external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive. Same thing has happened with Final Cut Express.

    My new LaCie external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive.
    The same thing happened recently between Final Cut Express and my other LaCie external hard drive used as the Scratch disk. It fixed itself.
    I've run out of ideas. Help would be very much appreciated. Thanks.

    have you done some searches on FCPx and time machine? Is there a known issue with using a TM drive with FCPx? dunno but ...wait...I'll take 60 sec for you cause I'm just that kind of guy....   google...." fcpx time machine problem"  Frist page link 
    http://www.premiumbeat.com/blog/fcpx-bug-best-practices-for-using-external-hard- drives-and-final-cut-pro-x/
           You cannot have time machine backups on your hard drive if you intend to use it in FCPX.
    booya!

  • I have the G Drive 1 TB (GEN4 1TB) external drive purchased in 2010. I need to connect to my new MacBook Pro. I'm using the external drive for media storage of my video editing projects. Will a 800fw to thunderbolt adapter cable work?

    I have the G Drive 1 TB (GEN4 1TB) external drive purchased in 2010. I need to connect to my new MacBook Pro. I'm using the external drive for media storage of my video editing projects. Will a 800fw to thunderbolt adapter cable work? I understand that using a USB port connection is not fast enough for video editing. I read somewhere the G Drives don't connect well to MacBook Pro.
    thanks
    larry

    I doubt this can be relocated or moved so you might want to just repost in the macbook pro area.
      MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions
    Can you afford a new Thunderbolt case and cable? any case with FW800 is going to be slow 72MB/sec and less, and any new 1TB drive is capable of 75MB/s minimum up to 125MB/sec.
    Thunderbolt storage can of course when setup properly reach 100's of MB higher using multiple drives.
    Use what you have for a system backup or for secondary backup storage.
    you might be able to take the drive - most cases allow you to open and swap drives - and use this:
    G-Technology 1TB G-DRIVE mini High-Speed Portable Hard Drive                                   
    or this:
    http://store.apple.com/us/product/HB137VC/A/g-technology-4tb-g-raid-professional -high-performance-dual-drive-hard-drive?fnode=5f

  • HT201250 If I use Time Machine on my MacBook can I use the hard drive on the same MacBook as the back up drive ?

    I want to use Time Machine but instead of using a hard drive outside of the MacBook, would I be able to use the hard drive that is in the computer? 
    Would I be able to use a memory stick ?

    It defeats the purpose of having a backup if you keep it on the same drive. That's your safety if your drive fails.
    Also, you should allow about double the space of the volume you are backing up.
    EDIT: Time Machine does keep local snapshots on your drive
    http://support.apple.com/kb/HT4878
    See this for more good TM tips...
    http://pondini.org/TM/Home.html

  • When using a personal dropbox account, is it possible to use the mapped drive without downloading all my dropbox files to my hard drive as well?

    When using a personal (not business) dropbox account on my mac book pro, is it possible to use the mapped drive only?  Currently I have dropbox mapped to my computer but it is also saving a redundant copy of the data on my hard drive.  My goal is to pull, edit and save files on the mapped drive only without having a redundant back up of all my dropbox files on my computer wasting valuable storage space.   Any advice out there?  Thanks in advance for your help!

    I don't believe that is accurate, but maybe I am missing something (I am not a Windows user).
    Looking at 2 explanation of how to map a Dropbox as a drive…
    http://lkeng.org/wp/?p=147
    https://www.youtube.com/watch?v=5d8uvseVr5A
    Both of those are linking to the 'local copy' of Dropbox. It is not a true 'network' drive as far as I can see (it still requires the local copy on the PC).
    Another video suggests using another service to mount the Dropbox, but that is not using Dropbox anymore, it is going through Otixo…
    https://www.youtube.com/watch?v=FAIpm2qmglU
    Dropbox does not provide easy to use URL's to mount as a network disk so I don't think this is possible on OS X.
    Dropbox's forum has this too…
    https://www.dropboxforum.com/hc/communities/public/questions/202133795-How-to-ma p-dropbox-as-a-network-drive-on-Mac?loca…
    You may need to examine the Windows computers carefully - if they have Dropbox installed & running then all the files are stored on the local machine in addition to the 'mapped drive'.
    It looks to me like people are 'redirecting' the local copy to appear like a remote disk just so they can address that path on other machines - each PC is being setup the same. You could create aliases on OS X, but it doesn't help move files off the machine.
    Hopefully someone else will contradict me, but I don't think this is how Dropbox works.

  • I have two hard drives on my mac 10.5.8 power pc and hear the clickking sounds of the first hard drive and think that it may be dying, can I install everything on the other hard drive also and wait for the first drvie to die before i use the other drives

    I have two hard drives on my mac 10.5.8 power pc and hear the clickking sounds of the first hard drive and think that it may be dying, can I install everything on the other hard drive also and wait for the first drive to die before i use the other drives? Or, what is the best way to handle this?

    I do not know what you are waiting for.
    I'd make a backup of your important stuff before cloning the entire disk.
    Carbon Copy Cloner will copy your startup drive to an external  firewire drive.  You can boot from the external drive to verify that you have a good clone. When you upgrade your existing startup drive, you can at any time boot from your external drive and go back to your existing system.
    http://www.bombich.com/software/ccc.html
    SuperDuper is the wildly acclaimed program that makes recovery painless, because it makes creating a fully bootable backup painless. Its incredibly clear, friendly interface is understandable, easy to use, and SuperDuper's built-in scheduler makes it trivial to back up automatically. And it runs beautifully on both Intel and Power PC Macs!

  • I have a mac book pro with Boot Camp that also runs windows.  I upgraded to Lion and somehow it crashes the mac side peridoically.  I am told I need to "clean" it and reinstall lion using the recovery drive.  will that delete the windows partition too??

    I have a mac book pro with Boot Camp that also runs windows.  I upgraded to Lion and now the mac side crashes/freezes periodically, especially iphoto.  I am told by the genius' that I probably need to "clean" it and reinstall lion using the "recovery drive" which resets everything back to default and reinstalls the lion operating system.  My question is will this also delete the "windows" partition drive and all that data too.  If so that will be a huge pain in the ___ to back up and reinstall boot camp and windows. I want to shoot the lion.

    There is no system like Acronis for the Mac platform. You can try using the buiilt in Disk Utility to create an Image of the complete Mac drive but I have found that this does not work very well as on tryiing to restore it gives errors sometimes.
    You can use SuperDuper or Carbon Copy Cloner to create a bootable Clone of your system partition. But that is only for the System partition and not the complete drive.
    If you use Boot Camp to install Windows on your Mac neither of those two programs will clone the Windows side.
    Neither will Disk utility as Mac's can not create or write to a NTFS partition. So some other program is need for that.

  • Using the Hard drive space

    I want to buy a classic iPod either 80 or 160gb, but my question is my setup. I have a laptop with only a 60gb hard drive with an external 500gb hard drive. Will I be able to use my external drive to house my itunes files so I can use all 160gb?

    Of course there is. Rather than another long post, let me just point you to another thread where I talked about this, specifically for someone with a laptop that would use the External drive library when at home and then could switch to a much smaller library on the laptop when out and about.
    http://discussions.apple.com/thread.jspa?messageID=5274667
    or here...
    http://discussions.apple.com/thread.jspa?messageID=5284096&#5284096
    Patrick

  • File does not Upload !   Error in the listener class com.sap.ip.portal...

    Hello.
    Recently, I Add a New Server Node on Java Central Instance.
    And Java Program Upload on Portal, then following error occured.
    Error in the listener class com.sap.ip.portal.admin.portalanywhere.QueryHandler during the process of
    handleTopic
    Original server node can upload successfully.
    But, An error happens in New Additional node.
    Please tell me way to resolve the error.
    Regards.
    Edited by: Masashi Fujita on Dec 24, 2008 5:29 AM
    Edited by: Masashi Fujita on Dec 25, 2008 7:20 AM

    Hi Masashi Fujita,
    Check this Link for Uploading and Downloading files using Web Dynpro Java.
    [Uploading and Downloading Files in Web Dynpro Java|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71]
    [Upload Files Using Web Service in Web Dynpro Java Application|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0d9336b-b4cf-2910-bdbf-b00d89bd2929]
    [Uploading and Downloading Files in Web Dynpro Tables|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e10426-77ca-2910-7eb5-d7d8982cb83f]
    Thanks & Regards,
    Sharma Kvbk.

  • How to configure a plugged in usb device to use the winusb driver

    Hi,
    We have an app that uses an ANT+ USB dongle to tap into ANT+ messaging traffic and we would like to get our app up and running on the Raspberry PI running Windows 10 IoT.
    Using Powershell I can see that the device is recognized when plugged in:
    Name                           Property                                                                                     
    126                            DeviceDesc          : ANT USB-m Stick                                                        
                                   LocationInformation : Port_#0005.Hub_#0002                                                   
                                   Capabilities        : 20                                                                     
                                   ContainerID         : {207a56e2-9393-5c49-bdd7-309b37712562}                                 
                                   HardwareID          : {USB\VID_0FCF&PID_1009&REV_0100,
    USB\VID_0FCF&PID_1009}                
                                   CompatibleIDs       : {USB\Class_FF&SubClass_00&Prot_00,
    USB\Class_FF&SubClass_00, USB\Class_FF}
                                   ConfigFlags         : 64        
    I would now like to configure it to use the already available WinUSB driver so that we can 'talk' to it from c#. Is there any way I can do that like e.g. provide and .Inf file, but then, how do install that from powershell? On a regular windows device we
    would be able to switch the drivers through the device manager or so but how to go about it on Windows 10 IoT?

    What you might need to do is compare how this device is configured for use on your desktop system, and then duplicate those registry entries on your Pi device so it will attempt to use the WinUSB driver when detected.
    This article talks about using remote powershell to modify the registry on a remote device:
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/03/16/use-powershell-to-edit-the-registry-on-remote-computers.aspx
    If that doesn't work or you still have problems can you please provide a screen shot of the following information:
    In DeviceManager->Right click the device->Properties->Driver->DriverDetails.
    Jonathan Tanner | Microsoft | Windows 10 IoT Core Insider Preview Support | This posting is provided 'as is' with no warranties and confers no rights.

  • Using the Oracle Driver for the Engine DataSource

    Hi -
    When we try to use the Oracle driver (not the WebLogic Oracle Driver) we get the following exception. We would like to use the Oracle driver and not the WebLogic driver. Is this possible with 10gR3?
    fuego.transaction.DatabaseException: An error occurred while accesing the database.
    Detail:SQL statement: 'SELECT WKTDKEY, DUETIME, ID, PROCESSID FROM PWKTODO WHERE WKTDKEY = ?'
    at fuego.server.persistence.jdbc.JdbcToDoItemPersMgr.getWKItem(JdbcToDoItemPersMgr.java:548)
    at fuego.server.persistence.Persistence.getWKToDoItem(Persistence.java:518)
    at fuego.server.service.DirectoryListener.stopDirectoryPollingToDoItem(DirectoryListener.java:282)
    at fuego.ejbengine.service.EJBDirectoryListener.access$100(EJBDirectoryListener.java:26)
    at fuego.ejbengine.service.EJBDirectoryListener$1.execute(EJBDirectoryListener.java:70)
    at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
    at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
    at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
    at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
    at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
    at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:79)
    at fuego.server.execution.DefaultEngineExecution.executeWithoutComponentImmediate(DefaultEngineExecution.java:185)
    at fuego.server.execution.EngineExecution.executeWithoutComponentImmediate(EngineExecution.java:86)
    at fuego.ejbengine.service.EJBDirectoryListener.start(EJBDirectoryListener.java:56)
    at fuego.server.service.AbstractService.changeRunLevel(AbstractService.java:99)
    at fuego.server.service.AbstractService.setRunLevel(AbstractService.java:52)
    at fuego.ejbengine.service.EJBDirectoryListener.initialize(EJBDirectoryListener.java:42)
    at fuego.ejbengine.Engine.startServices(Engine.java:414)
    at fuego.ejbengine.Engine.start(Engine.java:126)
    at fuego.ejbengine.ItemExecutionBean.ejbCreate(ItemExecutionBean.java:68)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.ejb.container.manager.MessageDrivenManager.createBean(MessageDrivenManager.java:307)
    at weblogic.ejb.container.pool.MessageDrivenPool.createBean(MessageDrivenPool.java:174)
    at weblogic.ejb.container.pool.Pool.createInitialBeans(Pool.java:300)
    at weblogic.ejb.container.manager.MessageDrivenManager.start(MessageDrivenManager.java:581)
    at weblogic.ejb.container.deployer.MessageDrivenBeanInfoImpl.mdManagerStart(MessageDrivenBeanInfoImpl.java:1163)
    at weblogic.ejb.container.deployer.MessageDrivenBeanInfoImpl.deployMessageDrivenBeans(MessageDrivenBeanInfoImpl.java:1143)
    at weblogic.ejb.container.deployer.EJBDeployer.deployMessageDrivenBeans(EJBDeployer.java:1587)
    at weblogic.ejb.container.deployer.EJBDeployer.start(EJBDeployer.java:1410)
    at weblogic.ejb.container.deployer.EJBModule.start(EJBModule.java:589)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:16)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:162)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLException: Invalid column type
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:229)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:403)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7931)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7511)
    at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:7984)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:237)
    at weblogic.jdbc.wrapper.PreparedStatement.setObject(PreparedStatement.java:287)
    at fuego.jdbc.FaultTolerantPreparedStatement.setString(FaultTolerantPreparedStatement.java:436)
    at fuego.server.persistence.jdbc.JdbcToDoItemPersMgr.getWKItem(JdbcToDoItemPersMgr.java:479)
    ... 56 more

    Only the weblogic oracle drivers are supported in 6.0 and 10gR3 for the Directory and Engine datasources.

  • How can my daughter use the hard drive in the Time Capsule ...

    So, I am in Oklahoma and my daughter is in Tennessee...
    She has a Time Capsule where the Wi-fi base station quit working, but the hard drive may be OK.
    She bought an Airport Express to use as a wi-fi router.
    The question, then, is:
    How can my daughter use the hard drive in the Time Capsule to do Time Machine backups?
    Thank you very much for your insights.
    Roberto

    It can be done but is very messy. That is assuming the TC is still functional which I kind of doubt.. the wifi is seldom the only thing that will die .. so whatever problems it has the wifi would be the least of it.
    Anyway.. do a factory reset to get started.
    The Factory Reset Gen1-4.
    Unplug your TC. Hold in reset. and power the TC back on.. without releasing reset for about 10sec. When the status light flashes rapidly; release it.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    If the LED is not lit then the TC is dead, not just the wireless.
    The setup for using the TC is explained in the bottom of this thread.
    TC in a second local network.
    https://discussions.apple.com/thread/4817218?tstart=30
    The idea is to set the TC to provide router function.. and the computer plugged in by ethernet to as a second network.. but there are rules on how this is done which I have explained in that thread.
    I notice that Mountain Lion deals better with order of network priority than Snow Leopard used to .. so it might not need to have manually set gateway and dns.. although I would still recommend it. It simply stops the second network causing issues.
    It is much easier to simply purchase an external drive and plug that in.
    It is cheaper, faster and more reliable than using the TC for TM anyway.
    Plus a lot of the later machines no longer have ethernet ports.. and using dongles is far from neat.. although thunderbolt to ethernet is IMHO necessary accessory for anyone without ethernet.

  • Trouble using the instrument driver for the "hp8753b"

    I am using the instrument driver for the "hp8753b", specifically the "collect and display data" driver.  I manually set my settings to the analyzer and run the VI (i.e. set start frequency to 500 kHZ and stop frequency to 1 GHz), when the VI runs with the "collect and display data" it defaults to start frequency 1 GHz and stop frequency to 3 GHz.  I have tried to modify the driver to only collect data and not to modify any settings on the analyzer but I run into errors.  Any help on this is appreciated.

    Hello,
    I have installed the instrument driver you mention in your post. I am looking at the Collect and Display Data.vi, however I need more information from you to determine why your sweep is defaulting back to 1GHz-3GHz. 
    When you say "I manually set my settings to the analyzer" are you making these settings directly on the analyzer? The Collect and Display Data.vi seems to read all of the settings from the hardware, I did not see any configuration in the VI.  What modifications were you making to the VI and what errors were you getting?
    Can you see the range on the instrument?  If so , can you determine at which point the range defaults back to the higher range?  Running in highlight-execution mode in the VI and running NI-Spy (Start->All Programs->National Instruments->NI-Spy) to perform a capture of the GPIB commands can help to determine at what point the errors are occurring.  It will also let you see if there are any commands being sent which cause the instrument to be reset. 
    Jennifer O.

  • My MacBook Air does not have an optical drive.  I have a program (Megastar V) which is installed using a CD.  Is there a way to use the optical drive on my PC laptop to install this program on my MacBook Air?

    MacBook Air does not have an optical drive.  There is a program I wish to install on my Air which is an astronomy application called Megastar V.  Installation requires the use of a CD.  Is there a way to use the optical drive on my PC (toshiba laptop using Windows 7) to install this program onto my Air?
    With gratitude,
    Otto

    Thank you for explaining to me how to do this.  I will try it tomorrow and let all of you know how it goes.
    Otto

Maybe you are looking for