Connectin MS 2000 server database to j2ee

Hello,
Please, help.
I did some researched and has sucessivefully connected a MS 2000 server database in the admin (http://localhost:4848/admingui). I ping it and it says:
Ping succeeded.
my configuration details:
Datasource Classname:
com.microsoft.jdbcx.sqlserver.SQLServerDataSource
property:
databaseName: Testing2
user and password is also correct.
And it is ping sucessfully.
my entity is:
import java.sql.*;
import javax.sql.*;
import java.util.*;
import javax.ejb.*;
import javax.naming.*;
public class DbnamesImpEJB implements EntityBean {
private String id;
private String firstName;
private String lastName;
private double balance;
private EntityContext context;
private Connection con;
private String dbName = "com.microsoft.jdbcx.sqlserver.SQLServerDataSource/mysqldb";
/*********************** Database Routines *************************/
private void makeConnection() throws NamingException, SQLException {
InitialContext ic = new InitialContext();
DataSource ds = (DataSource) ic.lookup(dbName);
con = ds.getConnection();
and the rest.
However, I seem to be getting the following errors.
01-Dec-2005 16:35:52 com.sun.corba.ee.spi.logging.LogWrapperBase doLog
INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specifi
ed host/port: all interfaces/4241"
Caught an exception.
java.rmi.ServerException: RemoteException occurred in server thread; nested exce
ption is:
java.rmi.RemoteException: Could not create Entity EJB; nested exception
is: javax.ejb.EJBException: Unable to connect to database. null; nested exceptio
n is:
javax.ejb.EJBException: Unable to connect to database. null
at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.ja
va:161)
at javax.rmi.CORBA.Util.mapSystemException(Util.java:67)
at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invo
ke(StubInvocationHandlerImpl.java:142)
at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(Unkno
wn Source)
at DbnamesHomeDynamicStub.create(_DbnamesHome_DynamicStub.java)
at DBnamesClient.main(DBnamesClient.java:25)
Caused by: java.rmi.RemoteException: Could not create Entity EJB; nested excepti
on is: javax.ejb.EJBException: Unable to connect to database. null; nested excep
tion is:
javax.ejb.EJBException: Unable to connect to database. null
at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.ja
va:199)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:85
3)
at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocat
ionHandler.java:202)
at $Proxy41.create(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(Reflecti
veTie.java:123)
at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
tchToServant(CorbaServerRequestDispatcherImpl.java:648)
at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
tch(CorbaServerRequestDispatcherImpl.java:192)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
Request(CorbaMessageMediatorImpl.java:1709)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
(CorbaMessageMediatorImpl.java:1569)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(C
orbaMessageMediatorImpl.java:951)
at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.call
back(RequestMessage_1_2.java:181)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
(CorbaMessageMediatorImpl.java:721)
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatc
h(SocketOrChannelConnectionImpl.java:469)
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(
SocketOrChannelConnectionImpl.java:1258)
at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.
run(ThreadPoolImpl.java:409)
Caused by: javax.ejb.EJBException: Unable to connect to database. null
at DbnamesImpEJB.setEntityContext(DbnamesImpEJB.java:167)
at com.sun.ejb.containers.EntityContainer$EntityContextFactory.create(En
tityContainer.java:2446)
at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(NonBlockin
gPool.java:168)
at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(NonBlockin
gPool.java:125)
at com.sun.ejb.containers.EntityContainer.getPooledEJB(EntityContainer.j
ava:1827)
at com.sun.ejb.containers.EntityContainer._getContext(EntityContainer.ja
va:477)
at com.sun.ejb.containers.BaseContainer.getContext(BaseContainer.java:10
72)
at com.sun.ejb.containers.BaseContainer.preInvoke(BaseContainer.java:772
at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocat
ionHandler.java:166)
... 16 more
Press any key to continue...
Im properly wrong with the connection to the database. Please, help. As im quite close at beating this. Thanks
eve

Hi,
Thank you very much. I was able to get help from that site u refered and this site too. I looks like I didnt set my JDBC Resource up. Any Im getting the following errer now. Im thinking this has something to do with my reference to the Jndi name in deployment.
My client makes a reference as:
try {
Context initial = new InitialContext();
Object objref = initial.lookup("Mytest");
DbnamesHome home =
(DbnamesHome)PortableRemoteObject.narrow(objref,
DbnamesHome.class);
May be the reference Mytest to the jndi in deploy from my client as above, should be jdbc/Mysqlserdb as stated in the admin console in JDBC Resource.
02-Dec-2005 12:23:28 com.sun.corba.ee.spi.logging.LogWrapperBase doLog
INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specifi
ed host/port: all interfaces/2000"
Caught an exception.
java.rmi.ServerException: RemoteException occurred in server thread; nested exce
ption is:
java.rmi.RemoteException: Could not create Entity EJB; nested exception
is: javax.ejb.EJBException: Unable to connect to database. No object bound to na
me java:comp/env/jdbc/Mysqlserdb; nested exception is:
javax.ejb.EJBException: Unable to connect to database. No object bound t
o name java:comp/env/jdbc/Mysqlserdb
at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.ja
va:161)
at javax.rmi.CORBA.Util.mapSystemException(Util.java:67)
at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invo
ke(StubInvocationHandlerImpl.java:142)
at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(Unkno
wn Source)
at DbnamesHomeDynamicStub.create(_DbnamesHome_DynamicStub.java)
at DBnamesClient.main(DBnamesClient.java:25)
Caused by: java.rmi.RemoteException: Could not create Entity EJB; nested excepti
on is: javax.ejb.EJBException: Unable to connect to database. No object bound to
name java:comp/env/jdbc/Mysqlserdb; nested exception is:
javax.ejb.EJBException: Unable to connect to database. No object bound t
o name java:comp/env/jdbc/Mysqlserdb
at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.ja
va:199)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:85
3)
at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocat
ionHandler.java:202)
at $Proxy31.create(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(Reflecti
veTie.java:123)
at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
tchToServant(CorbaServerRequestDispatcherImpl.java:648)
at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispa
tch(CorbaServerRequestDispatcherImpl.java:192)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
Request(CorbaMessageMediatorImpl.java:1709)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
(CorbaMessageMediatorImpl.java:1569)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(C
orbaMessageMediatorImpl.java:951)
at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.call
back(RequestMessage_1_2.java:181)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest
(CorbaMessageMediatorImpl.java:721)
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatc
h(SocketOrChannelConnectionImpl.java:469)
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(
SocketOrChannelConnectionImpl.java:1258)
at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.
run(ThreadPoolImpl.java:409)
Caused by: javax.ejb.EJBException: Unable to connect to database. No object boun
d to name java:comp/env/jdbc/Mysqlserdb
at DbnamesImpEJB.setEntityContext(DbnamesImpEJB.java:167)
at com.sun.ejb.containers.EntityContainer$EntityContextFactory.create(En
tityContainer.java:2446)
at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(NonBlockin
gPool.java:168)
at com.sun.ejb.containers.util.pool.NonBlockingPool.getObject(NonBlockin
gPool.java:125)
at com.sun.ejb.containers.EntityContainer.getPooledEJB(EntityContainer.j
ava:1827)
at com.sun.ejb.containers.EntityContainer._getContext(EntityContainer.ja
va:477)
at com.sun.ejb.containers.BaseContainer.getContext(BaseContainer.java:10
72)
at com.sun.ejb.containers.BaseContainer.preInvoke(BaseContainer.java:772
at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocat
ionHandler.java:166)
... 16 more
Press any key to continue...
Any more suggestions will help. Thanks
eve

Similar Messages

  • Problem installing Oracle 9i database entreprise edition on win 2000 server

    Hi,
    I am trying to install the oracle 9i database 2.0(release2) on Win 2000 server and get this error message.
    "Couldn't connect to the server - Please check the network and that server daemons are running. (Socket error 10061).
    Could somebody help...........
    Thanks in advance.
    Maya

    hi,
    try to install service pack for windows 2000 and try.

  • Moving a database in windows 2000 server to RED HAD

    Hello Everybody
    I have a database develop with oracle 10 g over windows 2000 server and i have to install completed in a server with oracle 10 g but in red hat linux . What the best way to to this operation ?

    since you are using 10g, you can also use transport tablespace with differenct OS. If you are 10g Rel.2 side, you can use transport database new feature to transport database between cross platforms.
    If data size is small, then, use exp and import.
    Jaffar

  • How can I  connect to SQL server database thru local network by using JSP?

    I'm currently doing a project by using JSP..And I need to display record from the SQL Server database in our school's local network. May I know how can I do that? How can I write the code so that I can able to access the SQL Server databsase Throught school's network by using JSP? Please tell me step by step how can I do that. I'm using Tomcat 4.1 as Web Server. And I had J2SE and J2EE installed in my computer.

    first you have to establish a ODBC DSN on your computer,
    that connects to the database...you can do that from your control pannel.
    i assume that the TOMCAT server is residing on your computer....(if the webserver is in other computer then you would have to create a System DSN on the data sources ODBC option in the settings>control pannel of that machine)
    then you can use that DSN name to connect to the data base from the class file....for further assistance on how to create the class that access the tutorials in sun site.
    regards
    G

  • Error while installing CRM 4.0 SR1 with Oracle 10.2 on Windows 2000 Server

    Hi.. I'm getting error messages in the Database Instance phase, while installing <b>CRM 4.0 SR1 with Oracle 10.2</b> on Windows 2000 Server. Following are message snippets with last few lines showing error message:
    <b>SAPSSEXC.log</b>
    [code](DB) INFO: REPOSRC~0 created
    (DB) INFO: REPOTEXT created
    DbSl Trace: ORA-4031 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "REPOTEXT"
      (SQL error 4031)
      error message returned by DbSl:
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select name,intcol#,segcol#,...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144208
    [/code]
    <b>SAPAPPL2.log</b>
    [code](DB) INFO: SMOT413~0 created
    (DB) INFO: SMOT413~R04 created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 31)
    (DB) ERROR: DDL statement failed
    (CREATE  INDEX "SMOT413~R05" ON "SMOT413" ( "MANDT" , "ERSKZ"  ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000040K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","select owner#,name,namespace...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144207
    [/code]
    <b>SAPSLEXC.log</b>
    [code]DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (DB) INFO: CO2MAP created
    (IMP) INFO: import of CO2MAP completed (0 rows)
    (DB) INFO: CO2MAP~0 created
    (DB) INFO: CO2MAP~IDX created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (DB) ERROR: DDL statement failed
    (CREATE TABLE "CO2MAPINF" ( "SRCID" VARCHAR2(30) DEFAULT ' ' NOT NULL , "METHID" VARCHAR2(1) DEFAULT ' ' NOT NULL , "APPLNAME" VARCHAR2(30) DEFAULT ' ' NOT NULL , "PAGEKEY" VARCHAR2(70) DEFAULT ' ' NOT NULL , "ID" NUMBER(10) DEFAULT 0 NOT NULL , "LANGUAGE" VARCHAR2(1) DEFAULT ' ' NOT NULL , "NAMESPACE" VARCHAR2(30) DEFAULT ' ' NOT NULL  ) TABLESPACE PSAPCRM620 STORAGE (INITIAL 16384 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 2
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select ts#,file#,block#,nvl(...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144742
    [/code]
    <b>SAPSDIC.log</b>
    [code](DB) INFO: TNMAP~0 created
    (DB) INFO: TODIR created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "TODIR"
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    <b>SAPSDOCU.log</b>
    [code](DB) INFO: TLSY3~0 created
    (DB) INFO: TLSY5 created
    (IMP) INFO: import of TLSY5 completed (3 rows)
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 33)
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE INDEX "TLSY5~0" ON "TLSY5" ( "LANGU", "REL", "OLD_REL", "IMP_DATE" ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000080K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    I am not sure but I think the problem is with the allocated shared memory size, which right now is:
    <b>init.ora</b>
    [code]shared_pool_size = 67108864[/code]
    <b>init<SID>.ora</b>
    [code]shared_pool_size = 90112000
    shared_pool_reserved_size = 9011200
    [/code]
    If this is the cause of the problem then how much should i increase it to? and do i need to modify the size in both files or only init<SID>.ora? Is there any SAP Note related to this problem? Thanks.
    Regards,

    Hi Vasu,
    ORA-4031... for 99%  of cases this means one thing:
    the database instance is not configured correctly.
    To proceed, do the following:
    1. get rid of init.ora (it's not used at all)
    2. make sure that the init<sid>.ora file is really used.
       If there is a spfile in the %ORACLE_HOME&/database folder
       then this will be used.
    3. With your  configured shared pool of 85MB your memory should really not be filled up - anyhow it's really too small for a SAP system!
    Thus I'd check how much memory the other sga-area members (buffer cache, large pool, streams pool, java pool...) take up.
        Remember on Windows 32 Bit, everything runs in one single process that can only allocate 2GB (or 3GB if you've set this option).
    See note:
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=869006&_NLANG=E">#869006 - Composite SAP note: ORA-04031</a>
    for more on this.
    And when you're setting up parameters anyway, check note
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=830576&_NLANG=E">#830576 - Parameter recommendations for Oracle 10g</a>
    KR Lars

  • Oracle 8i 8.1.7 on Windows 2000 Server

    After I install Oracle 8.1.7 on Windows 2000 Professional, Everything is Good, database and Enterprise Manager Server startup normal.
    But when I install Oracle 8.1.7 on Windows 2000 Server, the Oracle Service startup normal , but the database instance can not startup automatical, I must startup the database instance manual using svrmgrl program and the Enterprise Manager Server can not startup ?

    check it:
    start
    -->program
    -->$oracle_home$
    -->Database Administration
    -->Oracle Administration Assistant for Windows NT
    oracle instance 'startup/shutdown options'

  • Problem installing Oracle 8i(8.1.7) standard edition on windows 2000 server

    I am trying to install Oracle 8i (8.1.7) standard edition on windows 2000 server but the setup program doesn't run.
    It starts up, allocates some ram then closes before a window even pops up.
    I also have MSSQL server installed on this computer, does that conflict?
    Has anyone encountered this problem before? If so, please give a solution if you have one, thanks,
    OPS

    Yes. There is a bug with Pent4, Win2000 & Oracle8i.
    Here is the workaround:
    This is a known bug with Oracle java-based applications and Pentium 4 Use this work-around:
    1) Copy the install directory from the CD to the hard disk.
    2) Edit oraparam.ini and modify it as follows:
    * Edit the "SOURCE=" line to to show the full path to the CD ; SOURCE={CD DRIVE LETTER}:\stage\products.jar)
    * Edit the "JRE_LOCATION" line to show the full path to the CD ;
    JRE_LOCATION={CD DRIVE
    LETTER}:\stage\Components\oracle\swd\jre\1.1.7\1\DataFiles\Expanded)
    * Edit the "OUI_LOCATION" line to show the full path to the CD ;
    OUI_LOCATION={CD DRIVE
    LETTER}:\stage\Components\oracle\swd\oui\1.6.0.9.0\1\DataFiles\Expanded
    * Edit the "JRE_MEMORY_OPTIONS" line to include "-nojit" as the first argument ;
    JRE_MEMORY_OPTIONS=-nojit
    -ms16m -mx32m
    3) Start setup.exe from your hard drive
    Choose a Custom install and choose not to create a database during the install.
    This way, the Database
    Configuration Assistant will not be launched during installation. DONT SELECT
    NET8 products for installation.
    You need to put the same java parameters for the DB configurator and the Net8
    Configurator
    to run.
    -nojit -ms16m -mx32m before -classpath on:
    * assistants\dbca\DBAssist.cl
    * network\tools\netca.cl
    ** Run the DataBaseConfigurationAssistant and NetworkConfigurationAssistant after installation.
    Hope it helps!
    Amrit

  • Not able to connect with Sql Server Database

    Hi,
    I'm not able to connect with Sql Server database.during making connection I'm getting the following error:
    "Status : Failure -I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property."
    Please help
    Regards,
    Neeraj Goel

    Hi,
    I'm using Sql Server 2000.
    I downloaded the driver from the given site and still having the same problem. Do I need to copy the driver file in some specific folder.
    Regards,
    Neeraj Goel

  • Installing oracle 10g on windows 2000 server

    hi masters,
    this might look very silly question, and every child might know answer, but i would like to ask this question here that
    i have oracle 9i release 2 installed on my windows server 2000 and an application is already running, now i want to install oracle 10g on same machine...
    but when i try to launch oracle universal installer, it fails to launch it....whay is this so??? do i need to adjust some parameters to install it????
    can anyone provide a checklist to check??i have an antivirus installed on machine...
    any suggestion will be appreciable
    thanks and regards
    VD

    got my answer, you can follow this step.
    on windows 2000 server while launching oracle universal installer, due to jre bug (noted in metalink 266617.1 doc and 393070.1) installer CMD prompt launch and disapper in a while... so run following command on command prompt
    to resolve the issue.. change directory path according to your directory structure.
    change directory to your oracle installation setup.exe directory and execute following command
    C:\>\backup\SoftwareBackup\Database10g\database\install\oui.exe -J-Dsun.java2d.noddraw=truethanks and regards
    VD
    Edited by: vikrant dixit on Apr 21, 2009 4:47 AM
    Edited by: vikrant dixit on Apr 21, 2009 4:48 AM
    Edited by: vikrant dixit on Apr 21, 2009 4:50 AM

  • Oracle 8 installation in Windows 2000 Server

    I can't install oracle Enterprise Manager (Oracle 8 product) in a Windows 2000 Server system. The installation program show me this error message:
    "Unable to delete the NT Service for the
    SQL * NT V2 listener"
    Can any body have the solution?

    Supposedly you need to find these 3 files.
    SQLNET,TNSNAMES, LISTENER using your windows find from start. change the names of the dev ones to .bak or something else.
    copy the files from your 8i/network/admin into those 2 other places (forget the/samples directories). restart the database and it should connect (Developer stuff to database) A friend of mine did this on W2K and it wokred fine. I have tried it on win98 with 8i personal edition for win 98 and DEV 6 and it failed. So if anyone knows anything I am missing let me know. SQL+ works fine so I knw the DB is fine.
    Thanks,
    Michael

  • Regarding Installation of Oracle 10g in windows Advanced 2000 Server

    Dear Friends,
    Please let if Oracle 10g Release 2 can be installed in windows Advanced 2000 Server and what are the requirements for installing on this Operating System.
    please do post your answers here(Plz do not post links)
    thanks

    please do post your answers here(Plz do not post links)WHY???
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • What are the Basic Differences between Oracle and  MS-SQL server Database?

    Hello,
            anybody pls Guide me about the Differences between Oracle and MS-SQL server Database.and also IBM Databases also
    Regards,
    Balaram

    SQL Server only works on Windows-based platforms, including Windows 9x, Windows NT, Windows 2000 and Windows CE.
    In comparison with SQL Server , OracleDatabase supports all known platforms, including Windows-based platforms, AIX-Based Systems, Compaq Tru64 UNIX, HP 9000 Series HP-UX, Linux Intel, Sun Solaris and so on.
    The SQL Server  advantages:
    SQL Server  holds the top TPC-C performance and price/performance results.
    SQL Server  is generally accepted as easier to install, use and manage.
    The Oracle  Database advantages:
    Oracle  Database supports all known platforms, not only the Windows-based platforms.
    PL/SQL is more powerful language than T-SQL.
    More fine-tuning to the configuration can be done via start-up parameters.
    Samrat

  • How to convert Oracle database to Sql server Database

    Hi All,
    I have one database made in the Oracle 8i, i want to convert that database to Sql Server Database,
    Can anyone please give me the step by step process to do this conversion.
    Regards
    Ramesh Jha

    Try using the DTS (data transformation services) services of SQL Server 2000
    DTS is based on an OLE DB architecture that allows you to copy and transform data from a variety of data sources. For example: Oracle directly, using native OLE DB providers.
    Alternatively, you could follow the following broad steps for data migration (assuming you are retaining the same table structures in SQL Server, and that you are talking about SQL Server 2000).
    1. Get the CREATE scripts corresponding to each Oracle table / view / index. These can be reverse engineered from the database using a tool.
    2. Map Oracle datatypes to SQL server datatypes e.g: date maps to datetime/smalldatetime, numeric maps to one of int, bigint, smallint, etc depending on the range of values in the CREATE scripts.
    3. Indexes in SQL Server are of two types: Clustered / non-clustered. There can only be one clustered index on each table.
    4. Converting procedures and triggers will have to be line by line, since SQL Server uses a proprietary T-SQL instead of ORacle's PL/SQL
    I have yet to see a really good tool to do this migration, but it is possible to write a PL/SQL procedure / Pro*C program to automate the script creation for creating tables in the SQL Server database.
    For the actual data import into SQL Server, export the Oracle data table by table into flat files, and then use the import wizard of SQL Server enterprise manager

  • Full Database Backup in DB13 for MS SQL Server databases

    Hello,
    We have some SAP systems using the MS SQL Server database. I want to know if it is possible to setup the Full Database Backup option in transaction DB13 to store the files in a hard disk space.
    I already did this type of configuration in SAP systems in Oracle databases and for this I used the init<SID>.sap where we can put all the configuration, for instance the disk path where we want to save the backup files! But for MS SQL Server databases, in DB13, I don´t know how to do that, when I add the "Full Database Backup" option in DB13, this show me some options but only for tape, but I don´t want to store the backup files in tapes, I want to store/save the files on the server disk itself or else to an external disk but I don´t see where I can set this way of storage!
    This is what you see in DB13 (when using a MS SQL Server database) in "Full Database Backup" and as you see I only have options for TAPE not for a disk or other type of storage! How can I do that? (if that is possible):
    Can you help me please?
    Kind regards,
    samid raif

    Hello Raja
    Sorry for the delay of my answer! Many thanks for that tip, it helps a lot and it solve the last error/problem that I reported here, in fact, the problem was we had named the device with two words containing a space. So we removed that space from the backup device (in SQL management studio) with one word only and the job runs successfully without any errors!
    It works in Development and Quality systems but in our Production system (AM1) the Full backup option in DB13 stopped with the following error, in fact the error is on verification of backup, it means that the Full backup finished with success, but when it does the backup verification, the job in DB13 stops with an error, the following one:
    ***************************** SQL Job information   ******************************
    Jobname:    SAP CCMS Full DB Backup of AM1 [20140417103726-4-103726]
    Type:       TSQL
    DB-Name:    AM1
    For Run:    20140417  10:37:26
    **************************** Job history information  *****************************
    Stepname:   CCMS-step 1
    Command:    declare @exeStmt nvarchar(2000) exec am1.sap_backup_databases @dbList=
                "AM1",@r3Db="AM1",@bDev="fullprd",@expDays= 27,@jobName= "SAP CCMS Ful
                l DB Backup of AM1 [20140417103726-4-103726]",@bkupChecksum="Y",@bkupT
                ype="F",@nativeBkup="N",@exeDate = "20140417103726",@bkupSim = "N",@fo
                rmat = 0,@init = 0,@bkupDb = "AM1",@unload = 0,@exeStmt = @exeStmt OUT
                PUT
    Status:     (success)
    Message:    3014
    Severity:                                                                                                                                                                                                                                                    0
    Duration:   4  hours(s)  41 min(s) 22 sec(s)
    Last msg:   Executed as user: am1. Processed 7434328 pages for database 'AM1', fil
                e 'A01DATA1' on file 1. [SQLSTATE 01000] (Message 4035)  Processed 315
                1504 pages for database 'AM1', file 'A01DATA2' on file 1. [SQLSTATE 01
                000] (Message 4035)  Processed 4574152 pages for database 'AM1', file
                'A01DATA3' on file 1. [SQLSTATE 01000] (Message 4035)  Processed 44363
                92 pages for database 'AM1', file 'A01DATA4' on file 1. [SQLSTATE 0100
                0] (Message 4035)  Processed 25598 pages for database 'AM1', file 'A01
                LOG1' on file 1. [SQLSTATE 01000] (Message 4035)  BACKUP DATABASE succ
                essfully processed 19621974 pages in 16881.638 seconds (9.521 MB/sec).
                 [SQLSTATE 01000] (Message 3014).  The step succeeded.
                        <------------- End of Job Step History --------------->
    Stepname:   CCMS-step 2
    Command:    declare @exeStmt nvarchar(2000) exec am1.sap_verify_backups @nativeBku
                p = "N",@bkupSim = "N",@bDev = "fullprd",@bkupChecksum = "Y",@exeDate
                = "20140417103726",@unload = 1,@dbCnt =1,@exeStmt = @exeStmt OUTPUT
    Status:     (failure)
    Message:    3201
    Severity:                                                                                                                                                                                                                                                   16
    Duration:   0  hours(s)  8  min(s) 30 sec(s)
    Last msg:   Executed as user: am1. Cannot open backup device 'fullprd(\\10.0.0.45\
                backupsap\prd\prdfullqua.bak)'. Operating system error 1265(error not
                found). [SQLSTATE 42000] (Error 3201).  The step failed.
                        <------------- End of Job Step History --------------->
    **************************** Job history information  *****************************
    Can you help me please with this one!? Can you tell me why in verification it stops with that error?
    Kind regards,
    samid raif

  • ASP and SQL Server Database

    My AW7 pieces send user data to asp pages which relay the
    data on to a SQLServer 2000 database. All works well with one
    exception: when a new record is created, any spaces in the string
    containing the user's name are deleted.
    When AW7 sends the variable User_Name="John Doe" to the asp
    page, it issues an SQL ADD command. The result: the SQLServer table
    that receives the data displays the name JohnDoe. What might cause
    the space to be deleted?
    The asp page contains this code:
    <%@ Language=VBScript %>
    <%
    Option Explicit
    Response.expires = 0
    dim conn, SQL, strConn, strSite, strUserName, strUserID,
    ProcApproach, Rqmts1, Rqmts2, Rqmts3, Rqmts4, Rqmts5
    dim CorT1, CorT2, CorT3, CorT4, CorT5, Audit1, Audit2,
    Audit3, Audit4, Audit5, RoleMgrs1, RoleMgrs2, RoleMgrs3, RoleMgrs4,
    RoleMgrs5
    dim RoleMgrs6, RoleMgrs7, RoleMgrs8, ScoreTotal,
    ModComplIntro, QComplProcApproach, QComplRqmts, QComplCorT,
    QComplAudit, QComplRoleMgrs
    'Get data from AW. IIS examples recommend the HTMLEncode
    'method of the ASP Server object but the method doesn't work
    w/ AW.
    'Use Request.Form method.
    strSite=Request.Form("Site")
    strUserName=Request.Form("User_Name")
    strUserID=Request.Form("User_ID")
    ProcApproach=Request.Form("Proc_Approach")
    Rqmts1=Request.Form("Rqmts_1")
    Rqmts2=Request.Form("Rqmts_2")
    Rqmts3=Request.Form("Rqmts_3")
    Rqmts4=Request.Form("Rqmts_4")
    Rqmts5=Request.Form("Rqmts_5")
    CorT1=Request.Form("CorT_1")
    CorT2=Request.Form("CorT_2")
    CorT3=Request.Form("CorT_3")
    CorT4=Request.Form("CorT_4")
    CorT5=Request.Form("CorT_5")
    Audit1=Request.Form("Audit_1")
    Audit2=Request.Form("Audit_2")
    Audit3=Request.Form("Audit_3")
    Audit4=Request.Form("Audit_4")
    Audit5=Request.Form("Audit_5")
    RoleMgrs1=Request.Form("RoleMgrs_1")
    RoleMgrs2=Request.Form("RoleMgrs_2")
    RoleMgrs3=Request.Form("RoleMgrs_3")
    RoleMgrs4=Request.Form("RoleMgrs_4")
    RoleMgrs5=Request.Form("RoleMgrs_5")
    RoleMgrs6=Request.Form("RoleMgrs_6")
    RoleMgrs7=Request.Form("RoleMgrs_7")
    RoleMgrs8=Request.Form("RoleMgrs_8")
    ScoreTotal=Request.Form("Score_Total")
    ModComplIntro=Request.Form("Mod_Compl_Intro")
    QComplProcApproach=Request.Form("Q_Compl_ProcApproach")
    QComplRqmts=Request.Form("Q_Compl_Rqmts")
    QComplCorT=Request.Form("Q_Compl_CorT")
    QComplAudit=Request.Form("Q_Compl_Audit")
    QComplRoleMgrs=Request.Form("Q_Compl_RoleMgrs")
    'Build SQL INSERT command.
    SQL="INSERT INTO User_Data_TS VALUES ('" & strSite &
    "','" & strUserName & "','" & strUserID & "',"
    SQL=SQL & ProcApproach & "," & Rqmts1 & ","
    & Rqmts2 & "," & Rqmts3 & "," & Rqmts4 &
    "," & Rqmts5 & ","
    SQL=SQL & CorT1 & "," & CorT2 & "," &
    CorT3 & "," & CorT4 & "," & CorT5 & ","
    SQL=SQL & Audit1 & "," & Audit2 & "," &
    Audit3 & "," & Audit4 & "," & Audit5 & ","
    SQL=SQL & RoleMgrs1 & "," & RoleMgrs2 & ","
    & RoleMgrs3 & "," & RoleMgrs4 & "," & RoleMgrs5
    & "," & RoleMgrs6 & "," & RoleMgrs7 & "," &
    RoleMgrs8 & "," & ScoreTotal & ","
    SQL=SQL & "'" & ModComplIntro & "','" &
    QComplProcApproach & "','" & QComplRqmts & "','" &
    QComplCorT & "','" & QComplAudit & "','" &
    QComplRoleMgrs & "');"
    'Create a connection object which opens a connection to the
    server
    'Establish a link to the SQL Server database with strConn
    'Use the Execute method to send the SQL query to database
    'Close recordset and db connection as early as possible
    strConn="Provider=sqloledb; Data Source=BUSPC\QS; Initial
    Catalog=ISO_TS; User ID=sa; Password=xxxxx"
    set conn=Server.CreateObject("ADODB.Connection")
    conn.open strConn
    conn.Execute(SQL)
    conn.close
    set conn = nothing
    %>
    The SQLServer table uses the character data type for the
    User_Name variable.
    Thanks.
    Jim

    Seems like I have seen this before, but I can't recall what
    caused it. Try
    URL Encoding everything before you send it using the
    URLEncode() function.
    HTH;
    Amy
    "James_101" <[email protected]> wrote in
    message
    news:[email protected]...
    > My AW7 pieces send user data to asp pages which relay
    the data on to a
    > SQLServer 2000 database. All works well with one
    exception: when a new
    > record
    > is created, any spaces in the string containing the
    user's name are
    > deleted.
    >
    > When AW7 sends the variable User_Name="John Doe" to the
    asp page, it
    > issues an
    > SQL ADD command. The result: the SQLServer table that
    receives the data
    > displays the name JohnDoe. What might cause the space to
    be deleted?
    >
    > The asp page contains this code:
    >
    > <%@ Language=VBScript %>
    > <%
    > Option Explicit
    > Response.expires = 0
    >
    > dim conn, SQL, strConn, strSite, strUserName, strUserID,
    ProcApproach,
    > Rqmts1,
    > Rqmts2, Rqmts3, Rqmts4, Rqmts5
    > dim CorT1, CorT2, CorT3, CorT4, CorT5, Audit1, Audit2,
    Audit3, Audit4,
    > Audit5,
    > RoleMgrs1, RoleMgrs2, RoleMgrs3, RoleMgrs4, RoleMgrs5
    > dim RoleMgrs6, RoleMgrs7, RoleMgrs8, ScoreTotal,
    ModComplIntro,
    > QComplProcApproach, QComplRqmts, QComplCorT,
    QComplAudit, QComplRoleMgrs
    >
    > 'Get data from AW. IIS examples recommend the HTMLEncode
    > 'method of the ASP Server object but the method doesn't
    work w/ AW.
    > 'Use Request.Form method.
    >
    > strSite=Request.Form("Site")
    > strUserName=Request.Form("User_Name")
    > strUserID=Request.Form("User_ID")
    > ProcApproach=Request.Form("Proc_Approach")
    > Rqmts1=Request.Form("Rqmts_1")
    > Rqmts2=Request.Form("Rqmts_2")
    > Rqmts3=Request.Form("Rqmts_3")
    > Rqmts4=Request.Form("Rqmts_4")
    > Rqmts5=Request.Form("Rqmts_5")
    > CorT1=Request.Form("CorT_1")
    > CorT2=Request.Form("CorT_2")
    > CorT3=Request.Form("CorT_3")
    > CorT4=Request.Form("CorT_4")
    > CorT5=Request.Form("CorT_5")
    > Audit1=Request.Form("Audit_1")
    > Audit2=Request.Form("Audit_2")
    > Audit3=Request.Form("Audit_3")
    > Audit4=Request.Form("Audit_4")
    > Audit5=Request.Form("Audit_5")
    > RoleMgrs1=Request.Form("RoleMgrs_1")
    > RoleMgrs2=Request.Form("RoleMgrs_2")
    > RoleMgrs3=Request.Form("RoleMgrs_3")
    > RoleMgrs4=Request.Form("RoleMgrs_4")
    > RoleMgrs5=Request.Form("RoleMgrs_5")
    > RoleMgrs6=Request.Form("RoleMgrs_6")
    > RoleMgrs7=Request.Form("RoleMgrs_7")
    > RoleMgrs8=Request.Form("RoleMgrs_8")
    > ScoreTotal=Request.Form("Score_Total")
    > ModComplIntro=Request.Form("Mod_Compl_Intro")
    > QComplProcApproach=Request.Form("Q_Compl_ProcApproach")
    > QComplRqmts=Request.Form("Q_Compl_Rqmts")
    > QComplCorT=Request.Form("Q_Compl_CorT")
    > QComplAudit=Request.Form("Q_Compl_Audit")
    > QComplRoleMgrs=Request.Form("Q_Compl_RoleMgrs")
    >
    > 'Build SQL INSERT command.
    >
    > SQL="INSERT INTO User_Data_TS VALUES ('" & strSite
    & "','" & strUserName &
    > "','" & strUserID & "',"
    > SQL=SQL & ProcApproach & "," & Rqmts1 &
    "," & Rqmts2 & "," & Rqmts3 & ","
    > &
    > Rqmts4 & "," & Rqmts5 & ","
    > SQL=SQL & CorT1 & "," & CorT2 & ","
    & CorT3 & "," & CorT4 & "," & CorT5 &
    > ","
    > SQL=SQL & Audit1 & "," & Audit2 & ","
    & Audit3 & "," & Audit4 & "," &
    > Audit5 &
    > ","
    > SQL=SQL & RoleMgrs1 & "," & RoleMgrs2 &
    "," & RoleMgrs3 & "," & RoleMgrs4
    > &
    > "," & RoleMgrs5 & "," & RoleMgrs6 & ","
    & RoleMgrs7 & "," & RoleMgrs8 &
    > "," &
    > ScoreTotal & ","
    > SQL=SQL & "'" & ModComplIntro & "','" &
    QComplProcApproach & "','" &
    > QComplRqmts & "','" & QComplCorT & "','"
    & QComplAudit & "','" &
    > QComplRoleMgrs
    > & "');"
    >
    > 'Create a connection object which opens a connection to
    the server
    > 'Establish a link to the SQL Server database with
    strConn
    > 'Use the Execute method to send the SQL query to
    database
    > 'Close recordset and db connection as early as possible
    >
    > strConn="Provider=sqloledb; Data Source=BUSPC\QS;
    Initial Catalog=ISO_TS;
    > User
    > ID=sa; Password=xxxxx"
    > set conn=Server.CreateObject("ADODB.Connection")
    > conn.open strConn
    >
    > conn.Execute(SQL)
    >
    > conn.close
    > set conn = nothing
    >
    > %>
    >
    > The SQLServer table uses the character data type for the
    User_Name
    > variable.
    >
    > Thanks.
    >
    > Jim
    >

Maybe you are looking for

  • Custom properties files in enterprise project

    Hi, I created a enterprise application containing 3 projects: - EAR project - EJB project - Web project And I added a properties file in : -EAR project/EarContent/APP-INF/afile.properties The content of this file is : Host=<path to host> Port=389 And

  • GPS in China

    Hello, I am in Beijing and I can not get any of my apps on my 3Gs which use the GPS to 'determine' my location. Does the GPS work in China? Thanks, Michael

  • Master Database cannot be accessed

    So I have bought the newest version (12.0) of Multisim for Academic versio for almost a month. I have never been able to properly used this software. The first installation was working fine, but when I tried to build my circuit design, it turned out

  • No security tab in form options of Adobe designer

    Hi, I am new at using Adobe designer in a SAP netweaver environnement. I have a problem because I cannot set the security options in the designer because I have not got the security tab in the options. Has this ever happened to any of you ? I have al

  • Set Background image of the Jwindow

    Can any one of u explain how to set the background image of the Jwindow..