How to point the portal to the pointbase database Oracle database.

Hi all

Default gateway pointing to the pointbase database. I am point Portal database Oracle.
Can anyone provide steps for 1) how to point the portal to the Oracle database?
(2) what are the sources of data that I need to change?
(3) what database scripts can I run?
(4) after you create the database in oracle tables, I should have some initial data on the table?

Thank you
Florian

You always use Pointbase

java.sql.SQLException: invalid table 'USERS' specified in the 23 post name.
at com.pointbase.net.netJDBCPrimitives.handleResponse (DashoA13 *..: 335)
at com.pointbase.net.netJDBCPrimitives.handleJDBCObjectResponse(DashoA13*..: 383)
at com.pointbase.net.netJDBCConnection.prepareStatement(DashoA13*..: 545)

You need to check p13nDataSource (and all other data sources and change of oracle)

concerning
Deepak

Tags: Fusion Middleware

Similar Questions

  • How to delete the old database?

    Hello

    I work with a SQLite database. However, I am getting intermittent behaviour of my app in the Simulator. I suspect it's because while developing, I have to go hard the Simulator and leave the database in an unknown state.

    How clear/clear the old database I know I start the application of a known state? I tried to use clean.bat, but I have not had success with it yet.

    Thank you

    My apologies - shnuffy had right the first time. I have now found the directory where the database is stored. As shnuffy says: device/Blackberry/system/appdata/rim/webstorage /...

  • How to apply the theme of Oracle Alta UI in ADF

    Hi all

    I use Jdeveloper 11.1.1.1.7.2 release1.

    Can anyone provide your inputs on how to apply the theme of Oracle Alta UI in the ADF.

    For any consultation on Alta IU @ http://www.oracle.com/webfolder/ux/middleware/alta/start-develop.html

    Thank you and best regards,

    Miko Auntie.

    http://www.Oracle.com/WebFolder/UX/middleware/Alta/start-develop.html

    http://www.Oracle.com/WebFolder/UX/middleware/Alta/patterns/PageDesign.html

    http://www.Oracle.com/WebFolder/UX/middleware/Alta/new-dev-w-Alta-skin.html

    Oracle ADF: Customized design

  • How dynamically update the role of oracle using the trigger

    How dynamically update the role of oracle using the trigger:

    I have svmanger owner of schema in the database. There are five tables belonged to svmanager.

    Table A, B, C, D, E.

    I have a role that is played only to these tables under the scheme: SVMANAGER_READ_ONLY

    now, if I create a new table F under svmanager. the role that svmanager_read_only does not work is updated, so the user had assigned role cannot access table F.

    is there a way to create the trigger for this role dynamically update any when a table is created or deleted?

    Thank you.

    I really really really don't suggest to do this - it's a bad habit. If possible I'd just adding the grant as part of the steps to the role on the new creation of the table.
    But for fun here's how you can accomplish this:

    create or replace procedure execute_grant(v_ddl in varchar2)
    is
    begin
       execute immediate v_ddl;
    end;
    /
    
    create or replace trigger catch_create_table_trg after create on schema
    DECLARE
    
    ddl_job number;
    ddl_str varchar2(50);
    begin
       IF ora_dict_obj_type = 'TABLE' THEN
    
           ddl_str := 'GRANT SELECT ON '||ora_dict_obj_owner||'.'||ora_dict_obj_name||' TO SVMANAGER_READ_ONLY';
    
           dbms_job.submit(job => ddl_job,
           what => 'execute_grant(''' || ddl_str || ''');',
           next_date => sysdate+(5/24/60/60));
    
       END IF;
    end;
    /
    

    Test it

    create table F (id number(1));
    

    Validate

    select * from ROLE_TAB_PRIVS where ROLE = 'SVMANAGER_READ_ONLY';
    
  • How to solve the problem of Oracle SQL Developer Connection?

    People,

    Hello. I use the Oracle 11 GR 1 material database. The database https://localhost.localdomain:1158 control console / em works correctly. I can create a database and a table with success.

    My OS is Linux and connects to the internet successfully.

    In order to execute SQL statements. We use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:

    Connection name: DB1 (is my database name)
    User name: SYS (this is the user name I used to connect to the Console)
    Password: SYS (this is the password used to connect to the Console)
    Connection type: basic
    Host name: localhost
    Port: 1158
    SID: DB1 (it is created during the installation of the database)

    But the error message: "status: failed - IO exception Connection Reset."

    Can any folk tell me how to solve the problem of Oracle SQL Developer Connection?

    user8860348 wrote:
    People,

    Hello. I use the Oracle 11 GR 1 material database. database Control Panel https://localhost.localdomain:1158 / em works correctly. I can create a database and a table with success.

    My OS is Linux and connects to the internet successfully.

    In order to execute SQL statements. We use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:

    Connection name: DB1 (is my database name)
    User name: SYS (this is the user name I used to connect to the Console)
    Password: SYS (this is the password used to connect to the Console)
    Connection type: basic
    Host name: localhost
    Port: 1158
    SID: DB1 (it is created during the installation of the database)

    But the error message: "status: failed - IO exception Connection Reset."

    Can any folk tell me how to solve the problem of Oracle SQL Developer Connection?

    user name: sys
    password: enter_your_correct_password given at the time of the installation of oracle

    role: select sysdba if you would connect as sysdba otherwise select normal for users other than the sys

    HostName: Enter your ip or hostname of the oracle example server address:-192.168.11.12

    to find the terminal/command prompt open hostname in oracle installed machine
    type---> hostname

    type ping hostname--->

    You can find the IP address of the server

    Port number: 1521 (default)---> I guess, otherwise check the port number in the file tnsnames.ora under your ORACLE_HOME/network/admin folder

    SID: DB1

    try it
    Good luck

  • How to use the Type of Oracle Table values in the Select statement.

    Hello

    I get the initial set of values in the Table of Type Records of the Oracle and want to use the list of values in the Select statement.

    For example, try something like the following:

    TYPE t_record () IS RENDERING
    ID TABLEA.ID%type,
    NO TABLEA.NO%type

    );
    v_record t_record;
    T_table TYPE IS the v_record TABLE % TYPE;
    v_table t_table;

    -Code to fill the values of v_table here.

    SELECT ID, NO, COLLECT in BULK IN < some other table variabes here > FROM TABLEA
    WHERE ID IN (i) v_table USER.USER;

    I want to know how to use the Type of Oracle Table values in the Select statement.

    Something like this:

    create or replace type t_record as  object (
    id number,
    no number
    )
    /
    
    CREATE or replace type t_table AS TABLE OF t_record;
    /
    
    set serveroutput on
    declare
    
      v_table t_table := t_table();
      v_t1 t_table := t_table();
    
    begin
    
      v_table.extend(1);
      v_table(1).ID := 1;
      v_table(1).No := 10;
    
      v_table.extend(1);
      v_table(2).ID := 2;
      v_table(2).ID := 20;
    
      SELEC t_record (ID,NO) BULK COLLECT INTO v_t1
      from TableA
      FROM TABLEA
      WHERE ID IN (select t.ID from table(v_Table) t);
    
      for i in 1..v_t1.count loop
        dbms_output.put_line(v_t1(i).ID);
        dbms_output.put_line(v_t1(i).No);
      end loop;
    end;
    /
    

    No test!

    P;

    Published by: bluefrog on March 5, 2010 17:08

  • How to change the logo in Oracle Apps homepage?

    Hi all


    Just curiosity and brand, I want to put the logo of my company instead of the Oracle Apps homepage.

    Can someone help me on this?

    Thank you
    Anchorage

    Anchorage,

    Please refer to:

    Note: 119319.1 - how to replace the Oracle Logo with Company Logo on the login screen 11i Applications
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=119319.1

    Note: 421636.1 - how to replace the default Logo Oracle with a custom Logo?
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=421636.1

    Note: 395663.1 - how to change the System Wide Corporate Branding Image in the E-business Suite
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=395663.1

    Note: 468971,1 - tips to customize the E-Business Suite 11i (AppsLocalLogin) Login Page
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=468971.1

  • How to display the rownum in oracle forms?

    Hai all,

    How to display the rownum in oracle forms?

    Thank you
    RCS
    ----------------

    I would add rowum with the current form of group_mstr:

    former columns:

    group_id
    GroupName

    new columns will be:

    identifier of the line
    group_id
    GroupName


    I created as follows:
    in forms
    text tool > row id
    text element > EXT_ITEM20

    error text element: no white color, it's a different color
    --------------

    create > Trigger > a time new form instance > I gave like this:

    DECLARE
    CURSOR crrow_id IS
    SELECT count (*) + 1 group_mstr;
    BEGIN
    OPEN crrow_id.
    Search FOR crrow_id IN: TEXT_ITEM20;
    CLOSE Crrow_id;
    END;
    ------------
    error: identifier group_mst must be declard
    ============

    I don't know also not quite what you want to display in your form. Do you want to just number the records displayed, from 1 to n?

    If so, create a text whose property 'data base element' element to the value 'no', "calculation method" formula and the formula itself: SYSTEM. " TRIGGER_RECORD, then, in each case, the registration number should be indicated.

  • How to insert the HTML for Oracle Portal

    I want to insert the HTML for Oracle Portal to insert a gif, buttons, animations, flash content, how can I do?

    Thank you

    Many ways:
    -use html portlet or dynamic page on your pages

  • How to reconnect the new database with oracle and oracle mid infrastructure

    course oracle environment;
    Database; 10gr 2 (10.2.0.1) old-SID: gtxprod host: 10.30.100.199
    new database; 10gr 2 (10.2.0.1) - SID: gtxprod2 host: 10.40.110.199
    application sever. 10.2.0.1 (oracle mid level.) and oracle infra SSO, forms, reports, portal.

    problem;
    I try to reconnect from the application to the new database server. I do not know how?

    I went to /opt/oracle/10ggtxinf/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /opt/oracle/10gasr2inf/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    
    asdb.gtx.com =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = isdev.gtx.com)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME =asdb.gtx.com)
        )
      )
    
    
    gtxprod.gtx.com =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = gtxprod.gtx.com)(PORT = 1521))
        )
        (CONNECT_DATA =
          (SID = gtxprod)
        )
      )
    
    gtxprod2.gtx.com =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = gtxprod2.gtx.com)(PORT = 1521))
        )
        (CONNECT_DATA =
          (SID = gtxprod2)
        )
      )
    In application of the oracle infra. How Asian Bank of development of database instance can connected with the new data base gtxprod2?

    In Forms Server, based on a Web site, if go to Forms Server, I can see tns.ora but I can't see anything to update to the new database.

    you could give me information how understand this problem?

    Thank you very much in advance

    Hi Wen,

    As you have created a new database 'gtxprod2' so the Stanley database should be in place
    cmd--> lsnrctl status
    That you have even made changes to 10ggtxinf/network/admin/tnsnames.ora
    do the same entry in the oraclebi/network/admin/tnsname.ora file

    You can check if your new entry is rite of
    tnsping gtxprod2 (>)
    Now you ask how the application will come to know what database to point to
    Go to oracle AS
    As using your forms and reports go to oraclebi/forms/server/formsweb.cfg

    At the end of the file, there might be a few entries
    for example
    [test]
    envFile = test.env
    Form = LOGIN_ENT.fmx
    LookAndFeel = oracle
    separateFrame = true
    UserID=nrs_fd/nrs_fd@fixdep
    SplashScreen = NO
    logo = NO
    Background = No.
    color = auto
    make = yes
    Archive = frmall.jar
    archive_jini = frmall_jinit.jar, frmwebutil.jar, Jacob.jar, icons.jar
    ImageBase codebase =
    term = frmpcweb.res
    baseHTML = webutilbase.htm
    baseHTMLjinitiator = webutiljini.htm
    baseHTMLjpi = webutiljpi.htm
    WebUtilArchive = frmwebutil.jar, jacob.jar

    "userid=nrs_fd/nrs_fd@fixdep" IE (username) / (password) @tnsname
    the following entry specifies what database, the application must point to

    If your using a war file, you must create a data source and as datasource, you must specify the tnsname input

    Concerning
    Fabian

  • How to access the remote database by using express application server

    I wan to access the database in one of my servers of laboratory since my laptop remotely. I could easily connect to the server when I use the LAN by simply giving the ip address. But it does not work when remote. I installed PuTTy to connect to the server (that I have), but now I want to access the specific request of this database in the lab server. Is it possible to do?

    Any help would be appreciated.

    Thank you

    Hi 3030553,

    3030553 wrote:

    Please change your login username of "3030553" to something meaningful. Reference: Video tutorial how to change username available

    I wan to access the database in one of my servers of laboratory since my laptop remotely. I could easily connect to the server when I use the LAN by simply giving the ip address. But it does not work when remote. I installed PuTTy to connect to the server (that I have), but now I want to access the specific request of this database in the lab server. Is it possible to do?

    Your laptop must be in the lab server LAN network to access, or else you should have the VPN connection to the LAN in which the lab server exists.

    Also to access objects of database in your schema to Application Express workspace, you can use the workshop of SQL as mentioned by Tommy or you can use Oracle SQL Developer, since you have the credentials for the schema to connect to and related IE required database server information full domain name / ip address of the server port on which the listener database service is running, database SID/database service name listening.

    Kind regards

    Kiran

  • How to get the DB to Oracle Cloud connection?

    Hello

    I sent my application and the database tables and procedures on Java cloud and the Cloud database matching.

    In the application on the cloud, the pages where the data comes directly from the VO are is filled correctly, but in some pages, I ran DB procedures while I get the DB connection of the using function code:

    Public Sub getDBConnection()

    {

    Connection Conn = null;

    try {}

    InitialContext context = new world;

    Data source dataSource = (DataSource) context.lookup ("< jndiName >");

    Conn = dataSource.getConnection ();

    } catch (NamingException e) {}

    e.printStackTrace ();

    } catch (SQLException e) {}

    e.printStackTrace ();

    }

    }

    But the connection is not putting in place and gives me a java.lang.NullPointerException.

    Anyone know how to create a DB connection from java code on the oracle cloud?

    See this thread for an example.

    --

    Jani Rautiainen

    Relationship with the developers of Applications in fusion

    https://blogs.Oracle.com/fadevrel/

  • How to set the default database selection forms 11g

    Hello

    In the past (Forms 10g), we could define the default database by defining userid=@dbname in formsweb.cfg.

    We migrated to form 11g.
    When we set this setting, we have the message ORA-01017 invalid username but the dbname is located in the windows of connection.
    Unfortunately, it generates an error message.

    How can we set the default database 11g-shaped?

    Thanks in advance for your answer.

    If the intermediate platform is Windows LOCAL value the name of db in default.env forms. If the platform is Unix, set TWO_TASK on db name in the default.env. This is not pre-fill the db name field, but in this place, this field may be left blank. Otherwise, you must create your own custom logon dialog box.

    Example:

    LOCAL = dbname

    Or UNIX

    TWO_TASK = dbname

    .

    Published by: Ferrante Michael (Oracle) on August 7, 2012 12:05

  • How to recreate the sample database

    Hello
    We have removed the sample base after that we installed Essbase (11.1.1.3). Now, some users want to have available to practice basic sample. Someone know how to recreate example based in Essbase?

    Thank you

    Open the zip file it looks like all the files are there. Thus, EAS create the example application (OSB non-unicode) and then create the basic database. Stop the application and then copy all the files in the zip file in the home directory on the server (path may vary depending on which version you use), but there should be a directory app\sample\basic. Then start the application and you should be good to go

  • How to create the new database in oracle 11g

    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    870692 wrote:
    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    Be sure to distinguish between the terms and the database schema. Other products, make them bad. It would be a HR diagram (or a user, which is the same in Oracle). If you do not need to use the database Wizard, unless you are working with a new host with no database.

    A simple way would be to get the DDL to create the HR schema and modify it for your own. It can be extracted from your database in several ways, or you can copy the hr_cre.sql to your own script and change. The two ways are educational, and you can google for instructions.

Maybe you are looking for

  • First: Journal?

    A few days ago, I saw a note on how to make a rose on the first and now I can't find it again... So, where is it?

  • Pavilion 15-n020us: drivers touchpad 15-n020us

    I have been clean and update Pavilion 15-n020us of my Dad for him... Thus,. What's up with the driver for the touchpad Windows 10 x 64 being a pilot of "Alps" (with reset of settings to scroll and others) while the driver for Win 8 was a Synaptics, w

  • How to analyze music files before you send it by e-mail

    Not sure if this is the proper place to ask this, but I apologize if it is. I ask this because I can't tell friends who send me music files. When I get the files it always says that it came from an unknown source and can infect my computer. It seems

  • How can I reload a sound device for Windows XP?

    I lost my original Microsoft XP audio device.  I suspect that it is related to a recent purchase of the Uniblue pilot program, which is a 'partner '? with Microsoft.  I got 18 out of date drivers that have been updated. When I started to replace/down

  • Explore in some folders__ error

    Unfortunately I havesome problemswithmy machine - a mistake that was on the machine, maybe a fewmonths - I don't knowwithcertainty not. Whenever I makea folder - and puts a lot of content-like everything - and thenopening of the giventhis error file: