Problems of storing contents of password in database

Hi Friends
I make the source code of simple directory that stores name,phno,EmailID,password,
I make all the controls such as labels,textfields,etc.
i use the controls passwordfield for getting the password.
for that passwordfield class i use the code as
passwordfield.getPassword();
passwordfield.setEchoChar('*');
How i should saved in the databse though i write the different password.
it can store certain Garbage chracters.
So,please this answer is necessary for me i implement the databse useing Access2003

How i should saved in the databse though i write the different password.
it can store certain Garbage chracters.Try BASE64

Similar Messages

  • Problem in storing  as Blob in Oracle Database from java Program

    Hi All,
    Am trying to store an image of size 80000bytes into Oracle database using setBytes() anndsetBinaryStream() method but I'm unable to store in database.can u please tell me what are the various methods to store the Blob data into the database?
    the ways i'm trying to store in Database :
    1) cstmt.setBinaryStream(2, new ByteArrayInputStream(ltImageArr
    .get(i)), ltImageArr.get(i).length);
    2) cstmt.setBytes(2, ltImageArr.get(i)) ;
    waiting for reply
    please help me out

    hi !
    it seems to be a bug under Oracle 10.2, for which i used this workaround :
    PreparedStatement pstmt =
    con.prepareStatement("INSERT INTO blobtable VALUES (?)");
    Blob blob = BLOB.createTemporary(con, true, BLOB.DURATION_SESSION);
    OutputStream out = blob.setBinaryStream(0);
    out.write(byteValues);
    pstmt.setBlob(1, blob);
    i hope it will help you
    bye !

  • How do I clear stored usernames and passwords for my podcasts?

    We currently operate a password-protected RSS feed for the subscription portion of our website. For the most part it works flawlessly; people can subscribe to the feed and receive daily updates to their iTunes. If their account is canceled or goes on hold for non-payment then our database deactivates their username, which halts access to the feed.
    That all works well. The problem is that if they re-subscribe to the subscription portion of our website they receive a new username and password. Then, when they go to re-subscribe to our password-protected podcast they are not prompted in iTunes for their new username or password. iTunes simply uses the old username/password combo from their canceled account, which makes the podcast fail to update.
    So essentially, I'm asking how we can manually clear iTunes' stored usernames and passwords for podcasts. Thanks!

    Figured it out. Just gotta delete keychain.plist, which is found in one of the following two spots:
    C:\Users\YOURUSERNAME\AppData\Roaming\Apple Computer\Preferences\keychain.plist
    C:\Documents and Settings\YOURUSERNAME\AppData\Apple Computer\Preferences\keychain.plist

  • Dynamic parameter selection from infoview not storing the sql password

    We are having the problem of dynamic parameter selection from infoview not storing the sql password as it does for the actual report. We are using Crystal Reports XI Release 2 version 11.5.3.438 (Not sure of SP level, asked in separate thread).
    To be more specific.
    We have created a report that dynamically populates the parameters of the report by pulling the records from the Informix sql database and allowing selection from there.
    In the Central Management Console for the report object we have set as follows:
    Process - Database:
    Use original database logon information from the report - the sql username and pw etc
    Use same database logon as when report is run
    Process - Parameters
    In selecting a default selection there is the option to put in the sql password, however, this does not stick and clears after update.
    As such the end result is that every time this report is run from infoview and a user chooses a parameter (there are 5), crystal goes through some timeout for about a minute or so and then requests the sql password, if a user then selects the next parameter, the same timeout and password dialog appears.
    We need the crystal report to handle to the sql password for fetching the parameters as well as for the database section of running the report, however, the parameters insists on the end user always putting the password in.
    This is 100% replicatable on our system.
    Any way that we can fix this?
    Will an update fix this issue? If so could you please advise which one?
    Thanks

    Hi,
    I am having the exact same problem. Any help?
    And what does "Use same database logon as when report is run" mean? For me that would be that no prompt is needed for getting values in a dynamic parameter...
    Regards
    Magnus

  • We are getting ¿ stored into our Oracle 10g database  (Microsoft fault)

    We are getting ¿ stored into our Oracle 10g database that is using WE8ISO8859P1 character set.
    Problem is caused by the following:
    Microsoft released software (in particularly MS Word) before considering any ANSI or ISO standard (although they claimed so).
    At that time of pioneering graphical interface - they were the standard. Since then things changed. Microsoft initially targeted US marked, however very soon they wanted to expanded to Europe. For that they needed to get standardized character set instead of one initially being in use. Microsoft re-mapped character set in newer applications using Windows-1252 character set which is compatible with ISO-8851-1 (we are using in our Java Web applications). That cleared obstacles to forward on European market, where extended characters are necessary (like in French, Dutch, German languages...)
    What happened with the initial character codes before Microsoft agreed with ISO to standardize characters? Well - Nothing.
    So what are the consequences of that?
    If we are using Microsoft Word document in conjunction with one of the oldest character set (universe) the ice-age character mapping is still there. So when we "cut and paste" the content to another application, characters sets are not mapped anymore. Especially French language "is sensitive to this" The Microsoft character set in Word decimally coded 146 ( ' ) is very often used in French.
    Therefore if the text is generated in MS Word using old character mapping (universe) which we do, and using method of "cutting and paste" we are mismatching character set interpreted by other, newer applications.
    Initially in the MS words (apostrophe) ' had code 191; then later after implementing Windows 1252 character set being moved to code 146 in accordance to ISO. Well ISO threat character coded 191 as ¿. So if you are using MS Word universe character set, ' looks like ' but in newer applications or ISO compatible applications it looks like ¿.
    Can anyone provide me with periodically cleanup routines that replace garbled characters entered by Microsoft applications into Oracle database ?
    Thanks
    Brendon

    A simply update should work.
    SQL> CREATE TABLE CHARTESTING(COLUMN1 VARCHAR2(30));
    Table created.
    Elapsed: 00:00:00.01
    SQL>
    SQL> INSERT INTO CHARTESTING (COLUMN1) VALUES (CHR(191)||CHR(146)||DBMS_RANDOM.STRING('A',5));
    1 row created.
    Elapsed: 00:00:00.01
    SQL> COMMIT;
    Commit complete.
    Elapsed: 00:00:00.00
    SQL> SELECT * FROM CHARTESTING;
    COLUMN1
    ┐ÆTeoqw
    Elapsed: 00:00:00.06
    SQL> UPDATE CHARTESTING SET COLUMN1=REPLACE(COLUMN1,CHR(191),'*');
    1 row updated.
    Elapsed: 00:00:00.00
    SQL> SELECT * FROM CHARTESTING;
    COLUMN1
    *ÆTeoqw
    Elapsed: 00:00:00.00
    SQL>After numerous attempts you will have to trust me that the characters are correct, my sqlplus isn't working for displaying the characters.

  • Problems while uploading text documents into Unicode Database

    I just upgraded our database from 9iR1 to 9iR2 (9.2.0.1.0). The server
    character set is AL32UTF8. Now I'm facing a problem when
    uploading text documents into the database via a web frontend.
    I use the upload table defined for the PL/SQL Database Access Descriptor:
    create table TB_UPLOAD (
    NAME VARCHAR2(256) not null,
    MIME_TYPE VARCHAR2(128),
    DOC_SIZE NUMBER,
    DAD_CHARSET VARCHAR2(128),
    LAST_UPDATED DATE,
    CONTENT_TYPE VARCHAR2(128),
    BLOB_CONTENT BLOB);
    After uploading a text document containing the two words "hallo welt",
    the following statement returns not "hallo welt", but "68616C6C6F2077656C74":
    declare
    b_loc blob;
    v_amount integer := 100;
    v_buffer varchar2(100);
    v_offset integer := 1;
    begin
    select blob_content into b_loc from tb_upload where name like 'mydoc.txt';
    dbms_lob.read(b_loc, v_amount, v_offset, v_buffer);
    htp.prn(v_buffer);
    end;
    What is this? I studied the documentation, but didn't found a solution.
    When trying to use Oracle's built-in procedure wpg_docload.download_file,
    the content is shown the way it should be. Unfortunately, I can't use
    wpg_docload.download_file in order to copy the BLOB content to another table.
    Any hints would be appreciated!
    Thanks so much in advance!
    Roman
    E-Mail: [email protected]

    Hi Roman,
    the upload uses a BLOB (Binary Lob). Your Document is
    stored as is in the binary representation. If you
    use dbms_lob.read on a blob and your buffer is a varchar2 the binary representation is not translated!!!
    use a raw for the buffer and utl_raw.cast_to_varchar2
    to do the conversion to varchar.
    try this
    Procedure SHOW_DOC(p_name doc_test.name%TYPE)
    IS
    v_len number;
    v_mime_type tb_upload.mime_type%TYPE;
    v_offset integer := 1;
    v_Buf_size integer := 32767;
    v_buf raw(32767);
    v_blob blob;
    v_Doc_name varchar2(1000);
    BEGIN
    v_doc_name := url_Decode(p_name);
    select mime_type,doc_size,blob_content
    into v_mime_Type,v_len,v_blob
    from tb_upload
    where name = v_doc_name;
    OWA_UTIL.MIME_HEADER(v_Mime_Type);
    begin
    LOOP
    DBMS_LOB.READ(v_blob,v_buf_size,v_offset,v_buf);
    HTP.PRN(UTL_RAW.CAST_TO_VARCHAR2(v_buf));
    v_offset := v_offset + v_buf_size;
    END LOOP;
    exception
    when no_data_found then
    null;
    end;
    END;
    HTH
    detlev

  • 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

  • Sync/Copy Password Safe database from PC

    I have Password Safe on my iPhone and on my PC. I would like to synchronise or copy the PW Safe database from my PC to my iPhone. Is this possible?
    ps. I don't want this Password Database to be stored anywhere online. Sites as Dropbox and alike have turned out to often that they can offer the needed security.
    Regards,
    Rob,

    I found the solution to my problem.
    With the application DiskAid (http://www.digidna.net/products/diskaid) I can get directly access to my iPhone. This way I can copy the Password Safe database from my PC to the iPhone. And yes, Password Safe for iPhone is 100% compatible with the PC/MAC versions .
    I am happy

  • Problem with storing and retriving a different langauge font in mysql

    hi,
    i have problem with storing and retriving a different character set in
    mysql database ( for example storing kannada font text in database)
    it simply store what ever typed in JTextField in database in the
    formate ??????????? and it showing ???????? .
    please what can i do this problem.
    thanks
    daya

    MySQL does not know about what type of Font you use or store. that is applicatioon specific. All it knows is the character set that you are storing and the data type and data. THere are something you should know when working with database and Java:
    1. make sure you know what character set is used for the database table.
    2. make sure you know what character set is used by Java (default to UTF-8 ..
    sort off - there are few character that it cannot save). You can enforce the
    character set being sent to the database by the String's getBytes(String charsetName) method.
    3. make sure the application you use to view the table use the correct character set
    if it use a different character set, then any character that it does not recogized
    will be replaced with a quetion mark '?'....eventhough the data is correct.

  • The file .docx cannot be opened because there are problems with the contents in sharepoint document library

    I created a site and  created a document libarary and assigned a word document as a content type . I have written a workflow to create a new document . The workflow is working fine and all the document is getting created and values are getting stored
    in it .
    As per my requirement I am saving the above site as site template .
    After that I am creating a new site based on the above site template , Its getting created and I started the workflow , its working fine and the document is also getting created .
    The problem is I am getting error while opening the word document
    Error - The file filename.docx cannot be opened because there are problems with the contents .
    Details - No error details availble .
    Indresh

    What are you doing within the txt document?  Is it general text and string based items, or have you something more elaborate going on?
    An older discussion here elaborates a bit more on the dotx vs docx side of things.
    http://social.msdn.microsoft.com/Forums/en-US/de1b5ff9-ea6d-460c-a707-8c28acd4906f/error-opening-office-open-xml-file-when-using-sd-workflow-to-create-item-in-document-library?forum=sharepointcustomizationlegacy
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Problem in using XSQL-session and connecting database

    Hello
    Let me explain clearly. We have some data entry screens for which we want to use session with time out option. Normally in Servlet, we use to create a session with max age option. Then everytime the browser call the servlet we use to check for session.isnew(). If it is new session then we will forward the page to Relogin (because session is timed out) or we proced with further action.
    In XSQLServlet, how will do this. Do I have to create my own servlet extended from XSQLServlet ? Override the Service method and write about the session part and call
    super(). Here only I am getting confused. In servlet mapping we have given for every .XSQL call run the XSQLServlet. How will I override this ?
    And also we have problem with user id and password. We don't want to use the same id (system id as defined in XSQLConfig.xml) for every database connection. We want to define only the connection information like SID, Server, Port number. But user id and password should be dynamic. How can I achieve this ?
    Please help us on solving these problem. Thanks.
    Lakshmi
    null

    You'll need to implement your own classes that implement the:
    oracle.xml.xsql.XSQLConnectionManagerFactory
    and
    oracle.xml.xsql.XSQLConnectionManager
    to change the way XSQL handles connections. Using this mechanism, you should be able to implement any alternative connection scheme you choose.
    If you run into problems implementing these interfaces, give us a shout here in the forum.

  • 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

  • Problem calling Stored Procedure returning SETOF UDT (Using Spring)

    I am using Spring's StoredProcedure class to call a stored procedure from a PostgreSql database. It returns a set of user defined data types. I'm having a problem in parsing the results returned.
    The user defined data type :
    CREATE TYPE process_states AS (
    process_name text,
    process_type text
    The stored procedure returns a SET of "process_state" :
    CREATE FUNTION inquire_process_state (.....)
    RETURNS SETOF process_state AS '
    SELECT ....
    I hava a Java class extending the Spring StoredProcedure classs.
    public MyProcStats extends StoredProcedure {
    private class ProcStateCallBackHandler implements RowCallBackHandler {
    public void processRow(ResultSet rs) throws SQLException {
    System.out.println(rs.getString(1));
    public MyProcStats (DataSource ds) {
    super(ds, "inquire_process_state");
    super.setFunction(true);
    declareParameter(new SqlOutparameter("rs", Types.OTHER, new ProcStateCallBackHandler());
    declareParameter(new SqlParameter("family_name", Types.VARCHAR) ;
    While testing this class, I get an errormessage
    "java.sql.SQLException:ERROR: cannot display a value of type record"
    I would appreciate if anyone can point out my mistakes. I tried declaring
    new SqlOutParameter("rs", Types.OTHER, "process_state"), but that didn't help.

    As the related posts suggest, you will need to use direct JDBC code for this.
    Also I'm not sure JDBC supports the RECORD type, so you may need to wrap your stored functions with ones that either flatten the record out, or take OBJECT types.

  • Opening pdfs from Connect Stored Content flashes content and disappears???

    I've checked the existing threads and don't see this exact problem, so here goes - I hope someone can help! 
    I am using Adobe Connect and have pdfs stored on the server in my hosted account.  When I use Firefox, and I click on the link to bring up the pdf, a new window opens, the file loads and displays for a fraction of a second and then the window goes white.  If I hit refresh, the file flashes again and disappears.  It works OK in IE, but I seem to have this problem with all the pdfs in the Connect environment using Firefox.  I can view other pdfs in Firefox, just not these ones. It happens whether I am in the admin section and click a link from the stored content area, or copy/paste the url into the browser and try to access it that way.
    I'm using a PC, Windows 7, 64 bit, Firefox 10.0.2, and have installed all the updates for Connect.  Help?!
    Cheers, Kit.

    It sounds like you have an issue with using more than one Apple ID.  Only one Apple ID owns the purchased content.  If a different Apple ID tries to access it, issues result.

  • Storing an array into the database using jdbc

    Hi,
    i�ve got a problem storing an array into a database. I want to store objects consisting of several attributes. One of these attributes is an array containing several int values. I don�t know exactly what is the best way to store these objects into a database. I have created two tables connected by a one to many relationship of which one stores the array values and the other table stores the object containing the array. Is that ok or should I use another way. It�s the first time I�m trying to store objects containing arrays into a database so I�m very uncertain in which way this should be done.
    Thanks in advance for any tips

    1. You should use blob or longvarbianry type colum to stor that array.
    2. All object in that array should be Serializable.
    3. Constuct a PreparedStatement object
    4. Convert array to byte[] object
    ByteArrayOutputStream baos=null;
    ObjectOutputStream objectOutputStream=null;
    baos = new ByteArrayOutputStream(bufferSize);
    objectOutputStream = new ObjectOutputStream(baos);
    objectOutputStream.writeObject(array);
    objectOutputStream.flush();
    baos.flush();
    byte[] value=baos.toByteArray();
    5. Now you can use PreparedStatement.setBytes function to insert byte[] value.

Maybe you are looking for