Is it possilbe ro use a 9i Database with 11g 11.1.1.1 for plsql pursposes?

Hello,
I am helping someone out that is in the process of upgrating Forms developed in 6i to 11g Fusion, and their databases fom 9i to 11g. They need to show feasibility of the task first, and test the forms.
They have two new_ boxes already setup with 11.1.0.7 and 11.1.1.1 ... we've compiled some of the easier 6i forms and the plsql connections works as well.
We are trying a dads plsql connection from 11g to the old 9i database and cannot get it to connect. We get the old 503 error:
Service Temporarily Unavailable
Sorry!The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.
Now I know the docs say:
You can use the following database versions with Oracle Fusion Middleware 11g Release 1 (11.1.1):
Oracle Database 10g Release 2 (10.2.0.4)
Oracle Database 11g Release 1 (11.1.0.7)
But is it possible, possible_, to connect to the 9i from 11g, and if so, shed some light on the connection instrcutions?
Thanks a million
JD

Okay I've changed my environment to FB 4.7 and Air 3.4 SDK. The permission dialogue now works in iOS 6, however, in Android 4.1.1 it still remains suppressed. Has anyone been able to figure this out?

Similar Messages

  • Using older client 10201 with 11g database

    Hello,
    Are there any issues with using sqlplus client 10201 with 11g database with regard to performance? I would think using the 11g client with 11g database would be preferred but what would be the disadvantage in using sqlplus 10201 with 11g database?
    Also, what would be disadvantage if using sqlplus 11g with an older database 10201/10202? Thank you.

    I guess the most visible and the prominent issue of using an old version client with the more latest version db would be that the older version client won't be able to display/use some of the newest features. This sounds more like a usability issue than performance issue which you mentioned but that's what which came on top of the mind. Performance should not be affected as the client doesn' do much except to pull the data so if there would be any issues actualy , they would be with the server rather than the client.
    Just my 2 cents.
    HTH
    Aman....

  • Script to Create databases with params to support dir location for data or log files

    Script to Create databases with params to support dir location for data or log files

    DECLARE @Query VARCHAR(MAX)=''
    DECLARE @DbName VARCHAR(400) = '<DBNAME>'
    DECLARE @DbFilePath VARCHAR(400) = '<Valid DataFilePath>'
    DECLARE @DBLogFilePath VARCHAR(400)='<Valid LogFile Path>'
    SET @Query = @Query + 'CREATE DATABASE '+@DbName +' ON PRIMARY '
    SET @Query = @Query + '( NAME = '''+@DbName +''', FILENAME = '''+@DbFilePath+@DbName +'.mdf'' , SIZE = 3072KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) '
    SET @Query = @Query + ' LOG ON '
    SET @Query = @Query + '( NAME = '''+@DbName +'_log'', FILENAME = '''+@DblogFilePath+@DbName +'_log.ldf'' , SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)'
    print @query
    exec(@query)
    --Prashanth

  • How to use your own database with your users to authenticate in a Web app?

    Hello, everybody!
    I'm starting to write my first web application and I'm going to use JSF, JPA and EJB3 in this application. One of the first things that I have to do on it is the authentication part where I'll have a page with a user name and a password for the user to login. So, as I'm new to all this in Java (I've already implemented this on .NET in the past), I was studying the Java EE 5 Tutorial, especifically the section "Example: Using Form-Based Authentication with a JSP Page". But I saw that the users that the sample application uses come from the file realm on the Application Server. The users are created there and assigned a name, a password and a group. After the users are in the Application Server we can simply uses forms authentication declaratively in the deployment descriptor (web.xml).
    But the problem is that this doesn't work to me as I already have my own database with my users, so I want to use it instead of having to create the users on the Application Server.
    So, I'm asking you how to do that. Of course I'm not expecting that you place the code here to me as I know that such a thing could be complicated. Instead, I'm asking if you know about some tutorial, article, book or something that teaches how to do what I want. But I would like to see theses examples using JSF and/or EJB3 because these are the technologies that I'm using to develop. It's a pity that the Java EE 5 Tutorial doesn't have an example using a custom database as I know that this situation is very common in the majority of web sites.
    Thank you very much.
    Marcos

    From memory, it goes like this... You just create a
    raw jdbc connection on your user database using a
    special "login" DB user account, which has
    permissions only to an "authenticate" stored query,
    which accepts two arguments: username & password, and
    returns a boolean 0 or 1 rows found.When I implemented this in .NET's ASP.NET I had the same solution. I had an special user created in the database that I used to log in. When the real user entered his username and password I was already logged in and I had just to check his username and password agains the right table in my database.
    But that was only possible bacause when I connected to the database using my hidden user, I used the rights APIs in ASP.NET that coordinate the authentication process. This means that before login in, no one could access any resources (pages, atc...). So what I'm saying is that I can't manager this manually in Java. Java has to have some API or whatever to allow me to control the login process programmatically, while letting the Application Server control the access to the resources.

  • Can I use two different database with DBSystemLoginModule?

    Finally I can login with Database user id by DBSystemLoginModule on Embedded oc4j server.
    But I confused between [b]jazn-data.xml and system-jazn-data.xml.
    Which xml do I have to edit for jdbcUrl and jdbcDriver?
    Now I would like to use two different database(such as only sid is different).
    In this case I want to show specific database name as realm name.
    What should I do?
    When I use DBSystemLoginModule, I edit JdbcUrl in system-jazn-data.xml.
    So can I pass the parameter for sid programmatically?
    And also I tried to run my application with other database with DBSystemLoginModule on Embedded oc4j server.
    I changed few things(jdbcUrl at system-jazn-data.xml,jazn-data.xml in embedded-oc4j-server/config and database connection for BusinessComponents at Project Properties of Model/ViewController.
    But I got some error.
    Did I miss something?
    ----< my error messgae >------
    500 Internal Server Error
    JBO-30003: The application pool (customer.model.datamodel.CMAppModuleLocal) failed to checkout an application module due to the following exception:oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)     Message was edited by:
    Message was edited by:
    sdcsdc

    I think I understand now, you are modifing the custom login modules configuration within the system-jazn-data.xml file. This is a bit dangerous! Didn't you register the login module in your orion-application.xml? For example, this is the way I do it:
    <web-module id="customProv-web" path="customProv-web.war" />
    <persistence path="persistence" />
    <!--data-sources path="./data-sources.xml"/-->
    <security-role-mapping name="sr_developer">
    <group name="developers" />
    </security-role-mapping>
    <security-role-mapping name="sr_manager">
    <group name="managers" />
    </security-role-mapping>
    <jazn provider="XML">
    <property name="custom.loginmodule.provider" value="true"/>
    <property name="role.mapping.dynamic" value="true"/>
    <property name="role.compare.ignorecase" value="true"/>
    </jazn>
    <!-- Configuring a Login Module in an Application EAR file. -->
    <jazn-loginconfig>
    <application>
    <name>customProv</name>
    <login-modules>
    <login-module>
    <class>oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>data_source_name</name>
    <value>jdbc/OracleDS2</value>
    </option>
    <option>
    <name>roles_fk_column</name>
    <value>userName</value>
    </option>
    <option>
    <name>table</name>
    <value>userinfo</value>
    </option>
    <option>
    <name>groupMembershipTableName</name>
    <value>groupinfo</value>
    </option>
    <option>
    <name>groupMembershipGroupFieldName</name>
    <value>role</value>
    </option>
    <option>
    <name>usernameField</name>
    <value>userName</value>
    </option>
    <option>
    <name>user_pk_column</name>
    <value>username</value>
    </option>
    <option>
    <name>passwordField</name>
    <value>passWord</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    <log>
    <file path="application.log" />
    </log>
    <namespace-access>
    <read-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </read-access>
    <write-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </write-access>
    </namespace-access>
    </orion-application>

  • Using a MsAccess database with Dreamweaver CS4?

    Hi Everyone,
    I have a question concerning using a Microsoft Access Database with Dreamweaver.
    First, I was wondering if this was possible. Second, if it is, could someone give me instructions or a link on how to do this. I am pretty new to Dreamweaver, code, etc..., so simpler instructions on how to acheive this would be great.
    Here is some information...
    1) I am running Windows XP SP2
    2) I am using Microsoft Office 2003 (Acces included)
    3) I am using Dreamweaver CS4
    4) I have installed XAMMP (Apache,MySQL, FileZilla, and PHPmyAdmin, as far as I know)
    If anyone needs more information, I'll be hapy to share it as soon as possible.
    Any help is greatly appreciated,
    Musicman1994

    The choice of database really depends on which server-side technology you plan to use, and what you're actually planning to use it for.
    Access was designed to create databases for small office systems. Although I personally found it very confusing, a lot of people like it and say it's easy to use. However, its major drawback is that it creates very large files; and as soon as the website gets a reasonable amount of traffic, Access has a tendency to freeze or lock up. You can create your database in Access and then export it to another database system, such as Microsoft SQL Server or MySQL. But it's better to start with the database that you ultimately plan using.
    I certainly wouldn't recommend developing anything in ASP and then attempting to convert the website to PHP. Although all server-side programs share common features and structures, the code is completely different. So, take some time over choosing your technology first. If you have never developed in ASP, you should be aware that Microsoft stopped developing it about ten years ago. It's still popular and widely available, but ASP is likely to dwindle in usefulness as the years go by. Use PHP or ColdFusion, both of which are supported by Dreamweaver. The other main alternative is ASP.NET, but that's no longer supported by Dreamweaver.

  • How to use non-MySQL database with DW and PHP...???

    I need to connect to a data-source that is not MySQL from
    with my PHP scripts. The only option I get under the Databases tab
    in the Application panel is MySQL Connection. What about just
    standard ODBC connections? Will DW not handle those for me? Do I
    have to do all of that by hand??
    Any information would be greatly appreciated. Thanks!

    "Angell EYE" <[email protected]> wrote in
    message
    news:fc4eaj$fmn$[email protected]..
    >I need to connect to a data-source that is not MySQL from
    with my PHP
    >scripts.
    > The only option I get under the Databases tab in the
    Application panel is
    > MySQL
    > Connection. What about just standard ODBC connections?
    Will DW not
    > handle
    > those for me? Do I have to do all of that by hand??
    >
    > Any information would be greatly appreciated. Thanks!
    There once existed an opensource servermodel called phakt
    that used the
    ADODB database abstraction library,
    the company that created and supported it was bought by Adobe
    and
    subsequently the project was cancelled.
    A group of people (including me) started a community
    initiative@
    http://openphakt.sourceforge.net
    to continue distribution and development of
    phakt, but unfortunately I don't have access to Dreamweaver
    CS3 due to lack
    of funding.
    Phakt will almost certainly NOT run on CS3 in it's current
    state, but is
    should support previous versions.
    Joris

  • Using an external Database with Xoops CSM

    My site is built using Xoops 2.0 and MYsql. The xoops system
    that I am using is provided by my hosting comapany, therefore I do
    not have the information I need to create a new table. so I did the
    next best thing I created a table using the sql databases that came
    with the account. To make the pages transition smooth I have
    created a database driven page displaying events in the scripting
    language of PHP wrapping the page in the xoops header and footer.
    it seems to work well except that when I added the paging
    navigation it won't display can anyone help
    The url is
    View page
    here
    ===========================================Here is the
    code===========================================
    <?php require_once('../../Connections/SkateEvents.php');
    ?>
    <?php
    $currentPage = $_SERVER["PHP_SELF"];
    ?>
    <?php
    include("mainfile.php");
    include(XOOPS_ROOT_PATH."/header.php");
    ?>
    <?php
    $maxRows_allevents = 5;
    $pageNum_allevents = 0;
    if (isset($_GET['pageNum_allevents'])) {
    $pageNum_allevents = $_GET['pageNum_allevents'];
    $startRow_allevents = $pageNum_allevents *
    $maxRows_allevents;
    mysql_select_db($database_SkateEvents, $SkateEvents);
    $query_allevents = "SELECT * FROM events ORDER BY `Date`
    ASC";
    $query_limit_allevents = sprintf("%s LIMIT %d, %d",
    $query_allevents, $startRow_allevents, $maxRows_allevents);
    $allevents = mysql_query($query_limit_allevents,
    $SkateEvents) or die(mysql_error());
    $row_allevents = mysql_fetch_assoc($allevents);
    if (isset($_GET['totalRows_allevents'])) {
    $totalRows_allevents = $_GET['totalRows_allevents'];
    } else {
    $all_allevents = mysql_query($query_allevents);
    $totalRows_allevents = mysql_num_rows($all_allevents);
    $totalPages_allevents =
    ceil($totalRows_allevents/$maxRows_allevents)-1;
    $queryString_allevents = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
    $params = explode("&", $_SERVER['QUERY_STRING']);
    $newParams = array();
    foreach ($params as $param) {
    if (stristr($param, "pageNum_allevents") == false &&
    stristr($param, "totalRows_allevents") == false) {
    array_push($newParams, $param);
    if (count($newParams) != 0) {
    $queryString_allevents = "&" .
    htmlentities(implode("&", $newParams));
    $queryString_allevents =
    sprintf("&totalRows_allevents=%d%s", $totalRows_allevents,
    $queryString_allevents);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN" "
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Events Page</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #996600;
    a:link {
    color: #996666;
    a:visited {
    color: #996600;
    a:hover {
    color: #999900;
    a:active {
    color: #CCCCCC;
    h1,h2,h3,h4,h5,h6 {
    font-family: Times New Roman, Times, serif;
    -->
    </style></head>
    <body>
    <table width="750" border="1" align="center"
    cellpadding="3" cellspacing="5">
    <tr bordercolor="#996600">
    <td width="82"><div align="center">
    <h3>Date</h3>
    </div></td>
    <td width="136"><div align="center">
    <h3>Events</h3>
    </div></td>
    <td width="124"><div align="center">
    <h3>Host</h3>
    </div></td>
    <td width="177"><div align="center">
    <h3>More info</h3>
    </div></td>
    <td width="34"><div align="center">
    <h4>Host id</h4>
    </div></td>
    </tr>
    <?php do { ?>
    <tr>
    <td><?php echo $row_allevents['Date'];
    ?></td>
    <td><?php echo $row_allevents['Events'];
    ?></td>
    <td><?php echo $row_allevents['Host'];
    ?></td>
    <td><div align="center"><a target="_blank"
    href="
    http://sk8photos.com/xoops/html/images/flyers/<?php
    echo $row_allevents['More info']; ?>">Click
    Here</a></div></td>
    <td><?php echo $row_allevents['Host id'];
    ?></td>
    </tr>
    <?php } while ($row_allevents =
    mysql_fetch_assoc($allevents)); ?>
    </table>
    <p>
    </p>
    <table border="0" width="50%" align="center">
    <tr>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents > 0) { // Show if not first page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, 0, $queryString_allevents); ?>">First</a>
    <?php } // Show if not first page ?>
    </td>
    <td width="31%" align="center"><?php if
    ($pageNum_allevents > 0) { // Show if not first page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, max(0, $pageNum_allevents - 1),
    $queryString_allevents); ?>">Previous</a>
    <?php } // Show if not first page ?>
    </td>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents < $totalPages_allevents) { // Show if not
    last page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, min($totalPages_allevents, $pageNum_allevents + 1),
    $queryString_allevents); ?>">Next</a>
    <?php } // Show if not last page ?>
    </td>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents < $totalPages_allevents) { // Show if not
    last page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, $totalPages_allevents, $queryString_allevents);
    ?>">Last</a>
    <?php } // Show if not last page ?>
    </td>
    </tr>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($allevents);
    include(XOOPS_ROOT_PATH."/footer.php");
    ?>
    =============================================== End Code
    =========================================

    My site is built using Xoops 2.0 and MYsql. The xoops system
    that I am using is provided by my hosting comapany, therefore I do
    not have the information I need to create a new table. so I did the
    next best thing I created a table using the sql databases that came
    with the account. To make the pages transition smooth I have
    created a database driven page displaying events in the scripting
    language of PHP wrapping the page in the xoops header and footer.
    it seems to work well except that when I added the paging
    navigation it won't display can anyone help
    The url is
    View page
    here
    ===========================================Here is the
    code===========================================
    <?php require_once('../../Connections/SkateEvents.php');
    ?>
    <?php
    $currentPage = $_SERVER["PHP_SELF"];
    ?>
    <?php
    include("mainfile.php");
    include(XOOPS_ROOT_PATH."/header.php");
    ?>
    <?php
    $maxRows_allevents = 5;
    $pageNum_allevents = 0;
    if (isset($_GET['pageNum_allevents'])) {
    $pageNum_allevents = $_GET['pageNum_allevents'];
    $startRow_allevents = $pageNum_allevents *
    $maxRows_allevents;
    mysql_select_db($database_SkateEvents, $SkateEvents);
    $query_allevents = "SELECT * FROM events ORDER BY `Date`
    ASC";
    $query_limit_allevents = sprintf("%s LIMIT %d, %d",
    $query_allevents, $startRow_allevents, $maxRows_allevents);
    $allevents = mysql_query($query_limit_allevents,
    $SkateEvents) or die(mysql_error());
    $row_allevents = mysql_fetch_assoc($allevents);
    if (isset($_GET['totalRows_allevents'])) {
    $totalRows_allevents = $_GET['totalRows_allevents'];
    } else {
    $all_allevents = mysql_query($query_allevents);
    $totalRows_allevents = mysql_num_rows($all_allevents);
    $totalPages_allevents =
    ceil($totalRows_allevents/$maxRows_allevents)-1;
    $queryString_allevents = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
    $params = explode("&", $_SERVER['QUERY_STRING']);
    $newParams = array();
    foreach ($params as $param) {
    if (stristr($param, "pageNum_allevents") == false &&
    stristr($param, "totalRows_allevents") == false) {
    array_push($newParams, $param);
    if (count($newParams) != 0) {
    $queryString_allevents = "&" .
    htmlentities(implode("&", $newParams));
    $queryString_allevents =
    sprintf("&totalRows_allevents=%d%s", $totalRows_allevents,
    $queryString_allevents);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN" "
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Events Page</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #996600;
    a:link {
    color: #996666;
    a:visited {
    color: #996600;
    a:hover {
    color: #999900;
    a:active {
    color: #CCCCCC;
    h1,h2,h3,h4,h5,h6 {
    font-family: Times New Roman, Times, serif;
    -->
    </style></head>
    <body>
    <table width="750" border="1" align="center"
    cellpadding="3" cellspacing="5">
    <tr bordercolor="#996600">
    <td width="82"><div align="center">
    <h3>Date</h3>
    </div></td>
    <td width="136"><div align="center">
    <h3>Events</h3>
    </div></td>
    <td width="124"><div align="center">
    <h3>Host</h3>
    </div></td>
    <td width="177"><div align="center">
    <h3>More info</h3>
    </div></td>
    <td width="34"><div align="center">
    <h4>Host id</h4>
    </div></td>
    </tr>
    <?php do { ?>
    <tr>
    <td><?php echo $row_allevents['Date'];
    ?></td>
    <td><?php echo $row_allevents['Events'];
    ?></td>
    <td><?php echo $row_allevents['Host'];
    ?></td>
    <td><div align="center"><a target="_blank"
    href="
    http://sk8photos.com/xoops/html/images/flyers/<?php
    echo $row_allevents['More info']; ?>">Click
    Here</a></div></td>
    <td><?php echo $row_allevents['Host id'];
    ?></td>
    </tr>
    <?php } while ($row_allevents =
    mysql_fetch_assoc($allevents)); ?>
    </table>
    <p>
    </p>
    <table border="0" width="50%" align="center">
    <tr>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents > 0) { // Show if not first page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, 0, $queryString_allevents); ?>">First</a>
    <?php } // Show if not first page ?>
    </td>
    <td width="31%" align="center"><?php if
    ($pageNum_allevents > 0) { // Show if not first page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, max(0, $pageNum_allevents - 1),
    $queryString_allevents); ?>">Previous</a>
    <?php } // Show if not first page ?>
    </td>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents < $totalPages_allevents) { // Show if not
    last page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, min($totalPages_allevents, $pageNum_allevents + 1),
    $queryString_allevents); ?>">Next</a>
    <?php } // Show if not last page ?>
    </td>
    <td width="23%" align="center"><?php if
    ($pageNum_allevents < $totalPages_allevents) { // Show if not
    last page ?>
    <a href="<?php printf("%s?pageNum_allevents=%d%s",
    $currentPage, $totalPages_allevents, $queryString_allevents);
    ?>">Last</a>
    <?php } // Show if not last page ?>
    </td>
    </tr>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($allevents);
    include(XOOPS_ROOT_PATH."/footer.php");
    ?>
    =============================================== End Code
    =========================================

  • How to use the JE database with other data types than byte arrays?

    Hi! I searched the javadoc of Berkley DB JE, for a way to introduce entry (but I need also retrieve) data with other type than byte arrays, e.g. String, or anything else, as int may be, etc.
    Still, I didn't find any such way, because the main (only?!) method to entry data into an open database - according what I found in javadoc - is:
    "public OperationStatus put(Transaction txn, DatabaseEntry key, DatabaseEntry data) throws DatabaseException"
    and both this and the corresponding method for retrieves, are based on the same DatabaseEntry type, which allow only entry data on byte[] support.
    What if I need to use Strings or int, or even char? I must do a special conversion from these types, to byte[], to use the database?
    Thank you!

    On the doc page (this is also in the download package),
    http://download.oracle.com/docs/cd/E17277_02/html/index.html
    see:
    Getting Started Guide
    Java Collections Tutorial
    Direct Persistence Layer (DPL)
    All of these describe how to use data types other than byte arrays.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Using expdp in database with database vault gives error-39165

    Hi,
    Please help me with the below mentioned scenario.
    I have oracle database 10.2.0.2 and DATABASE VAULT installed on top
    of it.
    I am trying to export one table DM05 beleonging to DIP schema and
    dump it as expdip.dmp. I issue the following command for this.
    But it stops with the error mentioned below.
    expdp dip/oracle directory expdp_dir tables="DIP".\"DM05\" dumpfile=expdip.dmp
    ORA-39165: Schema DIP was not found.
    ORA-39166: Object DM05 was not found.
    ORA-31655: no data or metadata objects selected for job
    Job "DIP"."SYS_EXPORT_TABLE_01" completed with 3 error(s) at 07:02:28
    Thanks and Regards,
    Dipesh

    hi
    Oracle Error : ORA-39166: Object string was not found.
    Cause: If exporting or importing over the network, either the user specified an object name that was not found in the source database or else the user lacked the proper EXP_FULL_DATABASE or IMP_FULL_DATABASE role that would allow them to access the object another in another schema. For importing from files, the user specified an object name not found in the dump file set.
    Action: Retry the operation using the correct object name.
    Hope this helps
    CHeers

  • Tips to make AWR useful on a database with nil activity

    Experience Level : Beginner.
    I'm playing with AWR making heads or tales of it. I'm getting the feeling that is your database is VERY low activity the AWR can't tell you much?
    I just ran awrrpt.sql on our datbase, which has about 20 schemas, but each one might only get used for less than 100 queries per day and the report says at the top 0 minutes of DB time. Also most of the categories of report data say "No data exists for this section of the report.".. I can only assume this is due to my level of non-activity?
    I guess the good news is my DB is a long ways away from needing any level of tuning :). Are there any recommendations you have to collect data on such a low usage db, or shoudl I just wait until it starts getting some more serious hits? Tks.

    Two things about AWR usage:
    a) AWR requires extra-cost options: Diagnostic Pack and Tuning Pack (if you want the AWR advisors)
    b) Those extra cost options are only available for Enterprise Edition
    Everything is there in the Standard Edition, the packages, the tables, even the statistics gathered by AWR are already running after you install it, except that using any of it requires you to be licensed.
    Of course you should always refer to your friendly Oracle sales rep who is in a better position to explain the intricacies of licensing.
    Oh... one more question.. 842884.1 mentions "if you are licensed to use AWR" ... It was my understanding that AWR was included and licensed with all versions of Oracle 11g. Am I correct?

  • Two SharePoint server Farms using different configuration databases with same content DB's

    Hi everyone,
    I am having strange problem while cloning the environments for SharePoint 2007 farm. We cloned the WFE and DB servers with different names. When the configuration wizard has run pointing to the new DB server for complete the new FARM, The config is pointed
    to the new Database server but the content databases remains same as old. This makes the production and cloned sites pointed to the same content.
    How can this be possible to have a SharePoint farms with separate config DB's and same content DB's. Please advise and now the search service in the production is also broken.
    Thanks keshav,Share point Developer

    Hi,
    This is one reason  why you should always use SQL Aliases when configuring SharePoint 
    Stop the SharePoint Services, you can use Server Manager on the WFE
    From the command line
    Enter CLICONFG
    Highlight TCPIP, Click Enable
    Click on the Alias Tab, and Click Add
    Click the TCPIP Radio Button
    Enter the (Old Database Server Name) in the Server Alias Box
    Enter the (Cloned Database Server Name) Server Name in the Server Name Box
    Uncheck, Dynamically Assign
    Enter Port 1433, and Click OK. Make sure on your new SQL Server that you don't have an inbound rule blocking Port 1433.
    On the new Cloned Server WFE start the SharePoint Services
    Run IISReset
    On The WFE and the App Server. Start the SharePoint Services, you can use Server Manager
    I would normally test this by stopping the SQL Service on the Old Server and login to SharePoint on the Cloned Server...
    Cheers,
    -Ivan

  • Use an external HD with Airport Extreme to access it for data storage from computers  connected to the WiFi network?

    Can I connect My Passport HD into my Airport Extreme's USB port to access it from my computers (27" iMac 2012 now using Yosemite) on that Wifi network for data storage and retrieval purposes?

    Yes, if the AirPort base station's hardware supports 802.11n. The drive needs to be formatted as Mac OS Extended (Journaled), FAT16, or FAT32, and may need to be connected through an USB hub with its own power supply.
    (117777)

  • How can I use an iPhone 4S with a device which is made for an iphone5?

    I own an iPhone 4S and an iPod, I just purchased an alarm clock which has a sync adapter made for the new iphone 5 which has a different size sync. Is their anything I can buy that will allow the two devices to work together or do I need to return the alarm clock?

    Thank you so much for the quick answer, It really stinks that Apple switched from the 30pin to the lightning adaptor. I paid a lot of money for my iPad 2, iPod 4 th and iPhone 4 s. It's not like I can afford buying new devices every couple of years. Apple devices are more expensive than any other brand, thanks for nothing Apple.

  • How to use a Logical Database in Function Module.

    Hi Experts,
    I want to use a logical database in a Function Module to fetch data from a standard SAP table into a Internal table for certain filter conditions.
    How can I get get this done????
    I called LDB_PROCESS FM in my FM, but I could not figure out how to store the extract in my IT table since we cant use GET in FM.
    Please provide me a sample code if possible.
    Thanks in Advance,
    Alex.

    Hi,
    i had an example program like this ,in this i want to get the data using pnp logical database with 5 fields in an interface program.
    data: begin of it_final occurs 0,
            pernr like pa0002-pernr,
            vorna like pa0002-vorna,
            nachn like pa0002-nachn,
           usrid like pa0105-usrid,
           usrid_long like pa0105-usrid_long,
           end of it_final.
    get pernr.
      clear : p0000,p0002,p0105.
      rp-provide-from-last p0000 space p_date p_date.
      if p0000-stat2 = '3'.
        v_pernr = pnppernr-low.
      else.
        reject.
      endif.
    *---Get employee pernr, First name ,Last name into final table
      rp-provide-from-last p0002 space p_date p_date.
      if pnp-sw-found = '1'.
       it_final-pernr = p0002-pernr.
       it_final-vorna = p0002-vorna.
       it_final-nachn = p0002-nachn.
      else.
    *---Error message if not infotype 0002 maintained
      T_ERROR-PERNR   = pnppernr-low.
      CONCATENATE TEXT-EMI '0002'
      INTO T_ERROR-MESSAGE SEPARATED BY SPACE.
      APPEND T_ERROR.
      CLEAR T_ERROR.
      endif.
    **--Get SYSTEM USERNAME to final table
      rp-provide-from-last p0105 0001 p_date p_date.
      if pnp-sw-found = '1'.
        it_final-usrid = p0105-usrid.
      else.
    *---Error message if not SYSTEM USERNAME maintained
        T_ERROR-PERNR   = pnppernr-low.
        CONCATENATE TEXT-003 '0105'
        INTO T_ERROR-MESSAGE SEPARATED BY SPACE.
        APPEND T_ERROR.
        CLEAR T_ERROR.
      endif.
    **--Get Email ID to final table
      rp-provide-from-last p0105 0010 p_date p_date.
      if pnp-sw-found = '1'.
        it_final-usrid_long = p0105-usrid_long.
      else.
    *---Error message if not Email ID maintained
        T_ERROR-PERNR   = pnppernr-low.
        CONCATENATE TEXT-004 '0105'
        INTO T_ERROR-MESSAGE SEPARATED BY SPACE.
        APPEND T_ERROR.
        CLEAR T_ERROR.
      endif.
       append it_final.
        clear it_final.
    reward points if useful,
    venkat.

Maybe you are looking for