Verify password against database

In one of my programs built in Oracle WebDb/PL-SQL i would like the user to be verified as a valid user, by letting him enter his username/password once again, (user is already logged in) without disconnecting users session first.
Is there any way to check if this combination
(username/password) is correct against the database once again ??
null

Jason Judge ([email protected]) wrote an article in the May 2000 issue of Oracle Professional (www.pinpub.com/oracle) that describes a technique of recreating the user and comparing the new encrypted password (which you can access using the DBA_USERS view) with the old one.
If you use a different db for the test there won't be any issues: create the user on the test db, retrieve the encrypted password, delete the user from the test db.
On the same db Jason suggests using mixed case for the user name ('create user "TeStUsEr" identified by test') so that the user you create won't be confused by Oracle for the existing user ('TESTUSER' - uppercase like all objects if created without being quoted).
Jason indicates that the password encryption doesn't depend upon the case.
Good luck!
null

Similar Messages

  • Validating id and password against rdbms using struts1.1

    hi
    in our current project we r using struts1.1. in my action class i have to validate the login id and password against database, iam also using DAO pattern my DAO is a java bean.
    so pls help me to validate loginid and password against database using DAO pattern.
    thanks

    Hi,
    You can use OJB (http://db.apache.org/ojb/). We are using OJB with Structs and work perfectly, you can check it or look for other equivalents.
    Of course, you can program your own DAO pattern, but I recommend you try this software.
    Good luck,
    Gerardo

  • Verifying a username and password against SQLServer 2000 dbase via servlets

    Hello everyone,
    I sent a message earlier on. I'm really sorry if I sounded rude. Actually Im working on a school project an it involves a bank application. I have created a registration page that saves information in a database table already created on my computer. I have also created an HTML page in wihich registered users can log in. I am trying to verify the username and password against the database table tagged "Register Customer Information" but when I click on the login button, I get an SQL exception that says "invalid column count or syntax error". Please can anyone help me out? I would really be grateful. Thank you so much. The code for my servlet is this:
    * LoginConfirmationServlet.java
    * Created on January 24, 2007, 11:32 PM
    package org.me.RegisterCustomerInformation;
    import java.io.*;
    import java.net.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author HP COMPAQ
    * @version
    public class LoginConfirmationServlet extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    String use=request.getParameter("usernname");
    String pas=request.getParameter("passwword");
    if((use!=null)&&(pas!=null))
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:MyDSN","sa","");
    ps=con.prepareStatement("select UserName,Password from RegisterCustomerInformation where UserName= ? and Password=?");
    rt=ps.executeQuery();
    while (rt.next())
    String u=rt.getString("UserName");
    String p=rt.getString("Password");
    if (use.equals(u)&&pas.equals(p))
    out.println("Welcome:"+use);
    else
    out.println("Your login information is incorrect.");
    out.println("Please check to ensure your username and password is entered correctly.");
    out.println("Thank you!");
    con.close();
    catch(Exception ex)
    out.println("Error:"+ ex.toString());
    /*out.println("<html>");
    out.println("<head>");
    out.println("<title>Servlet LoginConfirmationServlet</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("<h1>Servlet LoginConfirmationServlet at " + request.getContextPath () + "</h1>");
    out.println("</body>");
    out.println("</html>");*/
    out.close();
    The html fields names are:"usernname" and "passwword" respectively. I'm making use of the POST method and the servlet name is LoginConfirmationServlet. Please I would really be grateful if any one can help me out. Ive not been able to run this for the past few days. Thanks.
    }

    You did not supply values to UserName and Password. You have created preparedStatement object with sql query with ? marks for UserName andPasssword. Assign the values what u got from the form using setProperty(int index) method of preparedStatement and try.

  • Do new ODAC 11 feature work against Database 10.2

    Hi,
    Do features new in ODAC 11 work against Database 10.2. I'm mainly interested in "End-to-End Tracing using Action and Module attributes"
    Thanks

    Here's a real quick and dirty knock up using ODAC 2.111.6.20 against a 10.2.0.3 database:
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    namespace Miscellaneous
      class Program
        static void Main(string[] args)
          string constr = "User Id=scott; " +
                          "Password=tiger; " +
                          "Data Source=lt10gr2; " +
                          "Pooling=false; " +
                          "Enlist=false";
          OracleConnection con = new OracleConnection(constr);
          con.Open();
          con.ActionName = "MyAction1";
          con.ModuleName = "MyModule1";
          OracleCommand cmd1 = con.CreateCommand();
          cmd1.CommandText = "select user from dual";
          OracleDataReader dr = cmd1.ExecuteReader();
          while (dr.Read()) ;
          con.ActionName = "MyAction2";
          con.ModuleName = "MyModule2";
          OracleCommand cmd2 = con.CreateCommand();
          cmd2.CommandText = "select sysdate from dual";
          dr = cmd2.ExecuteReader();
          while (dr.Read()) ;
          Console.WriteLine("ENTER to continue...");
          Console.ReadLine();
    }I enabled tracing for the session and here are a couple of snippets from the trace file:
    *** ACTION NAME:(MyAction1) 2008-01-24 21:08:01.033
    *** MODULE NAME:(MyModule1) 2008-01-24 21:08:01.033
    -- snip --
    *** ACTION NAME:(MyAction2) 2008-01-24 21:08:01.049
    *** MODULE NAME:(MyModule2) 2008-01-24 21:08:01.049
    ...Whilst obviously not extensive, I think this is the expected result...
    - Mark
    EDIT:
    Just to be clear... this feature works with previous releases of the database; however, there are other features exposed via ODP.NET (or available to ODP.NET) such as the client side cache which will not work with previous releases. Possibly being pedantic, but thought it might be a good idea to state that anyway.
    - Mark

  • I run Dev 6i on Windows 2008 R2 64-bit,the forms are working fine after connection to the database but the reports continue to request for username, password and database connection string every time i try to open a report.

    I receive REP-0501: Unable to connect to specified database. I run developer 6i application on windows 2008 r2. I have applied the nn60.dll and nnb60.dll files to the \BIN directory. The forms are working fine. The reports will only display after the correct user id (username, password and database connection string) is supplied. This is happening to all attempts to open already complied form. Pls, help.

    If you are connecting to an Oracle 11g database, remember that by default the passwords are case sensitive. To disable that, run
    ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

  • Verify that the database is created with the correct path  specification

    Dear All
    When I installed DB2 9.1 with SP4 on windows 2003 64 bit,I use Configuration Assistant tool which is problem
    SQL1031N  The database directory cannot be found on the indicated file system.  SQLSTATE=58031
    Explanation:
    The system database directory or local database directory could
    not be found.  A database has not been created or it was not
    cataloged correctly. 
    The command cannot be processed. 
    User Response:
    Verify that the database is created with the correct path
    specification.  The Catalog Database command has a path parameter
    which specifies the directory where the database resides. 
    sqlcode :  -1031
    sqlstate :  58031
    Thanks

    Hi Phuc,
    Could you please validate, that the database TST is located in driver H: ?
    If the database is there, you find a directory with the name of your instance under the H: drive, inside this directory, you must find a NODE0000 directory and finally inside the NODE0000 directory there must be a SQL0000? directory, where ? is a number.
    You get your instance name from the environment variable DB2INSTANCE or simply by the execution of:
    db2 get instance
    If there is no SQL0000? directory at all, this means the database is located somewhere else.
    If there is SQL0000? directory in that drive, you can perform the following:
    db2 CATALOG DB TST AS TST ON H:
    And provide the error message, if any.
    Hope this helps
    Best regards, Edgardo

  • Error APP-FND-01516 INVALID APPLICATION USERNAME, PASSWORD, OF DATABASE

    Hi Guru's,
    I've installed 11i - 11.5.9 on 2000 Server.
    I'm Facing an Error after initialization of applet.
    I'm mentioned the exact error bellow.
    APP-FND-01516 INVALID APPLICATION USERNAME, PASSWORD, OF DATABASE
    Username : APPLSYSPUB
    Password : PUB
    Database : PROD
    Can any one truble shoot my problem.
    Even i'm not able to initialized my Database due to this problem.
    I have prepared Some Screan Shots, Like Window Services, Applet initializer, and The exact applet which shows the error. if any one of u provide me your's mail Id I can Send.
    Please Trouble shoute this problem.
    Thanks
    Lav

    Hi Sir,
    I Followed Up Your instrustion and hear is The Out Put.
    D:\> cd d:\oracle\oracle\proddb\9.2.0
    D:\> Source the environment file (PROD_edu)
    1. D:\> echo %ORACLE_HOME% -> Should point to 'd:\oracle\proddb\9.2.0'
    Out Put : D:\oracle\proddb\9.2.0>echo %ORACLE_HOME%
    d:\oracle\proddb\9.2.0
    2. D:\> echo %ORACLE_SID% -> Should return 'PROD'
    Out Put :D:\>echo %ORACLE_SID%
    %ORACLE_SID%
    D:\>
    3. D:\> cd d:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu
    Out Put : D:\>cd d:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>
    D:\> addlnctl.cmd start PROD
    Out Put :D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | NOTES
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | HISTORY
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM +=========================
    ===============================================+
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM This file is automatically
    generated by AutoConfig. It will be read and overwritten.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM If you were instructed to
    edit this file, or if you are not able to use the settings
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM created by AutoConfig, ref
    er to Metalink document 165195.1 for assistance.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "You are running addlnctl.
    cmd"
    "You are running addlnctl.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>date /T
    Thu 02/08/2007
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>time /T
    1:49p
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "start" == "" GOTO usage
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "PROD" == "" GOTO usage
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set control_code=start
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set listener_name=PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF /I "start" == "start" GOTO c
    ontrol_ok
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORA_ENVFILE="d:\oracle\prod
    db\9.2.0\PROD_edu.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set DB_NAME=PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM setup the environment for
    Oracle
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>if exist "d:\oracle\proddb\9.2.
    0\PROD_edu.cmd" goto env_ok
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>call "d:\oracle\proddb\9.2.0\PR
    OD_edu.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM $Header: ad8idbnt.env 115.
    6 2003/05/19 20:27:58 rcchang ship $
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ==========================
    ================================================
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM NAME
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM PROD.env
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM DESCRIPTION
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM Setup environment for O
    racle 8i RDBMS HOME
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM NOTES
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM HISTORY
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM Created by AutoConfig
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ==========================
    ================================================
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM This file is automatically
    generated by AutoConfig. It will be read and overwritten.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM If you were instructed to
    edit this file, or if you are not able to use the settings
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM created by AutoConfig, ref
    er to Metalink document 165195.1 for assistance.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set TWO_TASK=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORA_NLS33=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set LOCAL=PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORACLE_SID=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORACLE_HOME=d:\oracle\prodd
    b\9.2.0
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "db920" == "db920" (
    set PATH=d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apa
    che\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:
    \oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\
    bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86
    ;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl
    \5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;C:\mksnt;C:\WINNT\system32;C:\WINNT;C
    :\WINNT\System32\Wbem
    set PERL5LIB=d:\oracle\proddb\9.2.0\Apache\perl\5.00503\lib;d:\oracle\proddb\9.
    2.0\Apache\perl\site\5.00503\lib
    ) ELSE (set PATH=d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\
    9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin
    32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apach
    e\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\o
    racle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;C:\mksn
    t;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem )
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set LD_LIBRARY_PATH=d:\oracle\p
    roddb\9.2.0\lib
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set TNS_ADMIN=d:\oracle\proddb\
    9.2.0\network\admin\PROD_edu
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set NLS_LANG=American_America.W
    E8ISO8859P1
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_numeric_characters = .,
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_date_format = DD-MON-RR
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_sort = binary
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_language = american
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_territory = america
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "The environment settings
    are as follows ..."
    "The environment settings are as follows ..."
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " ORACLE_HOME : d:\o
    racle\proddb\9.2.0"
    " ORACLE_HOME : d:\oracle\proddb\9.2.0"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " ORACLE_SID : "
    " ORACLE_SID : "
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " TWO_TASK : "
    " TWO_TASK : "
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " PATH : d:\o
    racle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00
    503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\prodd
    b\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1
    .4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\pr
    oddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\
    MSWin32-x86;D:\oracle_10g\bin;C:\mksnt;C:\WINNT\system32;C:\WINNT;C:\WINNT\Syste
    m32\Wbem"
    " PATH : d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\pro
    ddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sd
    k1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\
    proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bi
    n\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.
    0\Apache\perl\5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;C:\mksnt;C:\WINNT\system
    32;C:\WINNT;C:\WINNT\System32\Wbem"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " LD_LIBRARY_PATH : d:\o
    racle\proddb\9.2.0\lib"
    " LD_LIBRARY_PATH : d:\oracle\proddb\9.2.0\lib"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set logfile="d:\oracle\proddb\9
    .2.0\appsutil\log\PROD_edu\addlnctl.txt"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo
    ECHO is on.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "The log information will
    be written to"
    "The log information will be written to"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "\t"d:\oracle\proddb\9.2.0
    \appsutil\log\PROD_edu\addlnctl.txt""
    "\t"d:\oracle\proddb\9.2.0\appsutil\log\PROD_edu\addlnctl.txt""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo
    ECHO is on.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF /I "start" == "start" GOTO s
    tartdb
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "Starting listener process
    PROD ..."
    "Starting listener process PROD ..."
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM first try reload
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>lsnrctl reload PROD
    LSNRCTL for 32-bit Windows: Version 9.2.0.3.0 - Production on 08-FEB-2007 13:49:
    57
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCPROD))
    The command completed successfully
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM if reload fails, then try
    start
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>if 0 GTR 0 goto no_listener
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "Listener PROD has already
    been started."
    "Listener PROD has already been started."
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>goto end
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "addlnctl.cmd exiting with
    status 0"
    "addlnctl.cmd exiting with status 0"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>
    Last Step : D:\> addbctl.cmd start
    Out Put :
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM *=========================
    ===============================================+
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | Copyright (c) 2000 Oracl
    e Corporation, Redwood Shores, California, USA |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | Al
    l rights reserved |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | App
    lications Division |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM +=========================
    ===============================================+
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | FILENAME
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | addbctl.cmd
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | DESCRIPTION
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | Start / Stop database
    PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | USAGE
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | addbctl.sh <start | st
    op> {immediate | abort | normal}
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | PLATFORM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | NT Generic
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | NOTES
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM | HISTORY
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM |
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM +=========================
    ===============================================+
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM $Header: addbctl.cmd 115.1
    0 2003/03/27 07:27:29 swgopal ship $
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "You are running addbctl.c
    md"
    "You are running addbctl.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>date /T
    Thu 02/08/2007
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>time /T
    1:50p
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "start" == "" GOTO usage
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set shutdown_mode="normal"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set control_code=start
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF /I "start" == "start" GOTO c
    ontrol_ok
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORA_ENVFILE="d:\oracle\prod
    db\9.2.0\PROD_edu.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set DB_NAME=PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM setup the environment for
    Oracle
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>if exist "d:\oracle\proddb\9.2.
    0\PROD_edu.cmd" goto env_ok
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>call "d:\oracle\proddb\9.2.0\PR
    OD_edu.cmd"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM $Header: ad8idbnt.env 115.
    6 2003/05/19 20:27:58 rcchang ship $
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ==========================
    ================================================
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM NAME
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM PROD.env
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM DESCRIPTION
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM Setup environment for O
    racle 8i RDBMS HOME
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM NOTES
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM HISTORY
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM Created by AutoConfig
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ==========================
    ================================================
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM This file is automatically
    generated by AutoConfig. It will be read and overwritten.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM If you were instructed to
    edit this file, or if you are not able to use the settings
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM created by AutoConfig, ref
    er to Metalink document 165195.1 for assistance.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM ##########################
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set TWO_TASK=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORA_NLS33=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set LOCAL=PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORACLE_SID=
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set ORACLE_HOME=d:\oracle\prodd
    b\9.2.0
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "db920" == "db920" (
    set PATH=d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apa
    che\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:
    \oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\
    bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86
    ;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl
    \5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\
    proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;C:\mksnt;C:\W
    INNT\system32;C:\WINNT;C:\WINNT\System32\Wbem
    set PERL5LIB=d:\oracle\proddb\9.2.0\Apache\perl\5.00503\lib;d:\oracle\proddb\9.
    2.0\Apache\perl\site\5.00503\lib
    ) ELSE (set PATH=d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\
    9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin
    32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apach
    e\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\o
    racle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bi
    n;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;D
    :\oracle_10g\bin;C:\mksnt;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem )
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set LD_LIBRARY_PATH=d:\oracle\p
    roddb\9.2.0\lib
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set TNS_ADMIN=d:\oracle\proddb\
    9.2.0\network\admin\PROD_edu
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set NLS_LANG=American_America.W
    E8ISO8859P1
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_numeric_characters = .,
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_date_format = DD-MON-RR
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_sort = binary
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_language = american
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set nls_territory = america
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "The environment settings
    are as follows ..."
    "The environment settings are as follows ..."
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " ORACLE_HOME : d:\o
    racle\proddb\9.2.0"
    " ORACLE_HOME : d:\oracle\proddb\9.2.0"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " ORACLE_SID : "
    " ORACLE_SID : "
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " TWO_TASK : "
    " TWO_TASK : "
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " PATH : d:\o
    racle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00
    503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\prodd
    b\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1
    .4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\pr
    oddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\
    MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\
    Apache\perl\5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;C:\mksnt;C:\WINNT\system32
    ;C:\WINNT;C:\WINNT\System32\Wbem"
    " PATH : d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\pro
    ddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sd
    k1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\
    proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bi
    n\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\bin;d:\oracle\proddb\9.2.
    0\Apache\perl\5.00503\bin\MSWin32-x86;d:\oracle\proddb\9.2.0\bin;C:\j2sdk1.4.1\b
    in;d:\oracle\proddb\9.2.0\Apache\perl\5.00503\bin\MSWin32-x86;D:\oracle_10g\bin;
    C:\mksnt;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo " LD_LIBRARY_PATH : d:\o
    racle\proddb\9.2.0\lib"
    " LD_LIBRARY_PATH : d:\oracle\proddb\9.2.0\lib"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo ""
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>REM set priv_connect=internal/m
    anager@PROD
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set DB_VERSION="db920"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF "db920" == "db817" GOTO db81
    7
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>set priv_connect="/ as sysdba"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>GOTO connectstr_ok
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>IF /I "start" == "start" GOTO s
    tartdb
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo
    ECHO is on.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "Starting the database $DB
    _NAME ..."
    "Starting the database $DB_NAME ..."
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo
    ECHO is on.
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>sqlplus /nolog @d:\oracle\prodd
    b\9.2.0\appsutil\scripts\PROD_edu\adstrtdb.sql "/ as sysdba"
    SQL*Plus: Release 9.2.0.3.0 - Production on Thu Feb 8 13:50:56 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected.
    ORA-01081: cannot start already-running ORACLE - shut it down first
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.3.0 - Production
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>goto end
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>echo "addbctl.cmd exiting with
    status 0"
    "addbctl.cmd exiting with status 0"
    D:\oracle\proddb\9.2.0\appsutil\scripts\PROD_edu>
    Now Tell Me What w'll be the next Step : Applet still showing the same error.
    Thanks

  • Loading the username and password from database when login to xMII

    Hi
      can you explain briefly about how to configure the netweaver for loading username and password from database when the user login to xMII via netweaver platform?
    In xMII 11.5 we are configuring xMII itself? but in xMII 12.0 configuring by netweaver platform. if anyone know please explain step by step

    I am sending you some java code, which you can use in JSP.
    import java.sql.*;
    public class connectOracle{
    public static void main(String[] args) {
    System.out.println("Getting Column Names Example!");
    Connection con = null;
    String url = "jdbc:oracle:thin:@172.16.0.21:1521:orcl";
    String driver = "oracle.jdbc.driver.OracleDriver";
    String user = "scott";
    String pass = "tiger";
    try{
    Class.forName(driver);
    con = DriverManager.getConnection(url, user, pass);
    catch (SQLException s){
    System.out.println("SQL statement is not executed!");
    catch (Exception e){
    e.printStackTrace();
    }

  • OIM 11g R1 - Validating Password against Password Policy

    Hi,
    May I know how I can validate a password against a password policy specific to a particular resource object.Thanks.

    See this,
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/appinstance.htm#CHDEHJJJ
    For 11gR1, see this,
    http://docs.oracle.com/cd/E17904_01/doc.1111/e14308/oim_admin.htm
    After creating the policy, add this policy to the resource object by using the Password Policy Rule Tab.
    I hope this helps
    Edited by: Shashi kiran on Apr 19, 2013 3:36 PM

  • Password in database Sample Aplication 11g

    How to find password for database sanple aplication 11g. User name is admin or demo. I am instaling database XE 11g, but I am not start sapmle aplication .

    I am instaling database XE 11g. On the basis of a complete application : Sample Application. I can not find password for this application. On the login page says :  By default, two accounts are created in the Sample Application: demo and admin. The default password for both accounts is the all lowercase name of the workspace in which this application is located.

  • Connection without username, password or database name

    I'm trying to find an automated way (for a given dbms) to check whether a server name and port number correctly identifies that the given dbms is running at that location.
    For example, in MySQL, I can do something like:
    DriverManager.getConnection("jdbc:mysql://" + serverName + ":" + port + "/");
    So, I havent specified a username, password or database name. And this works (at least on my installation) by simply checking for an exception.
    My question is: Can I always rely on this for MySQL or does it depend on how the MySQL dbms is configured?
    What about MS SQL Server and Oracle?
    Any help, much appreciated.

    Your question was "Can I always rely on this for MySQ"No it wasn't. My question was:
    "Can I always rely on this for MySQL or does it depend on how the MySQL dbms is configured?"
    Its the bit between the "My question is: " and the question mark. I understand that if you chop the question in half then "no" is a valid answer but then thats not the same question.
    and the answer is[i] No! If your abilitydepends on the MySQL configuration then the answer to
    your question is still No because it means you
    can't always rely on it.
    Wrong again!
    If I was to ask "does it depend on how the MySQL dbms is configured?" then the answer is yes.
    I think "No, yes" is a better answer to the question. Although I think masijade answer is best.
    But anway, thanks for your constructive reply.

  • How to autenticate against database using OPS logon

    Hi,
    is there a possibility to authenticate a forms
    application against database using
    operating system (W2K - domain) logon directly,
    without any SSO (SSO and LDAP)?
    What are the requisites i need?
    Thanks in advance,
    Robert
    mailto: [email protected]

    Robert
    as far as I know, for Forms on the Web there isn't yet a way to do this. In the upcoming release Oracle 10G Forms (9.0.4) and Oracle Application Server 10G OID can be used to authenticate against Windows domains. This way you could use SSO for what you want. I am saying this carefully because I didn't tried it but took it from the OID specs.
    Frank

  • Sneak Preview ABAP - Password for Database Manager Operator Control

    Hello All , My first installation 'SAP NetWeaver 2004s Sneak Preview ABAP' was aborted where I did supply the password for Database Manager Operator Account : Control . When I am trying to reinstall , the installation fails and it comes back with a message
    ' The check of the control user password failed . Check logfile XCMDOUT.LOG '.
    I think I am supplying the correct password which I entered originally .
    Thanks
    Rajesh Kapoor

    hi there,
    the default password for control is control.
    According to about threethousandfivehundredandtwelve postings in here your problem might arise due to the usage of special characters in the password, e.g. a +(plus).
    What do the last few lines of your XCMDOUT.LOG read?
    regards,
    anton

  • Brand new OS X Mountain Lion starts in grey screen login window doesn't know me verify passwords all jacked up says to get external hard drive recovery so I have to spend more moneyon my brand new computer or can I fix and safe boot

    brand new OS X Mountain Lion  Bought in November 2012 starts in grey screen login window doesn't know me, went to utility dIsk ,verify passwords all jacked up, I Engaged repair passwords then press verified Macintosh HD it said Macintosh HD is OK but repair disk button was still lit up and wanted me to make a recovery disk external hard drive and such,please tell me I can fix in safe boot..

    The repair button is always clickable when you are on your Recovery partition, it's nothing to worry about.  Do this instead.
    Then start in single user mode (Command-S)
    Type fsck -fy to check your disk first (it wont let you start working on a disk until you have checked it)
    Then type mount -uw / (dont forget the slash) to mount your Macintosh HDD
    Then type passwd username with username being the username of your admin account
    It will make you type the new password twice afterwards. From then you can boot into OSX as normal and use that account to fix the rest of your passwords.

  • Could not initialize the Password Store Database Link value in Preference Store

    I have 9iAS release 2, insfrastructure and midtier installed on the same Windows 2000 box...
    I am trying to install and configure portal on remote machine (solaris) on RDBMS 9.0.1.4...
    - Portal installation was no problem
    - creating a new DAD was no problem
    Now, I am trying to configure portal with MIDTIER mode...It falls over on STEP 1 for INSTALL_ACTION:assocPortalToExistingSSO() module with following error message:
    "SQL> Could not initialize the Password Store Database Link value in Preference Store
    ERROR: User-Defined Exception"
    Database link is been created on my remote database by ptlasst.bat command...
    How do I see whether that DB LINK is working properly ?
    Any comment would be helpful...
    Jagdish

    I found the problem to the iTunes Music Store connectivity. When iTunes version 6 is installed, it places a configuration / preferences file in the following location:
    "C:\Documents and Settings\<user>\Application Data\Apple Computer\iTunes\iTunes.pref"
    This file contains several very large keys:
    Preferences:129= (41,826 characters in length)
    Music Store= (1,722 Characters in length)
    Somewhere in these keys is stored are references to userid's, connections or other TCP/IP / internet connectivity objects that are being used when iTunes is installed. By deleting this file, these old setting appear to be cleared out.
    In my case, one or more of the keys in this file appear to have been storing a property from my old dial-up ISP connection that was no longer valid for my new, Comcast cable modem connection.
    Once I deleted this file, and re-started iTunes, it was as if I had never run the software before. I bypassed the option for searching for and importing .mp4's from My Music, and Itunes opened correctly, with full access to the music store. My library and playlists were intact and all is well.
    Apple should re-write the protion of iTunes codes that stores anything pertaning to an internet connection that may change over time. Alternatively, iTunes should either A) Prompt for this information B) Enable user access to this parameter in a settings dialog C) Access this information dynamically at runtime.
    Paul

Maybe you are looking for

  • Run-Time Engine error

    I have created an automated test and had it running as an executable on a stand alone test computer. I updated my LabView software to 8.6.1. I just made some changes to the test and recompiled it. When I tried to run it on the stand alone computer it

  • My Pages documents disappeared from iCloud before my very eyes.

    Hello all, I was at home getting ready for a presentation by writing a document in Pages on my Mac. I saved it to iCloud, and just to be sure it was there, I got my iPad and pulled up the document there. All seemed well, so off I went to my destinati

  • Enhancements in me22n

    Hi,, I have changed  standard program using enhancement for me22n.. Requirement is : For all the users if there is no tick then the field appears editable and if there is a tick then it is disabled except few authorized users the fields appears edita

  • Deployment problems, random exceptions

    Hey, We are having some problems getting our application to deploy. First of all the context: We are running Weblobic 6.0sp2 on jdk1.3.1_01 on a Windows platform. We have an application consisting of 102 beans about 90 of those are Entity Beans, the

  • Restoring the DB with Online and incremental backup's

    Dear Experts, We are planning for a backup strategy on our Production system as below using BRTOOLS with RMAN - " Weekly Full Online Backup and Incremental backup on the remaining days' We need to test this before implementing it on Production system