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 wOOdy-Soft 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: *

  • Users: db2sachin
  • Content: Threads
  • Order by date
  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

    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;
  6. 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...
  7. 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...
  8. 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
  9. 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...
  10. 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'...
  11. 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>...
  12. 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...
  13. 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 ?
  14. 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...
  15. 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 ?
  16. 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 ?
  17. db2sachin

    AT command

    How do I schedule to open command prompt using AT command ?
  18. db2sachin

    Servlet Instances

    Could anyone tell me how many instances of the same servlet will be formed if I use the same Servlet from different clients/ or same client?
  19. db2sachin

    I want to Replace a special charact

    I want to Replace a special character with some other character using Replace function. The character to be replaced is '. Now how do i do it ? I tried this... update TTM_AIR_TICKET_MST set ATC_AIR_TKT_STATUS_CD = replace(ATC_AIR_TKT_STATUS_CD,'/''{escape '/'},'O' ) ;

Part and Inventory Search

Back
Top