Configuring Oracle for Pet store

Hi when I'm executing the command:
java utils.Schema jdbc:weblogic:oracle:coc weblogic.jdbc.oci.Driver -u scott -p
tiger -verbose oracle.ddl
It gives me the foll error:
utils.Schema will use these parameters:
url: jdbc:weblogic:oracle:coc
driver: weblogic.jdbc.oci.Driver
dbserver: null
user: scott
password: tiger
SQL file: oracle.ddl
Missing license file for: WebLogic Server 6.1
Missing license file for: WebLogic Server 6.1
java.sql.SQLException: Fail to load jDriver/Oracle due to license checking faile
d!
at weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:182)
at weblogic.jdbc.oci.Driver.connect(Driver.java:76)
at java.sql.DriverManager.getConnection(DriverManager.java:457)
at java.sql.DriverManager.getConnection(DriverManager.java:137)
at utils.Schema.main(Schema.java:112)
Could not make database connection
how can I configure my oracle for Pet Store...??
----anjali

Hope this helps:
The following link is incorrect:
http://bernal/stage/docs61/adminguide/utils.html#1143071
1st)
In the doc it says "The directory containing your WebLogic Server
installation. For example, d:\beaHome\wlserver6.1. Required only if using a
BEA-supplied JDBC driver."
it should say "The directory containing your WebLogic Server License. For
example, Z:\bea\610sp1 .... "
The key here is that if WL_HOME=Z:\bea\610sp1load8c\wlserver6.1 bea.home is
generally but not always one directory above WL_HOME. bea.home should point
to the the bea license file.
2nd)
java -Dbea.home=WebLogicHome utils.dbping DBMS user password DB
//* WebLogicHome is almost never correct(unless the license file lives
there
which it never does, especially out of the box install.. and with multiple
installation the license file could live in a different directory structure
all together) please come up with a new convention for defined bea.home.
3rd)
Please so a "real" sample with a successful result: like the following
Z:\bea\610sp1load8c\wlserver6.1\config\docDomain>java -Dbea.home=%WL_HOME%\.
-Djava.library.path=%WL_HOME%\bin\oci817_8
utils.dbping ORACLE pet112 pet112 pet112
Starting Loading jDriver/Oracle .....
**** Success!!! ****
You can connect to the database in your app using:
java.util.Properties props = new java.util.Properties();
props.put("user", "pet112");
props.put("password", "pet112");
java.sql.Driver d =
(java.sql.Driver)Class.forName("weblogic.jdbc.oci.Driver").newInstance();
java.sql.Connection conn = d.connect("jdbc:weblogic:oracle:pet112",
props);
// This mode is superior, especially in serverside classes because
// it avoids DriverManager calls are class synchronized, and will
// bottleneck any other JDBC in the server, even already-running
// connections, because all JDBC drivers use DriverManager.println()
// to log info and exceptions, and that call is also class synchronized.
// For repeated connecting, a single driver instance can be re-used.
**** or ****
Class.forName("weblogic.jdbc.oci.Driver").newInstance();
java.sql.Connection conn =
Driver.connect("jdbc:weblogic:oracle:pet112", "pet112", "pet112");
**** or ****
java.util.Properties props = new java.util.Properties();
props.put("user", "pet112");
props.put("password", "pet112");
props.put("server", "pet112");
Class.forName("weblogic.jdbc.oci.Driver").newInstance();
java.sql.Connection conn =
Driver.connect("jdbc:weblogic:oracle", props);
4th)
Please show a common mistake and how to correct it: like
Z:\bea\610sp1load8c\wlserver6.1\config\docDomain>java -Dbea.home=%WL_HOME%\.
utils.dbping ORACLE pet112 pet112 pet112
Starting Loading jDriver/Oracle .....
Error encountered:
java.sql.SQLException: System.loadLibrary(weblogicoci37) threw
java.lang.UnsatisfiedLinkError: no weblogicoci37 in java.
library.path
at weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:226)
at weblogic.jdbc.oci.Driver.connect(Driver.java:76)
at java.sql.DriverManager.getConnection(DriverManager.java:517)
at java.sql.DriverManager.getConnection(DriverManager.java:146)
at utils.dbping.main(dbping.java:167)
*In order to correct this add -Djava.library.path=%WL_HOME%\bin\oci817_8
or add %WL_HOME%\bin\oci817_8 to your path **THIS IS ONLY FOR WINDOWS**
For solaris -Djava.library.path=$WL_HOME\lib\solaris\oci817_8 or add that
directory to LD_LIBRARY_PATH Also we should documenent the requirement for
oracle libraries be available on the PATH or LD_LIBRARY_PATH otherwise it
won't work.
5th)
Please show what is expected when the user enters this information into the
console... The whole reason for this utility is to help the user with
problems that he/she is having with JDBC pools/datasources from the console.
Idealy a screen shot with the information as it would look from the console.
And tell what they need to do to there Weblogic startup scripts in order for
it work..
6th)
For Oracle Type 2 the following is not true. "DBNAME is the name of a
database on the DBMS." It is the name defined into tnsnames.ora file that
maps to particular DBMS. Also we should provide instructions on how to not
have to rely on the tnsnames.ora file like:
("jdbc:weblogic:oracle:(DESCRIPTION= (ADDRESS = (HOST = suncom) (PROTOCOL =
tcp) (PORT=1521)) (CONNECT_DATA = (SID = ORCL805)))","scott","tiger");
Please let me know if you have any questions...
Andrew Sliwkowski(BEA)
[email protected]
"Adam " <[email protected]> wrote in message
news:[email protected]...
>
i am having the same problem .. if you found a solution can u sahre itwith me
. thanks
"Anjaly" <[email protected]> wrote:
Hi when I'm executing the command:
java utils.Schema jdbc:weblogic:oracle:coc weblogic.jdbc.oci.Driver -u
scott -p
tiger -verbose oracle.ddl
It gives me the foll error:
utils.Schema will use these parameters:
url: jdbc:weblogic:oracle:coc
driver: weblogic.jdbc.oci.Driver
dbserver: null
user: scott
password: tiger
SQL file: oracle.ddl
Missing license file for: WebLogic Server 6.1
Missing license file for: WebLogic Server 6.1
java.sql.SQLException: Fail to load jDriver/Oracle due to license
checking
faile
d!
at weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:182)
at weblogic.jdbc.oci.Driver.connect(Driver.java:76)
at java.sql.DriverManager.getConnection(DriverManager.java:457)
at java.sql.DriverManager.getConnection(DriverManager.java:137)
at utils.Schema.main(Schema.java:112)
Could not make database connection
how can I configure my oracle for Pet Store...??
----anjali

