Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. db2sachin

    Value Objects

    Is it ok to initialize an attribute (Addresses) of a Value Object while declaring that attribute. eg Suppose I define a value object named Customer like this public class Customer implements Serializable { private String firstName; private String lastName; private Collection Addresses =...
  2. db2sachin

    Database Schema configuration

    I have a problem with queries. Actually our DB schema for development and UAT are different. For eg. we use following query in our Development environment. "Select * from DWSTG.CUST_PRDCT where GRP_MBR_ID= ? ; but for UAT we need to change the schema to TMSTG.CUST_PRDCT from...
  3. db2sachin

    POrt settings for IBM WebSpehere application server

    I have an application running on a IBM WebSpehere application server. I connect to it thru a port. Is there any setting by which I can specifies that connect to that server using some xxxx port but if that port is busy then use any available port. Please let me know asap. Thanks
  4. db2sachin

    How to test connection between 2 websphere servers ?

    Is there any mechanism or utility thru which I can test connecting to a websphere server at a specific port from another websphere sercer ? Thanks in advance.
  5. db2sachin

    Calling an EJB from another EJB

    Thanks sedj. I tried what u had told and I guess now its going bit further than it was before. But its giving me following error now- java.rmi.RemoteException: CORBA NO_RESPONSE 0x4942fb01 Maybe; nested exception is: org.omg.CORBA.NO_RESPONSE: Response timed out minor code: 4942FB01...
  6. db2sachin

    IncompatibleClassChangeError

    What does the following error mean ? What is the possible cause of this error ? java.lang.IncompatibleClassChangeError: com.ibm.CORBA.iiop.ORB method createObjectURL(Ljava/lang/String;)Lcom/ibm/CORBA/iiop/ObjectURL;
  7. db2sachin

    Calling an EJB from another EJB

    I want to call an EJB from another EJB. Both the EJBs are in different WebSphere Application Server. Basically I have a project running on one server & I want to interact with another project on a different Server. How do I do it without taking the JAR file of the other project ? I just want to...
  8. db2sachin

    Making Static class Serializable ?

    I have an object 'FOO' which implements Serializable & it contains following Object 'XYZ' within it. Is it correct to have 'ABC' as Serializable as it is Static class within 'XYZ' ? I intend to pass 'FOO' to EJB using RMI. So, it should be Serializable which implies that 'XYZ' & 'ABC' should...
  9. db2sachin

    hiding a -ve sign of a field on JSP

    I have an amount field on my JSP page. This field can contain -ve values as well but I don't want to show the -ve sign on the page. How do I do that ? The data is passed thru a form (value object in Struts framework). Thanks in advance
  10. db2sachin

    Not able to see menu items ??

    I'm giving the whole prog I had written for showing a menu item. The prog is opening the frame with menubar on it containing 2 menus namely 'File' & 'Edit'. But when I click on 'File' nothing happens. Actually I want to see the menuitems 'Cut' & 'Copy' on my file menu. Pls let me know if...
  11. db2sachin

    Interface prob

    I have one interface say 'I' with say 10 methods. I want to use only 5 methods from it in one of my class 'A', some other class 'B' may use rest of the methods or may be all of them. But for class 'A' I want only 5 methods. How can I achieve that ? Coz if I implement interface 'I' in class 'A'...
  12. db2sachin

    Error in getting connection !!

    Could u help me in the follwing problem ? We are mentioning the database URL as followes. Here the problem is if we don't specify the SelectMethod=cursor clause in the URL it gives some error (pasted below). Can we avoide that error without using the SelectMethod clause ? - <database>...
  13. db2sachin

    DataBase difference

    We have two database servers. Both the servers have same databases. Actually we set up two same databases one for development & other for testing. Whenever we make changes to development DB we replicate the same to test DB as well. But despite of taking care sometimes we miss to replicate...
  14. db2sachin

    Invoking Servlet thru URL ??

    Can I call a sevlet from an HTML page throught its URL directly without having any submit button on the HTML form ?
  15. db2sachin

    dblook error

    I'm getting some error when I try to run db2look cmd with some options to generate ddl of my existing database. Actually, I have to move the database across different platform. So I need to generate the ddl for whole database & then run that script to create the new database. this is the output...
  16. db2sachin

    cannot manage dbases?

    pls specify what kind of backup option u'r trying, I mean ONLINE or OFFLINE. Also post the script ur using for backup.
  17. db2sachin

    DeadLock

    to know abt deadlocks u can use foll command on db2cmd db2 get snapshot for locks on <Data Base name> & to kill all applications u can either use db2stop force or db2 force application all & db2stop togather. after doing this u'll have to restrat u'r database using...
  18. db2sachin

    How to transfer DB2 database from Linux server to Win 2000 server ?

    Can I just use the Backup of my database on Linux server & then restore or create the database on WIn 2000 server using that backup ?
  19. db2sachin

    How to transfer DB2 database from Linux server to Win 2000 server ?

    db2sachin (Programmer) Jun 30, 2003 How do I transfer my DB2 database from linux server to Win 2000 server ? I want to retain the data as well. Can I use the backup of my Linux server & restore the backup to Win 2000 server ?
  20. db2sachin

    Transferring Data Base from Linux to Win 2000 !

    How do I transfer my DB2 database from linux server to Win 2000 server ? I want to retain the data as well. Can I use the backup of my Linux server & restore the backup to Win 2000 server ?

Part and Inventory Search

Back
Top