JDBC connection issue's HELP!

import java.sql.*;
public class test{
     public static void main(String args[]){
          Statement stmt;
          ResultSet rs;
               try{
                    Class.forName("com.mysql.jdbc.Driver");
          Connection conn = DriverManager.getConnection("jdbc:mysql://h50mysql3.secureserver.net/insurance_bdc", "user", "password");
          Statement stmt = conn.createStatement();
          ResultSet rs = stmt.executeQuery("SELECT * FROM employees");
          while(rs.next())
               System.out.println(rs.getString("name") + rs.getString("address"));
          catch (SQLException exception)
               System.out.println("\nSQL Exception " + exception.getMessage() + "\n");
          stmt.close();
          rs.close();
Can someone please help with this?

try this instead:
import java.sql.*;
public class test{
static Statement stmt=null;
static ResultSet rs=null;
public static void main(String args[])throws ClassNotFoundException, SQLException{
try{
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://h50mysql3.secureserver.net/insurance_bdc", "user", "password");
stmt = conn.createStatement();
rs = stmt.executeQuery("SELECT * FROM employees");
while(rs.next())
System.out.println(rs.getString("name") + rs.getString("address"));
catch (SQLException exception)
System.out.println("\nSQL Exception " + exception.getMessage() + "\n");
}finally{
   try{
  if(rs!=null) 
rs.close();
if(stmt!=null) 
  stmt.close();
  }catch(Exception e){
}

Similar Messages

  • JDBC connection issue with multiple DBs on same instance

    I have two databases on one sql server 2012 instance.  One called 'demotime' the other called 'demotime_dev'.  how ever when I change in my JDBC connection the DB from demotime to demotime_dev.  the connection still remains established with
    the demotime, is there any known reason to cause this? does both being on the same instance have anything to do with the problem?

    Do your application may send a "USE [demotime]" command to Switch to the database? Do you may use a config file in your application where the database is still pointing to the other database?
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Crystal Report 2008 IDE - JDBC connection issue

    Hello,
    I'm using Crystal Report 2008 IDE. I've created a report that goes against Oracle 11G database.
    I have installed Oracle Instant Client (32 bit) 11.2.0.2.0.
    I can establish and Oracle connection via the IDE.
    When I attempt to establish a JDBC connection through the database expert wizard, I keep getting JDBC driver not found message.
    I've updated my CRconfig.xml specifically the classpath to point to where my ojdbc5.jar file is located.
    What else do i need to do in order to establish a JDBC connection?

    Hi,
    First of all what is the service pack that you are using for Crystal Reports 2008, because Oracle 11g R2 is supported from Service pack 4 onwards in CR 2008.
    For JDBC connection with CR 2008 you can have a look at this link might this would help you:
    http://www.sheroz.com/articles/crystal-reports-2008-mysql-and-oracle-databases
    Regards,
    Kuldeep G

  • JDBC connection issue to 9.2.0.7

    Hello,
    I am trying to make a jdbc connection to an Oracle 9i database (on AIX, Entreprise 9.2.0.7 - 64 bit) from a linux box.
    On the client, I have last jdbc driver available :
    jdbc driver name: Oracle JDBC driver
    jdbc driver version: 9.2.0.5.0
    jdbc driver major version: 9
    jdbc driver minor version: 2
    db product name: Oracle
    db product version: Oracle9i Release 9.2.0.6.0 - Production
    JServer Release 9.2.0.6.0 - Production
    However, when trying to connect I got the following execption :
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=153093888)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:334)
    at oracle.jdbc.ttc7.TTC7Protocol.handleIOException(TTC7Protocol.java:3678)
    at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:352)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:365)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:547)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:347)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:172)
    at austin.db.TestDB.main(Unknown Source)
    Note, that with the same code, I can successfully connect to another server (Oracle9i Release 9.2.0.6.0 running on windows)
    Does anyone has an idea oof what is going wrong

    Hello,
    so here is the solution : in your tnsnames.ora file, the entry name must be the same as the DB SID.

  • Sender - JDBC - Connection issue

    Hi All,
    I see a very strange issue on the JDBC Sender Comm Channel. On the Comm Channel Monitoring, I see it in GREEN. But it is not actually polling the DB table.
    Restarted the channel and that did not work.
    For now I have created a copy of the comm channel and the copy is working fine for couple days and again the same problem.
    I created another copy and second copy is working fine till now.
    Not sure what happened.
    I think there are some open connections to the DB still hanging in there. I am wondering if there is any way of deleting or closing the open connections.
    Thanks in advance.

    Hi Naveen,
    In your jdbc sender communication cahnnel go to advanced Mode tab --> there is a check box for Disconnect from Database After Processing Each Message. Select this option and give a try. This will make database connection released and reestablished before every poll interval.
    Please see this help:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7e/5df96381ec72468a00815dd80f8b63/content.htm
    Regards,
    ---Satish

  • JDBC Connect Issues

    So, I have the same project, but thought I would start a new
    string for this new issue.
    I don't have an Oracle client on my server, and I am trying
    to do a connect though a cfscript/createObject to pull Jasper
    Reports into Coldfusion.
    I guess I was wondering, could I pull all of the Oracle
    client drivers, .jar files into my already set up path and access
    them or am I missing how that works. Quite often I am... so if this
    is the case can you explain it a little?
    I am getting a [Macromedia][Oracle JDBC Driver] Error
    establishing socket. Connection Refused: connect
    and I see that it is a driver issue, so if someone could
    point me in a direction and maybe help educate me a bit?
    Appreciate everything!
    Va.

    Sorry I went MIA, I was writing the tech part of a
    feasibility study of integrating coldfusion and java... in the
    middle of trying to learn how some of this works, but why do things
    in order right? :-)
    So, the cftry cfcatch caught nothing. I will be checking logs
    now. I have no idea where it is falling out. I might post the code
    later if I get in the mood to retype it.
    I also wrote this little class to test weblogic, which works
    for about 15 min then shuts the weblocig server down with an
    UnsupportedClassVersion Error... ???
    Thanks and take care,
    Va.

  • JDBC Connection Issue in Weblogic 10.3

    Hi,
    We have upgrade from Weblogic 10.0 to Weblogic 10.3.
    We are having the ojdbc6.jar in the server classpath, the JDK being the 1.6. The DB is Oracle 10g.
    In an cluster environment, we are getting this error, while passing the connection to an Array Descriptor.
    RROR [2009-10-25 04:40:41,700] [] [] - Generic Exception ::
    [weblogic.jdbc.rmi.SerialConnection_weblogic_jdbc_rmi_internal_
    ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_oracle_jdbc_driver_T4CConnection_1030_WLStub
    cannot be cast to oracle.jdbc.OracleConnection]Kindly help me in providing the solution.
    Thanks in Advance,
    Sridhar J

    Hi. The issue is complicated. First, it seems that you are using a DataSource that has not been
    deployed to the cluster, so you are doing JDBC from one WLS server to another before going
    to the DBMS. That is slow and problematic. You should deploy the DataSource to the cluster
    so every WLS instance has it locally.
    The second problem is about your code's cast to an oracle.jdbc.OracleConnection... Are you
    sure that code worked in WLS 10.0?

  • JDBC Connectivity issue

    Hi ,
          I ran into this issue when I configured my receiver JDBC adapter(synchronous) - I am on XI 3.0 Sp20 (JDK 1.4) and I have installed OJDBC 1.4 as my JDBC driver to connect to an Oracle 10g system.
    I have ruled out driver isuues and database issues by writing a small test program to connect the db using the same drivers and the same connectivity parameters like ip/port/sid/id/pwd I used in XI. The program ran fine...
    I am really not able to pinpoint the issue and I would appreciate your help..
    Error during database connection to the database URL 'jdbc:oracle:thin:@<ip>:1521:<SID>;SelectMethod=cursor' using the JDBC driver 'oracle.jdbc.driver.OracleDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Cannot establish connection to URL 'jdbc:oracle:thin:@<ip>:1521:<SID>;SelectMethod=cursor': SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=169870336)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))'
    Pls note i did a few negative tests to rule out a few issues ->
    1) I changed the server ip on purpose to a wrong one... and the system gave me  a different error. So the db server ip is right and working..
    2) I changed the password to a wrong one...but I still got the same error as the above..which means the system does not go up to the ID validation step...
    3) I gave a wrong SID...and I still got the same error...which leads me to conclude that the adapter is able to point to te right server but not able to hit the db...
    Regards,
    Arvind R

    Hi Arvind,
    even though you ruled out problems with the driver, I would suggest to use the Oracle thin JDBC driver version 10.
    Maybe there is a problem with the current OJDBC driver you have deployed on your XI. I'm working on an XI 3.0 and we recently deployed version 10 and experience no problems even connecting to clustered Oracle databases. Maybe worth a shot!
    Regards
    Sven

  • JDBC connection issue - Any ALUI 6.5 Guru there?

    This is the first time i am trying to install Aqualogic 6.5. Mu OS is W2003 and DB: SQL server 2005. I am having issue with JDBC database connection. According to installation guide i've crated a database user with 'sysadmin' role and set default database to 'alidb'.
    USE [master]
    GO
    CREATE LOGIN [aliuser1] WITH PASSWORD=N'mypass', DEFAULT_DATABASE=[alidb], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
    GO
    EXEC master..sp_addsrvrolemember @loginame = N'aliuser1', @rolename = N'sysadmin'
    EXEC aliuser1..sp_addsrvrolemember @loginame = N'aliuser1', @rolename = N'sysadmin'
    If thats wrong or if i missed any steps, Can anyone walkthorugh me the steps to create database user?
    My present configuration manager settings for portal database:
    vendor: mssql
    host:localhost
    port: 1433
    Here is error from diagnostic.bat:
    error: PortalObjectsFactory Initialization Failure (Java)
    platform: Windows (Java)
    failure: FATAL: PortalObjectsFactory Initialization Failure (Java)
    recommendation: RECOMMENDATION: Review the exception listed below for
    details. Since OpenKernel initialized correctly, this usually
    means that the portal database is not scripted or properly
    configured, or there is an installation problem related to JAR
    files. This may also mean the search libraries are not on your
    PATH or LD_LIBRARY_PATH. Try running ptverify.
    exception: OKConfigException
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database
    connection. If this fails, check the web application server
    user's access rights to the file system. Finally, verify the
    XML settings files are not corrupt.
    message: Error opening database connection to:
    jdbc:plumtree:sqlserver://localhost:1433;DatabaseName=alidb,
    exception: [plumtree][SQLServer JDBC Driver]Error establishing
    socket to host and port: localhost:1433. Reason: Connection
    refused: connect
    secondary exception: at
    com.plumtree.openkernel.dbutils.impl.DBConfigHelper.setPlumtreePool
    DataSource(DBConfigHelper.java:330)
    FAILED TO INITIALIZE SYSTEM. YOU CANNOT PROGRESS BEYOND THIS POINT.

    HI tks for replay,
    weel i am able to connect to oracle and execute some query.
    well bea is working fine i am able to open the consile ,oracle db is working fine i am able to execute some sql commands ,alui has some problem sqljdbc error ...i got some document which says to create a plum10 database in oracle things like that....still i am facnig an error at sqljdbc can u pls help me out in this
    pls mail at this id.
    Thanks
    [email protected]

  • New Infinity connect issues - please help

    We are having ongoing issues with getting BT infinity installed to our new house.  I really need someone that can actually help us find out what is wrong and how we can resolve the issues we are having.
    It all started a few months ago when we ordered BT infinity and a new phone line to our new Chapel conversion house.
    Initially there were some issues with the engineer being unable to get the phone line to the house. After numerous phone calls and several engineers visits, we these have now been resolved and we do have a working telephone.
    The problem seems to be with the Infinity. Nobody can give me an answer as to why we have not yet got a connection.
    When the phone engineer visited he said that he would try and connect the Infinity in the green box. – When he went to do this he tried to obtain our patching information and was informed that there was no live order for infinity on our number… As there was nothing more he could do he left.
    We then checked with BT and they confirmed that we do have an order for infinity and that there was a problem that needed and engineer to look at. (We have a box and are paying for the service already…
    We were told last week that an engineer was going to attend on Monday 13th Jan and that we definitely would have a connection by last Monday at the latest… - no engineer attended despite my wife spending her 3rd day in the house waiting for an engineer!
    She phone BT on Tuesday and was told that there was a problem and she would be contacted by Thursday Morning at the latest. – Needless to say , No phone call!!
    We really need to sort this connection out.  Is there anyone who can take this and run with it until it’s sorted? – We are getting nowhere talking to random individuals who have no real history of our connection history.
    Please Help!
    Doug

    Hi dougchapel,
    Thanks for posting and welcome!
    I'm sorry for the problems you're having getting set up on BT Infinity.  I can help get you sorted from here.  Click on my username and under the "about me" section you'll see the link to get in touch with us.
    Cheers,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Integration Connection Issue (Need help!)

    Hello community,
    I have some issues enabling Cockpit with widgets in SAP Business One. I'm running SAP Business One 9.0 PL10 64-Bit I can enable Cockpit with widgets just fine. It's running on default SQL instance (had some issues with named).
    Everytime I try and log in to the demo database, I get the following error:
    All services are running, so I wen't into Modules > Administration > Integration Service > Integration Administration. This opens up a website, which I login with the user "B1iadmin" succesfully. I then go to B1if Admin > SLD > SBODemoUS > B1DI > Test Connection and I'm receiving this error:
    com.sap.b1i.adapter.dia.exception.ConnectionFailedException: java.lang.ClassCastException:class java.lang.NoClassDefFoundError:null incompatible with class java.lang.Exception:null
    1. I've tried installing both Java 7 32/64bit, Java 6 32/64bit and Java 5 32/64bit.
    2. I have check up on the JCO Path: C:\Program Files\SAP\SAP Business One DI API\JCO\LIB
    3. I have checked up on c:\Program Files (x86)\SAP\SAP Business One Integration\DIProxy\diproxyserver.properties path: JCOPATH=C:\\Program Files\\SAP\\SAP Business One DI API\\JCO\\LIB
    4. JDBC Test Connection is succesful:
    Does anyone have an idea what I am doing wrong? I'm more than willing to provide more information of my setup, simply ask.
    Please advice.
    Kind regards,
    Thomas Schmidt

    Hello Teun,
    Thank you for your reply.
    I installed DI API 32-bit, changed the path to JCO to point towards the (x86) path. It now complained about the username and password for the B1i user, so I changed the password and changed it in the integration administration configuration and the connection is now succesful.
    I then launched SAP and no longer had an error upon login. When attempting to start a cockpit window, it asked for the installation of Flash player. Since I'm on Windows 2012 R2, which comes with Internet Explorer 11, it just says that Flash Player is embedded in the browser now. But since I'm on the server version, it's not, so I had to install Desktop Experience through Role and features.
    Anyways, it's all functioning well now.
    Last question; Why does it not work with DI API 64-Bit when both 32 bit and 64 bit comes with JCO?
    Kind regards,
    Thomas Schmidt

  • JDBC Connection Issue

    Hi experts,
    We have a visual composer based application which runs on EP 7.0 SP14.
    This application connect to sql server and use one of its databases.
    We use Microsoft JDBC drivers SP3 for this purpose.
    Everything works perfectly, but atleast once in a day, the connection to the database fails without giving much of details. Given below is the error log which i could retrieve.
    #1.5 #0017A43AD77E00690000009D00001E940004556EB93584F7#1219833948667#/Applications/BI/UDI#sap.com/irj#com.sap.ip.bi.sdk.dac.connector.relational.CommonConnection#59610#1974##sapepdev.etaworld_DEP_4180850#25241#acb6a660740611dd8ce20017a43ad77e#SAPEngine_Application_Threadimpl:3_37##0#0#Error#1#/Applications/BI/UDI#Plain###java.sql.SQLException: MicrosoftSQLServer 2000 Driver for JDBCError opening/loading com.microsoft.util.transliteration.properties.#
    #1.5 #0017A43AD77E0069000000A000001E940004556EB935911D#1219833948667#/Applications/BI/UDI#sap.com/irj#com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcManagedConnection#59610#1974##sapepdev.etaworld_DEP_4180850#25241#acb6a660740611dd8ce20017a43ad77e#SAPEngine_Application_Threadimpl:3]_37##0#0#Error#1#/Applications/BI/UDI#Plain###com.sap.ip.bi.sdk.exception.BIResourceException: <Localization failed: ResourceBundle='com.sap.ip.bi.sdk.localization.sdk.dac.connector.jdbc.Jdbc', ID='sdk.dac.connector.jdbc_1000', Arguments: [> : Can't find bundle for base name com.sap.ip.bi.sdk.localization.sdk.dac.connector.jdbc.Jdbc, locale en_US#
    How can i avoid this?
    Can anyone suggest a solution?
    Thanks a lot in advance
    Shobin

    Please check the belo link it may help
    http://www.websina.com/bugzero/kb/oracle-connection.html
    Thanks
    Srikanth

  • MAJOR CONNECTION ISSUES PLEASE HELP!

    Right this story is going to be long but if anyone could help it would be much appreciated, yesterday i wanted to find out my ADSL settings for my router but first i needed my admin password which i had forgot. The BTGuide told me that i should re-set my router to default settings by pressing the small red button in order to find out and reset my admin password to log onto the bt online website, which i did. 
    But when i then reset the router, ALL information had been lost such as the Home Network which had been created between numerous computers in the house. And now the biggest issue, one of the laptops which was working before will not connect to the router, i removed alll networks and even typed in the correct wireless key but it still will not connect to the bthomehub wirelessly.
    On this laptop i am using now it also would not originally connect so i had to "Manually connect to a wireless network" and somehow this allowed me to be on the internet, i tried this with my other laptop but it STILL will not connect to the internet. My connection was completely fine before i reset to default settings so is there anyway i can get the previous settings back or more importantly connect the laptop to the internet.
    Since this has happened my connection has also been AWFUL on this laptop, i did a speed test yesterday before all of this had happened and it was this;
    http://www.speedtest.net/result/1330929672.png
    I then tested it today and it was this'
    http://www.speedtest.net/result/1332068147.png
    Please someone help as the whole internet conenction will not work on some computers and is now completely messed up on this one, cheers if you've actually read this and want to help.
    Solved!
    Go to Solution.

    inssider when run shows the networks roundabout you and if there are any on the same channel causing interfernce on your network and stopping devices connecting or losing connection.
    as I said enter 192.168.1.254 in your browser and the admin password should be on the back of the hub.  when in to hub manager then just go to wireless and you will see the b/g/n and you should be able to just select b/g.  at the same place you should also be able to change the channel if you want to a free channel according to inssider
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Router/Connectivity issues please help!

    Hello, I'm running Verizon FiOS with the Westell 9100EM Modem/Wireless Router. I just recently upgraded the security settings on this (Upped to WPA2-Personal from WEP, Turned on MAC filtering, and turned off SSID Broadcast). I input all of the wireless devices in my home network (2 laptops, 3 gaming consoles, 1 netbook, 1 desktop w/ wireless card, and 1 wireless printer) into the allowed devices list, and confirmed all of them were able to connect to the home network after turning off the SSID Broadcasting.
    The next morning I awoke to find that nothing could connect wirelessly, so I troubleshot that by just connecting again to the network by entering in the SSID when prompted, and entering in the security key. Went to work and came home to find that once again nothing was connecting wirelessly, and that I was getting "Low connectivity" warnings, and I could not connect to any internet service (browsers, IM programs, Windows Sidebar gadgets, etc.).  In the midst of trying to figure out what was going on, we had a power flicker (gotta love Florida) which reset the modem and things came back on like normal.
    Last night, I come home from work and what do ya' know... it's the same "Low Connectivity" error and symptoms as I just described, I try resetting the modem... nothing. I try resetting the modem and restarting the computer... nothing. Opened a command prompt and ran ipconfig /all and it pulled up an IP Address of 254.204.X.X (the x's are only there because I don't remember the last two octets), and so I checked the properties of the networking device on my computer to see if somehow a static IP had been set up, but it was all still set up to auto-assign everything. So, I started opening up the actual network properties and checked some boxes, changed a setting here and there, but stupidly didn't make any notes about what changes I made, and then the next thing I know the internet just came to life.
    Tonight, once again, I come home from work and school, and the network is pulling the same thing, only this time, I was able to reset the modem/router and it seemed to fix the issue.
    My question is this: Did I mess something up when I turned off SSID Broadcast, turned on WPA2-Personal, and set up MAC filtering? Or is there something wrong with the unit? Or is there something else going on here altogether?
    If anyone could please help me with this, it would really be nice to get my mom off my back. Thanks!

    You don't say what version of windows. I suggest you enable the SSID broadcast and see if that helps. If you are running WPA 2 with AES you are secure enough. The MAC filtering is adding extra overhead that is not necessary. I suggest you get rid of that. Anyone can just as easily spoof the MAC address and anyone can find the SSID if hidden. These are not security measures. WPA2 with AES is.

  • GT72 - CONNECTIVITY ISSUES - PLEASE HELP!

    Good Afternoon, I recently purchased an MSI GT72 2QD 216
    I love the the laptop so far, but I am having 1 issue, I can't watch twitch streams.  Everytime I try all I get is a sudden DROP in my connectivity
    I usually am at a download speed of 50gbs+, whenever I start playing a video on twitch, or streaming pandora or even watching videos on youtube, I plumet to 3gbs (according to speedtest.net)
    Is there something I need to do, or some setting I need to do to not have this?  Its getting so bad I can't even watch anyone stream on twitch, meanwhile if I were to stream/play a game the connectivity isn't touched i'm perfectly fine.
    p.s. I have also tried this on my older laptops and none of those have the problem.  So its just on this laptop.
    PLEASE HELP!

    Your laptop GT72 2Qx already supports 802.11b/g/n and 802.11a/c mode.
    The MSI official driver will activate both modes (auto by default, you can check your WiFi card in Device Manager to see this).
    So now it depends on the router you connected.
    If your router also supports 802.11a/c, it should be able to establish two SSIDs at the same time, one is for 802.11b/g/n (2.4GHz) and another is for 802.11a/c (5GHz). The users can select one of them to connect under corresponding frequency.
    Some older routers can only support 802.11b/g/n and establish only one SSID. Even if it supports 802.11a, you still need the privilege to access the router and switch it to run on 5GHz (requiring router rebooting).

Maybe you are looking for

  • How to calculate fields in a form?

    Hello, I am new to apex and i have a question about create a simple calculation in a form. I created a form and i have 3 fields which i want to use for calculating. Field 1/ field 2 = field 3 when the user enters data into the first and second field

  • Problems installing Mac OS X v.10.3

    This is for a friends PowerPC G4. Its running v10.2.8 and I have the install discs for v10.3. When I go to install 10.3 I get a message bundled software cannot be installed on this computer. The computer specs check out OK so I don't know what the pr

  • JSF in Weblogic Portal

    Hello Friends, I am using first time JSF portlets in weblogic portal 10.2 I created jsf page and generated portlet based on it. I added the portlet to my first page. When I try to access the portal app I get below error. I spent almost 3days on this

  • HT1296 syncing from computer to phone

    1.  Why does my iPhone 4 not show up on My Computer as a Device?  And yet it beeps accordingly, and iTunes starts up, so I must be connected? 2.  I want to move music from my computer onto my iPhone, but sync'ing does nothing, as though I am not conn

  • Tablespace - Block size

    Is it possible to have tablespaces of different block size in a given database? if so what is the advantage/usage? Thanks!