Similar Messages

  • Configure oracle for external procedures

    Hi
    I'm preparing to install 9iAS. I'm trying to configure oracle for external
    procedures. When I tested to see if I have an external procedure listener I
    got a no listener message (below). My tnsnames and listener files are below.
    Can someone comment on what I'm doing wrong ?
    Oracle 8.1.7.0.0 on Windows 2000 SP2
    Thanks
    RC
    D:\oracle\ora81\Apache\Apache\conf>tnsping EXTPROC_CONNECTION_DATA
    TNS Ping Utility for 32-bit Windows: Version 8.1.7.0.0 - Production on
    23-AUG-2001 15:21:56
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    Attempting to contact (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0))
    TNS-12541: TNS:no listener
    D:\oracle\ora81\Apache\Apache\conf>
    +
    listener.ora file
    +
    # LISTENER.ORA Network Configuration File:
    D:\oracle\ora81\network\admin\listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = icimus-xv4iojjv)(PORT = 1526))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle\ora81)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ORCL)
    (ORACLE_HOME = D:\oracle\ora81)
    (SID_NAME = ORCL)
    LISTENER_01=
    (DESCRIPTION_LIST=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS= (PROTOCOL= TCP) (HOST = icimus-xv4iojjv) (PORT =
    1526))
    (ADDRESS_LIST=
    (ADDRESS= (PROTOCOL= IPC) (KEY=EXTPROC0))
    +
    tnsnames.ora file
    +
    # TNSNAMES.ORA Network Configuration File:
    D:\oracle\ora81\network\admin\tnsnames.ora
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = icimus-xv4iojjv)(PORT = 1526))
    (CONNECT_DATA =
    (SERVICE_NAME = ORCL)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = icimus-xv4iojjv)(PORT = 1526))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = ORCL)
    (PRESENTATION = http://admin)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    null

    Is your listener started. This error normally comes when the listener is not started.
    From cmd prompt try this
    cmd> lsnrctl stat
    if you get this error
    LSNRCTL for 32-bit Windows: Version 8.1.7.0.0 - Production on 24-AUG-2001 16:49:46
    (c) Copyright 1998 Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=incq127e)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    that means listerner is not started.
    from cmd prompt or from control panel services run this command
    cmd> lsnrctl start
    and then try the tnsping utilit

  • Configuring Oracle for learning purpose in Laptop

    Hi all,
    I would like to configure Oracle11g in my laptop for learning purpose. Basically i would like to learn PL-SQL by creating some stored procedures and playing around that. Could you just tell me as to how to simulate a pl-sql development environment in home laptop?
    Thanks in advance

    Please clarify what you are referring to as OEM and Rapid Sql.
    If by OEM you mean Oracle Enterprise Manager Database Control, a database management console, then you would need one of the "full" editions not XE. I believe you may install and use even Enterprise Edition with a for-free license, as long as it is for pure learning purposes/self-education. See what it says about the OTN license in the top of the [url http://www.oracle.com/technetwork/indexes/downloads/index.html]downloads index page.
    For SQL development tools in general, XE should do fine as long as you build apps within its feature set.

  • Need help configuring Oracle for admission control&analysis(diploma thesis)

    Hi, board team!
    I encountered your site by searching for professional Oracle-Boards.
    The threads I found on this site are all very helpful and very professional!
    Sorry, for my bad english. I will try to explain everything in a very detailed way, so that you will hopefully know what i mean.
    But let me explain what's my problem.
    I am a student and now I am writing my diploma thesis (Analysis of Capacity mechanism in Oracle) and I have to set up an Oracle 10g Database. I managed to install Oracle using the Universal Installer. In my opinion it's a very helpful tool!
    But I have difficulties configuring the Database.
    The Database has to determine comparable results. I generate 3 different types of users. Each user has its own characterisations (IO and CPU consumption). The consumption for each user is always the same! (When a certain user connects to a databse the transactions/queries will be always the same).
    To determine this Resource-Consumption I programmed an infinite loop (written in PL/SQL) -> infinite and equal queries.
    Unfortunately the results are not comparable. The longer the loop is running the more different the results are. The results are not significant.
    I think this is because of the Redo-Log-Buffers, which grow with every Transaction. (I'm sorry for wrong estimates, but I'm just a newbie with Oracle and database-systems).
    After that I tried to shut down the databse after EACH measurement and finally restart the database. Now the results were all about the same.
    Are there any solutions to make it more efficient?
    What would you do?
    After the measurements, I will write them into a Table (for each user: IO- and CPU-Consumption).
    If one of the three users connects to the databse again, there will be an analysis algorithm, which queries this table and collects the measured values and the actual system-utilization (V_$-table). Therefore i will write a small program in PL/SQL. The analysis-Function is a "Black-box". I just use the functionality and submit User-consumptions and system-utilization. The function returns a value (0 or 1; 0=deny, 1=allow).
    I thought to implement my small-program with the Trigger-functionality or VPD. The PL/SQL-procedure will be called after a user logged on to the database. The significant values will be queried and submitted to the "black-box" (programmed in java). The submission to this "black-box" should by implemented with Java RMI or Java Beans.
    Are there any better possibilities?
    Thanks for your support!
    Now i will install Windows 2003 Server and Oracle 10g r2
    Best regards,
    mailya
    "Poor" Server:
    Fujitsu Siemens Computers Celsius 400
    P4 1700 MHz
    1GB RAM
    40 GB HDD
    OS: Win 2003 Server Enterprise
    DB: Oracle 10g R2

    Hi, board team!
    I encountered your site by searching for professional Oracle-Boards.
    The threads I found on this site are all very helpful and very professional!
    Sorry, for my bad english. I will try to explain everything in a very detailed way, so that you will hopefully know what i mean.
    But let me explain what's my problem.
    I am a student and now I am writing my diploma thesis (Analysis of Capacity mechanism in Oracle) and I have to set up an Oracle 10g Database. I managed to install Oracle using the Universal Installer. In my opinion it's a very helpful tool!
    But I have difficulties configuring the Database.
    The Database has to determine comparable results. I generate 3 different types of users. Each user has its own characterisations (IO and CPU consumption). The consumption for each user is always the same! (When a certain user connects to a databse the transactions/queries will be always the same).
    To determine this Resource-Consumption I programmed an infinite loop (written in PL/SQL) -> infinite and equal queries.
    Unfortunately the results are not comparable. The longer the loop is running the more different the results are. The results are not significant.
    I think this is because of the Redo-Log-Buffers, which grow with every Transaction. (I'm sorry for wrong estimates, but I'm just a newbie with Oracle and database-systems).
    After that I tried to shut down the databse after EACH measurement and finally restart the database. Now the results were all about the same.
    Are there any solutions to make it more efficient?
    What would you do?
    After the measurements, I will write them into a Table (for each user: IO- and CPU-Consumption).
    If one of the three users connects to the databse again, there will be an analysis algorithm, which queries this table and collects the measured values and the actual system-utilization (V_$-table). Therefore i will write a small program in PL/SQL. The analysis-Function is a "Black-box". I just use the functionality and submit User-consumptions and system-utilization. The function returns a value (0 or 1; 0=deny, 1=allow).
    I thought to implement my small-program with the Trigger-functionality or VPD. The PL/SQL-procedure will be called after a user logged on to the database. The significant values will be queried and submitted to the "black-box" (programmed in java). The submission to this "black-box" should by implemented with Java RMI or Java Beans.
    Are there any better possibilities?
    Thanks for your support!
    Now i will install Windows 2003 Server and Oracle 10g r2
    Best regards,
    mailya
    "Poor" Server:
    Fujitsu Siemens Computers Celsius 400
    P4 1700 MHz
    1GB RAM
    40 GB HDD
    OS: Win 2003 Server Enterprise
    DB: Oracle 10g R2

  • Configure Oracle for ODBC

    Hi @ everybody,
    i have an application, that needs a connection to my Oracle 11gR2 (11.2.0.3.0) Enterprise Edition Instance at a Red Hat 6 Server via ODBC. Is there any HowTo, where it is shown, how i configure that at ORacle side? Or is it enabled as standard?
    You have to know: before the application was connected to a MySQL database, that has been migrated to the Oracle instance and now we want to setup the configuration.
    Thanks and best regards,
    David

    David_Pasternak wrote:
    This one i've already seen, but it seems to bee for windows side. But the application is running under Red Hat 6 like the Oracle instance.
    EDIT: i've found the one for Linux, but do i have to install it on the side of application, on database server with Oracle instance or on both?
    Edited by: David_Pasternak on 02.04.2013 03:14By its very nature, ODBC sits between the application and the db-specific client software. It provides a generic interface for the application.
    Application code --> ODBC driver --> Oracle client (TNS) --> OS Network stack --> NIC --> wire --> NIC --> OS network stack --> Oracle TNS --> Oracle server process --> oracle instance --> oracle database

  • 27" iMac custom configure online for in store pickup?

    Can I custom build a 27" online and pickup in store? Or can I config at the store for pick up?
    Thanks

    Neither. You can customize it online for delivery to your address.

  • Remote start pet store

    Hi,
    I am using weblogic 6.1 and remotely deployed pet store application on a different
    machine using NodeManager. When I try to start the petStoreServer from local admin
    console, I got following error:
    Could not create pool connection. The DBMS driver exception was:
    SQL Exception: Database 'petStore' not found.
         at c8e.k.j.l_(Unknown Source)
         at c8e.k.j.l_(Unknown Source)
         at c8e.k.j.n(Unknown Source)
         at c8e.k.q.<init>(Unknown Source)
         at c8e._b.e.<init>(Unknown Source)
         at c8e._b.c.getNewLocalConnection(Unknown Source)
         at c8e.k.v.connect(Unknown Source)
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:193)
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:134)
         at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator.java:698)
         at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:282)
         at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:623)
         at weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:329)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:279)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:233)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:193)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy0.updateDeployments(Unknown Source)
         at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:2761)
         at weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:370)
         at weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:160)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy47.start(Unknown Source)
         at weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:480)
         at weblogic.management.Admin.startApplicationManager(Admin.java:1180)
         at weblogic.management.Admin.finish(Admin.java:590)
         at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    Any hint?
    Thanks,
    Cathy
    Covasoft, Inc.
    1250 S. Capital of Texas Hwy.
    Bldg. 1, Suite 240
    Austin, Texas 78746
    Office: 512.732.7860
    Fax: 512.732.7832

    The exception tells me that the connection pool was not configured properly and
    thus was not created; which as you know, the datasources are dependent on.
    "Anjali" <[email protected]> wrote:
    >
    Created connection pool & data sources in the administartion console
    for Pet Store
    .When I start the example server after this , it gives the following
    error on
    the server console:
    Enter password to boot WebLogic server:
    Starting WebLogic Server ....
    <Nov 1, 2001 10:24:21 AM IST> <Notice> <Management> <Loading configuration
    file
    .\config\examples\config.xml ...>
    <Nov 1, 2001 10:24:24 AM IST> <Info> <Logging> <Only log messages of
    severity
    "E
    rror" or worse will be displayed in this window. This can be changed
    at Admin
    Co
    nsole> examples> Servers> examplesServer> Logging> General> Stdout severity
    thre
    shold>
    <Nov 1, 2001 10:25:04 AM IST> <Error> <JDBC> <Error during TXDataSource
    creation
    : weblogic.common.ResourceException: DataSource(jdbc.InventoryDB) can't
    be creat
    ed with non-existent Connection Pool (petstorePool)>
    <Nov 1, 2001 10:25:04 AM IST> <Error> <JDBC> <Error during TXDataSource
    creation
    : weblogic.common.ResourceException: DataSource(jdbc.SignOnDB) can't
    be created
    with non-existent Connection Pool (petstorePool)>
    <Nov 1, 2001 10:25:04 AM IST> <Error> <JDBC> <Error during TXDataSource
    creation
    : weblogic.common.ResourceException: DataSource(jdbc.EstoreDB) can't
    be created
    with non-existent Connection Pool (petstorePool)>
    <Nov 1, 2001 10:25:20 AM IST> <Notice> <WebLogicServer> <WebLogic Server
    started
    >
    <Nov 1, 2001 10:25:21 AM IST> <Notice> <WebLogicServer> <SSLListenThread
    listeni
    ng on port 7002>
    <Nov 1, 2001 10:25:21 AM IST> <Notice> <WebLogicServer> <ListenThread
    listening
    on port 7001>
    what could be the problem. please if u can help out.
    ----anjali

  • Configuring oracle 8i for multiple language support?

    We are in discovery for a new web site that will need to support many languages. The initial phase is for English and some European languages like swedish and french but plans are to include multi-byte languages like japanease in the future.
    What are the possible configuration options for oracle to help provide support of this. Can 1 database installation support many languages? What are your reccomendations?

    Also what is the level of UNICODE support provided by oracle? If we are devolping in java is it possible to store unicode in the database? We could then store a table to indicate what the language is for all the data ourselves?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by endofall:
    We are in discovery for a new web site that will need to support many languages. The initial phase is for English and some European languages like swedish and french but plans are to include multi-byte languages like japanease in the future.
    What are the possible configuration options for oracle to help provide support of this. Can 1 database installation support many languages? What are your reccomendations?<HR></BLOCKQUOTE>
    null

  • How to configure Oracle Alerts For Sending EMail?

    Hi All,
    I am using Oracle Apps 12.1.1.
    I am configuring Oracle Alerts to sent a email.
    for that i have set
    Unix send mail :/usr/lib/sendmail
    Mail Database/Server Name:172.16.0.6
    Mail Priority:Normal
    In Accounts:
    User Name:My User Name
    Password:******
    Anything need to configure because after submitting a request It is showing that request is successfully completed but not receiving mail.
    Please Help.
    Thank In Advance.
    Regards,
    SHD

    Hi;
    please check below links:
    Alert-EBS
    General EBS Discussion
    Oracle Periodic Alert..
    Oracle Periodic Alert..
    Also see:
    Oracle Alert Documentation Resources, Release 12 [ID 396315.1]
    How to determine what email system is being utilized for Oracle Alert processing [ID 428193.1]
    Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i [ID 231286.1]
    How to setup Email Notification from Microsoft Exchange with Oracle Alerts [ID  163249.1]
    Regard
    Helios

  • How to configure Oracle SSO for forms and apex

    Hi All,
    I am trying to configure oracle SSO for forms and apex using third party external authentication. Please help me how to configure. I a have tried all possible things
    from web but I am not able to do it. Is there any doc or links are much appreciated.
    Info: Some reason my oiddas web link is not working it used to work fine before and also the from /pls/orasso/ link I am not able to login may be because of my oiddas issue
    Thanks

    Hi Andreas,
    Thanks you for your help. I am trying to implement third party external LDAP authentication for APEX and Forms.
    So I started with OID and SSO setup to create external Partner Applications. Some reason my oid and sso web login links are not working. I didn't find any errors. I need some help in finding the problem and direction, I already read docs on web but no proper direction. I appreciate your help.
    Thanks

  • How to configure Oracle SSO for OBIEE

    Hi all
    Can anyone help me saying how to configure Oracle Single Sign-on with OBIEE?
    Basically I want to enable a common login for Dashboard and answers using SSO.
    I am using OBIEE 10.1.3.4 on a Redhat Linux
    thanks in advance

    Hi...
    See this, hope this what you want...??
    If not .. ignore...
    Thanks & Regards
    Kishore Guggilla

  • How to configure oracle thin drivers for SUN APPLICATION SERVER

    hi all,
    I am working with EJB with oracle as back-end. I wants to know how to configure oracle thin drivers for the SUN APPLICATION SERVER. Please explain me breifly.
    Advanced thanks to all the replies.
    with regards,
    /kumaraswamy.n

    Kumaraswamy,
    Did you try searching the Internet? Here are the results of my Internet search:
    http://tinyurl.com/zo4gk
    And one of the first hits in the list was this:
    Deploying to a Sun Java System Application Server
    Good Luck,
    Avi.

  • How to configure Oracle Enterprise Manager for ASM RAC Database ?

    Dears,,
    We have two databases (Primary & Standby), each database has two instances
    Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    How to configure Oracle Enterprise Manager for this environment ?
    I need documentation for this please.
    Many thanks & Regards,,

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance

    Hi All,
    Please let us know How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance.
    Reagrds,
    Vikas

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to configure  Oracle BPEL Process Manager for JBoss 4.2.1

    can any body help me to configure Oracle BPEL Process Manager for JBoss 4.2.1

    Look here:
    http://download.oracle.com/docs/cd/E10291_01/doc.1013/e10538/toc.htm
    Marc
    http://orasoa.blogspot.com

Maybe you are looking for

  • Runtime error: failed to create delegate view

    hi all, We have two applications in two separate projects. But we can deploy only one at a time. If we deploy the second application (or vice-versa)and try to access the first application, it throws up the following error. P.S. The problem is only wi

  • How many workplaces could be set up?

    Hello,      We are small design company that are thinking about changing our free tools to professional Adobe products (our partners use CS6 products and we need to adapt)      In Adobe store I see offer for Small and medium business: 69.99€/mo per l

  • Error 13019 iPod nano 6th gen. I manually manage my music and I have tried literally everything.

    Ok Apple people, you better give me some customer service. I am getting this error message whenever my iPod needs to sync after i try to click/drag to add songs or delete something. I see the songs I'm trying to add in the "Music" section of my devic

  • What is use of % symbol in JSP

    What is use of % symbol in JSP? Please reply

  • Hide Repeated Key Values Setting Not Saved

    Hi Experts, We are working on BI7. Currently we are changing the Query Properties to display Repeated Key Values. However, whenever we execute the reports, all repeated key values are still hidden. When we return to BEx Designer, the setting is rever