Oracle 8.1.7 Documentation

Why does the download stop at 99% and then display in Task Manager "not responding"?
Michael Eustace
[email protected]

All sql commands including those used for database administration are in the SQL Reference Guide (not SQL*Plus).
For other topics, it would depend on what it was you were looking for, the are different volumes on Administration, Reference (init parameters and data dictionary), Tuning, Backup, etc.
The site makes a couple of references to downloading, but don't worry about it, just follow the links and select HTML versions and you will eventurally get there. There is also a search engine available http://otn.oracle.com/pls/tahiti/tahiti.homepage that will allow you to search by topic.

Similar Messages

  • Oracle 9i Data Guard Documentation

    Hi,
    I am trying to get documentation on Oracle 9i Data Guard.
    When I am at this url: http://www.oracle.com/technology/deploy/availability/htdocs/DataGuardOverview.html
    I then activate the link on the right for "Oracle 9i Data Guard Documentation".
    However, the link moves me to "Oracle 9i list of books", instead of where I want to be.
    Can you please rectify this or send me the link to get this documentation.
    Thanks,
    Jason Metzker

    Hi
    The response I received in regards to the links to the Oracle 9i Data Guard Documentation page is that the link is correct.
    The Data Guard doc is part of the database documentation set which is why the Oracle 9i Data Guard Documentation links takes you to the list of books. The Data Guard Documentation is also listed in the list of books.
    Thanks & Regards,
    Chao

  • Where's the Oracle Forms Java API documentation for 11g?

    Hi,
    Can anyone point me in the direction of the Oracle Forms Java API documentation?
    The only thing I can find is this: http://www.oratransplant.nl/1012jdapiDoc/oracle/forms/jdapi/JdapiModule.html but this seems to be for 10.1.2 and it doesn’t correspond to the version I’m using (11.1.1.3).
    Help appreciated,
    Donal.

    i couldn't find the api either however if you implement the class you will simply get compiler errors explaining what you left out.

  • Oracle Grid Siebel Agent Documentation

    I am looking for any Oracle Grid Siebel Agent documentation. I recently implemeted the Siebel Agent within Oracle Grid 10.2.0.4 and am looking for any documentation around configuring the metrics that come with the Siebel Agent. It appears that it is scaled dwon from other monitoring solution software which I have used in the past however, I am still evaluating it so any solid documentation would be of great assistance. Again, I do not need the documentation around the base Oracle Grid DB monitoring but the Siebel Agent which is monitored from within the Oracle Grid tool.
    Thanks

    Siebel Pack specific information is contained in the Oracle Application Management Pack for Siebel Getting Started Guide. Look for it at
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/b32394/toc.htm
    Chung
    Application Management Blog<br><br>

  • Oracle 10 G DS Documentation

    Dear All,
    Please send me the link to download oracle 10g Forms & Reports Documentation.

    You can use this link
    http://www.oracle.com/technology/documentation/dev10g.html
    Regards,
    Alok Dubey

  • Oracle 8.1.7 documentation is where?

    Oracle 8.1.7
    Windows 2000 Server
    If a person wanted a system administrator's manual of Oracle 8.1.7, the person would go to http://otn.oracle.com/docs/products/oracle8i/content.html correct?
    Got there from
    1) http://otn.oracle.com/ and select Database in dropdown list
    2) clicking the Documentation link on the left
    3) clicking on "Oracle8i and Oracle8i Personal Edition" in the "Archived Products" section.
    4) looking in the sections, "Oracle8i Server 8.1.7 - User, Administrator, and Developer Guides" and "Oracle8i Server 8.1.7 - MS Windows"
    I do not see an appropriate a system administrator manual designed to describe things like how to do commands like "alter database" and drop a datafile or how to export and import or archive a database for safe keeping .... ?
    Does anyone? Thanks.

    All sql commands including those used for database administration are in the SQL Reference Guide (not SQL*Plus).
    For other topics, it would depend on what it was you were looking for, the are different volumes on Administration, Reference (init parameters and data dictionary), Tuning, Backup, etc.
    The site makes a couple of references to downloading, but don't worry about it, just follow the links and select HTML versions and you will eventurally get there. There is also a search engine available http://otn.oracle.com/pls/tahiti/tahiti.homepage that will allow you to search by topic.

  • Oracle length semantics migration documention

    Due to the oracle documention to migrate length semantics:
    To convert an existing schema and its associated data from byte semantics and a single-byte character set to character semantics and a multibyte character set, such as UTF-8, you need only follow these steps: [The following steps have been corrected since the magazine was printed.]
    1. Export the schema.
    2. Issue an ALTER SYSTEM SET NLS_LENGTH_SEMANTICS=CHAR SCOPE=BOTH command on the target database.
    3. Stop and restart the instance so that the parameter change takes effect.
    4. Drop the original schema.
    5. Recreate the original schema and its tables (you can use import's show=Y option to get the CREATE TABLE statements). Columns in the recreated tables will use character semantics, because that's now the default.
    6. Import the schema into the target database using the IGNORE=Y import option.
    What is the meaning of the terms target and original?
    Suppose there is a (source) database with length semantics byte. If a (target) database
    is to be created as a clone of the (source) database, except for the length semantic char, does one have to migrate the (source) database first?
    Or rather, why is it not possible to
    1. Export the data from the source database with length semantic byte,
    2. Create a target database with length semantics char,
    3. Import the data from the source database?)

    This documentation is, unfortunately, poorly written.
    If you want to migrate data from one database to another, with both databases having different character sets, you can avoid some data expansion issues, if you migrate to character set semantics at the same time.
    You cannot just export data, and import it into a character semantics database, because export/import preserves original semantics of the exported tables.
    Note: there is actually no such thing as a character semantics database. Character semantics is a column/variable property. The "character semantics database" is a confusing, though commonly used, term that actually means an instance which has NLS_LENGTH_SEMANTICS set to CHAR in its initialization file. The only significant meaning of this parameter is to be the default for session-level NLS_LENGTH_SEMANTICS. It is used for sessions that do not set this parameter explictly (through environment variable or ALTER SESSION). The session-level parameter is significant for CREATE TABLE/PROCEDURE/FUNCTION/PACKAGE [BODY] statements and tells the default for column and variable declarations that do not specify BYTE or CHAR explicitly.
    To migrate semantics of an original schema you need to create a script that will contain all CREATE statements needed to recreate this schema (at least CREATE {TYPE | TABLE | MATERIALIZED VIEW | PROCEDURE | FUNCTION | PACKAGE [BODY]}). Then, you can just add the ALTER SESSION SET NLS_LENGTH_SEMANTICS=CHAR after any CONNECT command in this script. You can than run the script in the target database. How you create the script is irrelevant. You can use any reverse-engineering tool available (e.g. SHOW=Y option of import, DBMS_METADATA package, etc.)
    After you pre-create the schema with the new semantics, you can import the data from the original (source) database with IGNORE=Y. The original semantics saved in the export file will be ignored for pre-created objects.
    Note: PL/SQL may need manual corrections to migrate to character semantics. For example, SUBSTRB used to trim values before assignment may need to be replaced with SUBSTR.
    -- Sergiusz

  • Oracle Flexcube installation and documentation?

    Hi all,
    I am looking for documentation and software requirements to setup Oracle Flexcube. The only documentation I can find so far is the brochure from Oracle:
    http://www.oracle.com/us/industries/financial-services/046907.html
    I understand that Flexcube was a product developed by Bangalore India team years ago and then acquired by Oracle. However, I cannot find the installation and configuration documentation for Oracle Flexcube and I also cannot find where to download the Oracle Flexcube software either.

    Contact details are available in the same link -- http://www.oracle.com/us/industries/financial-services/046907.html
    Please also see:
    http://www.oracle.com/partners/en/products/applications/flexcube/get-started/index.html
    How to Contact FLEXCUBE (FCUBS) and Daybreak Support (Doc ID 1105772.1)
    Thanks,
    Hussein

  • I'm a new Oracle Developer, need a Documentation

    Hi all,
    Can you send me a link with a documentation about Oracle Database (Basics concepts, Stored Procedure and Triggers).
    I'm a dba Sql Server but a want to migrate.
    Tks,
    Mura

    http://www.oracle.com/technology/documentation/index.html

  • Oracle Communicator Administration parameter documentation

    i found documentation for the oracle communicator in the document
    Oracle® Communication and Mobility Server Administrator's Guide
    Release 10.1.3, chapter 11.
    But not all parameters are described.
    Is there any additional documentation for the client ?
    e.g
    how can the client be configured to define only specific audio or video codecs

    Hi,
    Please check out the available documents from the following link for bpel and owsm administration .
    http://download-uk.oracle.com/docs/cd/B31017_01/nav/docindex.htm
    This is the best option we can say for SOA administration.
    Regards
    Murali

  • Download Oracle Forms 4.5 documentation

    hi,
    I want to download Oracle forms 4.5 complete documents. Can any one help me where i can look for that.
    Thanks.
    Alka

    Hi,
    I am sorry, I am writing to you but not in regards to your problem. Rather, I need a favor, can you pls upload a set of files to install forms 4.5 and reports 2.5 on some webserver and give me a link?
    Alternatively, if you know of a link, pls let me know.
    I have an old development, I need to make some changes in that and it has become a must for me, because with conversion to forms 6.0 I am getting errors.
    Thanks
    Ash

  • Oracle.ewt and fndewt documentation

    I doing some work on a response time profiling package in java, and need to know the class names of the visual components used by Oracle 11i, particularily the window-like components representing Forms within the browser window.
    From the 11i install doco, it looks like these are in fndewt.jar, can anyone help with identifying the classes and public/protected methods?

    Thanks Leif for bringing this up. I given my feedback and hope that entire SOA community will help you to help us in better way.
    Thanks,
    Anuj

  • Looking for Oracle (Unbreakable) Enterprise Lunux documentation...anyone?

    Can't believe I'm the first to ask this AFAIK??

    Rec'd a response. Thanks to Ice:
    The answer is that the "redhat-config-*" are "system-config-*".
    See:
    Where is the Enterprise Linux Documentation?

  • Oracle Forms code review documentation tool?

    To achieve an SEI Level-3 certification, one must do code reviews. Is there a tool for creating a document containing 'all the code' in an Oracle*Form v6.0?
    We are basically looking for the equivalent of the old FORMDOC feature of Forms 4.0; it listed all the attributes of the blocks, items, record groups, triggers, pl/sql program units... everything!

    Thanks... I looked at that and didn't think it was all in there, but I looked again after I got your reply and it appears to be what we are looking for (at least a starting point).

  • Unable to download documentation of Oracle 8i or 9i

    Hi,
    I'm unable to download Oracle 8i or 9i documentation at all. It gives some registration error.
    Kindly help.
    Many thanks
    regards
    Pramila

    Did you source the env file first?
    Does this happen at the database tier or the application tier?
    Were the env files generated successfully? Any errors when you run AutoConfig?
    Did you verify the value of these environment variables in the env files as well as the context file?

Maybe you are looking for