Export import - using TOAD FOR ORACLE  and ORACLE DATABASE 10G EXPRESS or s

Hi all,
Could you please kindly help me?
I am using TOAD FOR ORACLE to export a table to flat file A. The tool just supports to distinguish fields by "spaces".
And the web page of ORACLE DATABASE 10G EXPRESS to import the data from flat file A to another database. To load data to a table from a text file, the web page bases on "comma" to distinguish fields.
So could you have any suggestion for me? I need to export data via TOAD FOR ORACLE. And then import it to another database by the home page of ORACLE DATABASE 10G EXPRESS or sqlplus.
Thank you so much for your help!

Dont use TOAD for exporting your data. Use PL/SQL. Below is the code given in Asktom.com that does what you want.
create or replace function  dump_csv( p_query     in varchar2,
                                      p_separator in varchar2 default ',',
                                      p_dir       in varchar2 ,
                                      p_filename  in varchar2 )
return number
is
    l_output        utl_file.file_type;
    l_theCursor     integer default dbms_sql.open_cursor;
    l_columnValue   varchar2(2000);
    l_status        integer;
    l_colCnt        number default 0;
    l_separator     varchar2(10) default '';
    l_cnt           number default 0;
begin
    l_output := utl_file.fopen( p_dir, p_filename, 'w' );
    dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
    for i in 1 .. 255 loop
        begin
            dbms_sql.define_column( l_theCursor, i, l_columnValue, 2000 );
            l_colCnt := i;
        exception
            when others then
                if ( sqlcode = -1007 ) then exit;
                else
                    raise;
                end if;
        end;
    end loop;
    dbms_sql.define_column( l_theCursor, 1, l_columnValue, 2000 );
    l_status := dbms_sql.execute(l_theCursor);
    loop
        exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
        l_separator := '';
        for i in 1 .. l_colCnt loop
            dbms_sql.column_value( l_theCursor, i, l_columnValue );
            utl_file.put( l_output, l_separator || l_columnValue );
            l_separator := p_separator;
        end loop;
        utl_file.new_line( l_output );
        l_cnt := l_cnt+1;
    end loop;
    dbms_sql.close_cursor(l_theCursor);
    utl_file.fclose( l_output );
    return l_cnt;
end dump_csv;
/Here is the link to this thread in asktom.
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:95212348059

Similar Messages

  • Trying to not save artboard when exporting or using save for web and devices

    Hello,
    I am using AI CS5 and I am trying to save a logo that is on an 8.5 x 11 artboard.  When I try to export or 'save for web and devices', I am getting the entire artboard to be saved - not just the logo like I want.  I have never had this issue in CS3, and just started using CS5 so I am not sure if there is a new feature that I need to be turning off to just save the logo instead of the entire 8.5x11 page.
    Any help is appreciated,
    Kristie

    Thanks!  It was under the object - slice.  You've saved my sanity

  • Exporting animation using Save for Web and Devices problem

    The animation plays as it should when the "Play" button is pressed at the bottom of the "Save for Web and Devices" Menu , but when I Preview it the individual frames don't disappear once they've shown , so you can see them all at the end of the animation . This is also how they save as a .gif ( although using the "Save as html" option reverts to looking as it should , each frame appearing and disappearing in turn) How do I save as gif without this happening?Many thanks for any help

    Thanks!  It was under the object - slice.  You've saved my sanity

  • Export - Import In ABAP ( for variables and internal table)

    how can we pass value for the variable and internal table using Export and Import?
    data: var type sy-uzeit.
    var = sy-uzeit.
    EXPORT var TO MEMORY ID 'TIME'.
    data: var type sy-uzeit.
    IMPORT var FROM MEMORY ID 'TIME'.
    write:/ var,sy-subrc,sy-uzeit.
    i found var value 0 while importing. 
    what is the right syntax for passing value of variable and internaltable.
    regards,
    dushyant.

    Hi,
    There are two possible solutions.
    Solution1:
    Program1.Should be run before atleast once so that TIME should be filled.
    data: var type sy-uzeit.
    var = sy-uzeit.
    EXPORT var TO MEMORY ID 'TIME'.
    Program2.IF the TIME is filled,then only it will produce the result.
    data: var type sy-uzeit.
    clear var.
    IMPORT var FROM MEMORY ID 'TIME'.
    write:/ var, sy-subrc, sy-uzeit.
    Solution2:
    Single program:
    data: var type sy-uzeit.
    var = sy-uzeit.
    EXPORT var TO MEMORY ID 'TIME'.
    clear var.
    IMPORT var FROM MEMORY ID 'TIME'.
    write:/ var, sy-subrc, sy-uzeit.
    Kindly reward points by clikcing the star on the left of reply,if it helps.

  • Export/Import using CTS for PI

    Hi Experts,
          From PI Dev System i am  transporting the ID objects using CTS.
      All objects assigned to scenario and scenario is active. when i am exporting the Configuration scenario, it is showingt as sucess.
    the problem is when we import in prod system only few objects are enabled, rest of them disabled.
       can any one provide me the solution for this.
      regards,
    ganesh.n

    HI Jenny,
    Thanks for your early response, let me give more clarity
    we are only exporting the ID objects.
    Client Basis Team  is releasing them and importing them into PI-Prod, once they import, few of the objects of the relaetd configuration scenario are seen as disabled ( greyed out )and few of them enabled.
    In order to activate the transported config objects in the target system, you should transfer the change list from the CTS Admin account to your account then activate.
    This is handled by Client Basis team, and we are not sure whether how they are doing.
    Regards
    Chandra

  • Differences between TOAD for Oracle and Oracle SQL Developer?

    Does someone know the advantages and disadvantages of using TOAD for Oracle and Oracle SQL Developer?
    I work making reports with TOAD, but in a few days I will have to use the SQL Developer (because it´s free) unless I justify the necessity of using TOAD.
    Could some that used both compare them?
    Thanks,
    Facundo.

    Hello Facundo,
    since we are rolling out new client PCs we switch from Toad to SQL Developer. Therefore I'm doing some training for the "normal" users and our developers.
    Most users simply want to have access to the data in tables and views. For those there are 2 main issues:
    - Filters get lost when exiting table while sorting is still applied. Since there is no way to apply filtering before entering the data tab this can become a great performance issue because sorting is applied to many many rows. For views it is sometimes impossible to open the data tab.
    - Exporting date values to Excel needs some know how if you want to sort by this column in Excel, because the date is formatted as "Standard" meaning that the sorting is done as for a text column: 01.01.2009 is less than 02.01.2008. Here you have to use a workaround column with a formula (=1*<datecolumn>)
    The greatest Pro is the easy sharing of connections and reports by XML files.
    Our developers like the easy debugging in SQL Developer. Though they miss the feature that the source is compiled for debug automatically as in Toad. For this we have distributed a script that compiles any PL/SQL object for debugging.
    There are only some Toads installed for DBAs and for users that need access to tables protected by policies that require authentification by OS user since this information is not passed under every circumstance.
    Regards
    Marcus

  • Directory Setup for RAC and Oracle Restart

    I have three database installations that I'd like some insight on the initial directory structure and permissions. The three installations are:
    1) Prod RAC - OEL 5U2, 11.2.0.2 Grid Infrastructure, 11.2.0.2 DB EE with RAC option
    2) Test RAC - OEL 5U2, 11.2.0.2 Grid Infrastructure, 11.2.0.2 DB EE with RAC option
    3) Single Instance - OEL 5U2, 11.2.0.2 Grid Infrastructure Standalone (Oracle Restart), 11.2.0.2 DB EE
    The they all have two users GRID (for Grid Infrastructure Software Owner) and ORACLE (for Oracle Database Software Owner).
    We had a consultant install the databases. It's very weird since we have an inconsistency in directories and permission. I want to understand the inconsistency between RAC installations as well as Oracle Restart Install.
    SEE BELOW: The two RAC servers have different owners for /u01/app/11.2.0.2 directory. The Oracle Restart Installation - Single Instance has the same owner as Prod RAC but different than Test RAC. What the consultant said was that ORACLE_BASE would be /u01/app/oracle for both Grid Infrastructure and Database installations. This was to apply to TEST/PROD RAC (3 node, 3 instances, 1 instance/node) and Oracle Restart installation. The GRID_HOME would be /u01/app/11.2.0.2/grid and ORACLE_HOME would be /u01/app/11.2.0.2/db_1. It seems like the owners aren't setup correctly. Why? I don't want problems with patching or upgrading. If this setup is technically incorrect what is the best way to setup so there's no owner/permission issues. Is it necessary to have two separate ORACLE_BASE's like /u01/app/grid?
    PRODUCTION REAL APPLICATION CLUSTER (Displaying only one Node details)
    $ cd app
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 3 root oinstall 4096 Apr 21 2009 ..
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 11.2.0.2
    drwxrwxr-x 2 emagent oinstall 4096 Feb 26 2011 emagent
    drwxrwxr-x 9 oracle oinstall 4096 May 16 2011 oracle
    drwxrwx--- 7 grid oinstall 4096 Feb 26 2011 oraInventory
    $ cd 11.2.0.2
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 79 oracle oinstall 4096 Mar 29 2011 db_1
    drwxr-xr-x 69 root oinstall 4096 Feb 26 2011 grid
    $ cd ..
    $ cd oracle
    9 oracle oinstall 4096 May 16 2011 .
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 4 oracle oinstall 4096 Feb 26 2011 admin
    drwxr-xr-x 3 oracle oinstall 4096 Feb 26 2011 cfgtoollogs
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 Clusterware
    drwxrwxr-x 11 grid oinstall 4096 Feb 26 2011 diag
    drwxrwxr-x 3 grid oinstall 4096 Feb 26 2011 hqrac03
    drwxr----- 3 oracle oinstall 4096 May 16 2011 oradiag_oracle
    drwxr-xr-x 3 root root 4096 Mar 13 2011 oradiag_root
    TEST REAL APPLICATION CLUSTER (Displaying only one Node details)
    $ cd app
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ./
    drwxr-xr-x 3 root oinstall 4096 Jan 26 2009 ../
    drwxrwxr-x 4 root oinstall 4096 Jan 26 2011 11.2.0.2/
    drwxrwxr-x 2 emagent oinstall 4096 Mar 1 2011 emagent/
    drwxrwxr-x 10 grid oinstall 4096 May 16 2011 oracle/
    drwxrwx--- 7 grid oinstall 4096 Jan 27 2011 oraInventory/
    $ cd 11.2.0.2
    drwxrwxr-x 4 root oinstall 4096 Jan 26 2011 ./
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ../
    drwxr-xr-x 80 oracle oinstall 4096 Mar 17 2011 db_1/
    drwxr-xr-x 70 root oinstall 4096 Jan 27 2011 grid/
    $ cd ..
    $ cd oracle
    drwxrwxr-x 10 grid oinstall 4096 May 16 2011 ./
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ../
    drwxr-xr-x 4 oracle oinstall 4096 Feb 2 2011 admin/
    drwxr-xr-x 4 oracle oinstall 4096 Feb 2 2011 cfgtoollogs/
    drwxr-xr-x 2 grid oinstall 4096 Jan 26 2011 Clusterware/
    drwxrwxr-x 11 grid oinstall 4096 Jan 26 2011 diag/
    drwxr-xr-x 3 grid oinstall 4096 Jan 26 2011 hqract03/
    drwxr-xr-x 3 grid oinstall 4096 Mar 23 2011 oradiag_grid/
    drwxr----- 3 oracle oinstall 4096 May 16 2011 oradiag_oracle/
    drwxr-xr-x 3 root root 4096 Jan 27 2011 oradiag_root/
    SINGLE INSTANCE DATABASE (ORACLE RESTART)
    $ cd app
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 3 root root 4096 Apr 16 2009 ..
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 11.2.0.2
    drwxrwxr-x 8 grid oinstall 4096 Feb 26 2011 oracle
    drwxrwx--- 6 grid oinstall 4096 Feb 26 2011 oraInventory
    $ cd 11.2.0.2
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 .
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 76 oracle oinstall 4096 Apr 6 2011 db_1
    drwxr-x--- 69 root oinstall 4096 Feb 26 2011 grid
    $ cd ..
    $ cd oracle
    drwxrwxr-x 8 grid oinstall 4096 Feb 26 2011 .
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 ..
    drwxrwxr-x 5 grid oinstall 4096 Feb 26 2011 admin
    drwxrwxr-x 7 grid oinstall 4096 Feb 26 2011 cfgtoollogs
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 checkpoints
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 Clusterware
    drwxrwxr-x 11 grid oinstall 4096 Feb 26 2011 diag
    drwxrwxr-x 3 grid oinstall 4096 Feb 26 2011 hqods01
    Thanks so much.

    Hello
    I did only check prod, as that is the important one.
    i am afraid that setup is not clean. I won't use the work is wrong, but need to be normalized.
    grid oracle base need to be separate from oracle oracle base, and the grid oracle home, MUST be outside of oracle base/oracle home of the oracle user.
    In a multi user setup, the structure should be as follow.
    grid user, group oinstall, asm* groups
    oracle user, group oinstall, dba and db* groups
    The GRID install, have, grid home and oracle base
    the oracle base for grid should be, /u01/app/grid
    the grid home should be, /u01/app/11.2.0.3/grid
    the Oracle user have several homes, and oracle base
    the oracle base for oracle should be, /u01/oracle
    so, for permissions, when I create this, i do as root
    mkdir -p /u01/app/11.2.0.3/grid
    mkdir -p /u01/app/grid
    mkdir -p /u01/app/oracle
    mkdir -p /u01/app/oraInventory
    chown -R grid:oinstall /u01
    chown -R oracle:oinstall /u01/app/oracle
    then, you install grid .. you have so say oracle home is /u01/app/grid and oracle home is /u01/app/11.2.0.3/grid
    at the end, the root.sh as part of the install will take care of the permissions for oraInventory, and the rest for grid.
    when grid is installed, you can move to the oracle db install you use oracle base as /u01/app/oracle and oracle home as /u01/app/oracle/product/11.2.0.3/dbhome_1
    that will give you
    2 4 drwxr-xr-x 6 root oinstall 4096 Sep 21 03:20 /u01
    5996545 4 drwxr-xr-x 6 root oinstall 4096 Sep 18 22:58 /u01/app
    5996546 4 drwxr-xr-x 8 grid oinstall 4096 Sep 18 22:50 /u01/app/grid
    5996547 4 drwxr-xr-x 3 root oinstall 4096 Sep 18 22:30 /u01/app/11.2.0.3
    5996548 4 drwxr-xr-x 69 root oinstall 4096 Sep 21 10:52 /u01/app/11.2.0.3/grid
    5996549 4 drwxrwx--- 5 grid oinstall 4096 Oct 30 22:08 /u01/app/oraInventory
    7406840 4 drwxr-xr-x 7 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle
    7406841 4 drwxr-xr-x 3 oracle oinstall 4096 Sep 18 22:58 /u01/app/oracle/product
    7406842 4 drwxr-xr-x 6 oracle oinstall 4096 Oct 30 22:04 /u01/app/oracle/product/11.2.0.3
    7766052 4 drwxr-xr-x 77 oracle oinstall 4096 Nov 2 01:20 /u01/app/oracle/product/11.2.0.3/dbhome_1
    Each user have to use his own oracle_base, as each oracle_base will store files and folders created for logs, admin, diagnostic with different permissions and different usages, for a reason you have role separation.
    example of the content of each oracle base
    $ find /u01/app/oracle/ -maxdepth 1 -ls
    7406840 4 drwxr-xr-x 7 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle/
    7406841 4 drwxr-xr-x 3 oracle oinstall 4096 Sep 18 22:58 /u01/app/oracle/product
    8749076 4 drwxrwxr-x 3 oracle asmadmin 4096 Sep 18 23:03 /u01/app/oracle/diag
    8749064 4 drwxr-x--- 6 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle/admin
    8716289 4 drwxr-xr-x 2 oracle oinstall 4096 Oct 30 22:18 /u01/app/oracle/checkpoints
    8749061 4 drwxr-x--- 5 oracle oinstall 4096 Sep 18 23:12 /u01/app/oracle/cfgtoollogs
    $ find /u01/app/grid/ -maxdepth 1 -ls
    5996546 4 drwxr-xr-x 8 grid oinstall 4096 Sep 18 22:50 /u01/app/grid/
    7307540 4 drwxrwxr-x 4 grid oinstall 4096 Sep 18 22:49 /u01/app/grid/diag
    7307474 4 drwxr-xr-x 2 grid oinstall 4096 Sep 18 22:33 /u01/app/grid/Clusterware
    7307265 4 drwxr-xr-x 2 grid oinstall 4096 Sep 18 22:33 /u01/app/grid/checkpoints
    7307532 4 drwxr-x--- 4 grid oinstall 4096 Sep 18 22:49 /u01/app/grid/cfgtoollogs
    7406796 4 drwxr-xr-x 3 root root 4096 Sep 18 22:50 /u01/app/grid/oradiag_root
    Take care,
    Alvaro.

  • Help building an e-commerce site using DreamWeaver MX 2004 and Oracle 10G

    I'm new to using Oracle 10G. After reviewing several rdms's I've picked Oracle 10G as my rdms. I'm trying to build an ecommerce site using DreamWeaver MX 2004 and Oracle 10G. The website will be selling hardware and software products. I have a choice in DreamWeaver to go for a .asp or .jsp setup. I have several questions, here goes:
    1. Is there any book/tutorial/whitepaper out there that describes building an ecommerce site using Oracle 10G/9I/8I? Just some examples as how to make the datamodel regarding the shopping basket etc.
    2. I prefer DreamWeaver as it let's me make nice looking css style based pages without throttling too much through the code. Are there Oracle tools which allow me to make an advanced nice looking ecommerce site?
    I hope some of you can help me get started. Any effort is appreciated.
    Cheers

    I'm new to using Oracle 10G. After reviewing several rdms's I've picked Oracle 10G as my rdms. I'm trying to build an ecommerce site using DreamWeaver MX 2004 and Oracle 10G. The website will be selling hardware and software products. I have a choice in DreamWeaver to go for a .asp or .jsp setup. I have several questions, here goes:
    1. Is there any book/tutorial/whitepaper out there that describes building an ecommerce site using Oracle 10G/9I/8I? Just some examples as how to make the datamodel regarding the shopping basket etc.
    2. I prefer DreamWeaver as it let's me make nice looking css style based pages without throttling too much through the code. Are there Oracle tools which allow me to make an advanced nice looking ecommerce site?
    I hope some of you can help me get started. Any effort is appreciated.
    Cheers

  • Volumes and Qtrees set up for SAP and Oracle

    Hi Gurus
    I Need your help Please
    I need to get Volumes and Qtrees set up for SAP and Oracle.
    I found a document from NetApp that helped a lot about the structure.
    But what I donu2019t know and canu2019t find anywhere is sizing for the volumes and Qtrees.
    I really need some guidelines on sizing these below:
    FlexVol saplog
    /usr/sap/SID
    /usr/sap/trans
    /sapmnt/SID
    /home/SIDadm
    /oracle/SID
    /oracle/SID/origlogA
    /oracle/SID/origlogB
    /oracle/SID/oraarch
    /oracle/SID/sapreorg
    /oracle/SID/sapbackup
    /oracle/SID/saparch
    FlexVol sapdata
    /oracle/SID/sapdata1
    /oracle/SID/sapdata2
    /oracle/SID/sapdataN
    FlexVol mirrlogs
    /oracle/SID/mirrlogA
    /oracle/SID/mirrlogB
    Thanks and appreciate your help

    > I have gone through the Inst Guide and I was surprised to see only 50 MB for Oracle software directory ?
    Where did you read that?
    > The sizing given in Installation guide is for typical setup or do we need to size as per our requirement ?
    The sizing give there is for the initial system setup. It does not contain customer specific requirements.
    The usual process is:
    - you contact your hardware vendor
    - you use http://service.sap.com/quicksizer together with him and fill in the data
    - the hardware vendor will offer you the storage and the machines for the setup
    - the vendor configures with you the storage and the necessary filesystem layout based on that sizing
    Each customers setup is different and requires the experience and knowledge from the respective hardware vendor how to set up the system so it performs well.
    You can follow the suggestions given here, this will be enough for the initial setup but the system will grow. This is not taken into account in the installation guide because it's customer specific.
    Markus

  • Useful link for Beginners in Oracle Apps

    Hi All,
    http://www.exforsys.com/content/category/17/260/342/
    this is a very useful link for starters in Oracle Apps to get to know the concepts.Crisp n Clear.
    Hope this helps.

    The only problem is that it is an exact replica of the oracle documentation in html format :)
    Sam
    http://appstech-sam.blogspot.com

  • Problem about using Oracle Form 6i to connect Oracle Database 10g express.

    Sorry to interrupt all of you.
    I have encountered a problem about using Oracle Form 6i to connect Oracle Database 10g express.
    As I would like to
    I use Oracle Net8 Easy Config to create a connection.
    According to "tnsnames.ora", the paramater of connection is as follows;
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA = (SID = XE))
    Unfortunately, when I use Oracle Net8 Easy Config to test the connection, an error message is prompted as follows:
    Connecting....
    The test did not succeed.
    ORA-03106: fatal two-task communication protocol error
    There may be an error in the fields entered
    or the server may not be ready for a connection.
    You can check the server and retry, or continue.
    After I google it, I still have no idea how to solve the problem. I would like to ask, could anyone mind providing some hints or solution to address the issues.
    Thanks for your assistance in advance.

    I don't believe the Net8 Easy Config (NEC) will create a compatible entry in the tnsnames.ora. I have Forms 6i running successfully against a 10g Express database, but I did not use the NEC - I created the entry myself. Here is the entry I use:
    XE=
      (DESCRIPTION=
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=<<servername or IP address>>)
          (PORT=1521)
        (CONNECT_DATA=
          (SERVER=dedicated)
          (SERVICE_NAME=XE)
      )Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Oracle Database 10g Express Edition and xmlelement

    Hi
    when i tried to execute the following Sql command on a Oracle Database 10g Express Edition
    select level,xmlelement(evalname(desc), value1)
    from hr.xml_local
    connect by prior id = id - 1 start with level = 1
    i got this error:
    ORA-19039: The keyword EVALNAME is reserved for future use as a builtin function.
    is there a workaround to avoid this?
    MDK.

    mdrake wrote:
    Catch-22.. The other way of doing this easily is XQuery, but since in 10.2.0.1.0 XQuery had a dependancy on Java, and Java is not supported in XE we are back to square 1.
    The only other ways are (a) string manipulation - which I refuse to discuss, or (b) DOM-APIOr Oracle Support providing the person with the relevant "alter session set events ..." statement to switch on that feature in 10.2.0.1 (as shown in the SQL and PL/SQL forum thread). Obviously as it's from Oracle support, it can't be supplied on the forums.
    ;)

  • Problems with Oracle Database 10g Express Edition and JBoss

    Hi all,
    I try to use Oracle Database 10g Express Edition and JBoss, but sometimes i have a connection problems.
    Sometimes i have starnge warning:
    WARN [JBossManagedConnectionPool] Unable to fill pool
    org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS:no appropriate service handler found
    and:
    org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: (java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS:no appropriate service handler found
    Oracle Database 10g Express Edition support Distributed Transaction Processing (DTP) XA interface or not?
    Some ideas?
    Thanks in advance!
    Stoyan

    Hi,
    yes, it will work, but only with the Western European Edition, not the Unicode release.
    See this thread for details:
    Re: Connection error from SqlPlus 8.0 to Oracle XE in the same computer
    Regards,
    ~Dietmar.

  • Why doesn't SAP use SAPUI5 for this and that

    This is my personal opinion about this topic! Again and again I stumble about this and now I want to share some of my thoughts about this topic. I want to share this from a point of view, when I was not a SAP Employee - I worked at a SAP Partner company - because this best reflects the view from the outside.
    1. SAP "wants" us to use SAPUI5
    I don't think that "wants" is the right word - the right word is offers! In terms of: hey now even included in your license and open sourced (because you wanted it so). Look - we build sooo many Fiori apps with it - and put in some great enterprise features (right to left, accessibility, translation, ...) and it is responsive. So if you want to build Fiori-like "apps" - there you go - this is your technology to go! This is what I understood.
    I was very very very happy that it was build with open standards. But the main point for me another thing - (because I worked with Sybase Unwired Platform and SAP Mobile Platform) OMG an open data protocol!!! OData FTW! I could use ANY front-end technology and consume SAP data - the protocol is REST based - a dream came true. And so I did - yes I played around with Sencha Touch and OData, I used data.js and used it in a standard HTML5 application. We played around with an iOS application we already had and consumed the data. I feed the data into d3.js. I prototyped around with SAPUI5 and I have build apps with it. Brilliant, so I could choose whatever UI technology I wanted.
    I always had the feeling, that SAPUI5 was meant for B2E applications - and building many of that - and they should look and feel the same and I can theme the apps. I can use it when I want to make my applications SAP like - so that the user thinks the apps are all the same and everything fits nicely into the Fiori launchpad - great if you want to build partner apps. In my ex company we won a SAP Pinnacle Award - for a native iOS app, no SAPUI5 in sight - but we have received an award, so SAP did not "want us" to use SAPUI5 ;-)
    2. Is it the right UI technology for everything?
    At my ex-company I was dealing with mobile applications and web apps. I always knew that I get the best user experience when I write a real native application and if you want it to look like in a very specific way with awesome UI --> you would not do it with a write-once-run-everywhere HTML5 super-styled wrapped (phone gap/cordova) app - you would write the apps for the specific platform and it should feel like it was written for the platform. SAP offered us the SAP Fiori Client that I could enhance the user experience for the Fiori apps, but I was never told to use SAPUI5 it for everything.
    The same discussion goes on with: why was the new SAP website not build with SAPUI5, or the UX Explorer (eat your own dog food), or a useful internal app - why Angular, or the other way around why do we even use SAPUI5 and not Angular JS itself. Back to the past - SAP did never tell me to build a website with it, or to build something tiny and small with it (a widget) - or to enhance parts of a website with it - or to build something super-specific with it.
    And yes maybe the UI in a mobile app was not SAPUI5 but do you know if it uses Gateway with OData or the SAP Mobile Platform, was the API managed with Apigee, was HCI involved in getting the data from different sources, was it maybe wrapped with SAP Mobile Secure, did it maybe use a HANA backend or some of its features (predictions, text analytics, ...) - are some backend parts maybe hosted on HCP - who knows? So yeah, maybe other SAP technology was involved which you don't see, but in the end it made your life simpler.
    Instead of arguing around why this and that was used for this and that - can we save our energy and instead look at the result - which is all what counts - that it was the right UI technology with the right user interface which makes the user happy? I stated something like - does Google use AngularJS for everything? Nope. They offer us something great we can use. Right, maybe AngularJS is not as important for Google like SAPUI5 is for us. But we have something with which we can build our day-to-day business apps with and we do so.
    3. We missed great opportunity in not using SAPUI5 for this and that
    Let's think about how projects are going: you want something, you look at the costs, you choose most efficient option. Yes this could mean reusing an existing native application which was written long ago and you pimped it up. Or you had outsourced it to a company which wrote a similar app. Or you bought the source code. Or you have some cheap internal staff which could do it (students, trainee), or you could outsource it cheaply. Or all you have is people with experience in this and that technology. Or it must look in a very very specific way (because marketing says so) and you go native. Or it maybe should even differentiate itself and should look NOT like a Fiori app. And no - I don't think - this is my employees view - we are not for example an event app producer. We normally build business applications. And I don't think that we can write an app from scratch "just" for an event in a certain technology. Yes it would be nice if this and that would use SAPUI5, I think if it would be possible in terms of time and costs and UI wishes and hundreds of other factors we would do it with SAPUI5.
    Working at the partner SAP showed me over 50 Fiori apps, now hundreds of Fiori apps are released. SAP now showed that SAPUI5 is going big with S/4HANA. We have seen the Simple Finance solution. I was walking around at the CeBIT this year and I was impressed myself which cool apps and screens have been shown with SAPUI5. I used the SAPUI5 app on a Samsung Smart Watch myself. The SAP Web IDE itself is built with SAPUI5 in its heart. I don't need any other "proves" that SAPUI5 is great. I have seen great use cases for it, but I also know myself when I would use other stuff.
    4. My conclusion
    There is never every anything which can cover all different use cases. One-size-fits-all clothes also does not fit for everyone even if it says so. If someone creates something great don't judge it by the UI technology. Judge it by the experience and the value it creates. There are reasons why this and that was chosen. Use what fits your needs best with your requirements. Make the end user happy!

    Hey Denise,
    Thanks for pulling this discussion into SCN. Makes it much easier to discuss compared to Twitter. But I also have to apologize in the beginning that my answer now exceeds 140 characters by 50 times.
    Let me share my thoughts and personal opinion as well. I will try to look at it from a strategic point of view, as you – as the technical UI5 expert - have already covered the technical perspective.
    SAP recommends using SAPUI5 where it fits to customers’ requirements
    Let me begin with a clear statement from my perspective: It makes no sense that SAP takes customer decisions.
    Of course, customers expect SAP to help them with their strategies and decisions and of course we are helping. But at the end, the decisions have to be taken by the customer who needs to take the specific conditions of the company into account. The most important condition in the context of UX is the end user. But we shouldn't forget the business strategy as the most important influence factor. I’m not saying that technical decisions are completely unimportant, but I would like to point out that other things are more important for a company.
    As a result, it wouldn't make a lot of sense if SAP would just want every customer to use SAPUI5. To me, customers need recommendations leading to solutions that satisfy their needs and requirements.
    There is not that one UI technology that serves all needs
    This headline might be a challenging statement and I can already imagine reactions to it. But in fact I can confirm this sentence easily. You always have to combine different technologies. Some of them are from SAP others not. The selection and combination of these technologies is different from customer to customer because the requirements are different. There are still reasons to use Web Dynpro ABAP and I’m still recommending SAP NetWeaver Business Client, POWL (Power Lists), WDA Chips, FPM based on the given environment of the customer. And obviously there are also reasons for UI5.
    SAP already proves the usage of SAPUI5
    In general, I see two different use cases here: Developing custom applications vs. adopting applications from SAP.
    In the one case, customers want recommendations on development environments and UI technologies that consider their development requirements and existing conditions (e.g. existing skills, given implementations). SAPUI5 is a great UI technology and there are some special aspects that make the decision obviously easy. If I want to create simple business applications that can be connected with my SAP system easily, especially in combination under responsive conditions on multiple devices and targeted for casual and/or occasional users UI5 might be the right choice for many.  Exactly this pattern is what many customers are searching for these days. So, the recommendation for UI5 comes quite often.
    Whether or not SAP proves the usage of SAPUI5 in their own world is to me more connected to the use case where customers want to adopt SAP applications. And in deed, SAP is using SAPUI5. There are hundreds of SAP Fiori applications that have been built with SAPUI5 and there have been a lot of other applications developed using SAPUI5, too. And again, there is a huge need for applications for casual and/or occasional users, so that’s a big reason for SAP to create such applications.
    Websites vs. Business Applications
    This discussion was triggered by some statements in twitter, that SAP sites such as sap.com, SAP UX Explorer or the latest mobile conference app are not developed using UI5. Actually I see these to be websites but not business applications. I have never told a customer to build a website in UI5 and I would continue to do so.
    Maybe we need to discuss the difference between a website and a business application. I guess it is not easy to find a common understanding here, as the borderlines between several worlds have disappeared in the last years.
    Some years ago it was more or less easy to differ between:
    Native desktop applications running on a specific desktop OS
    Native mobile applications running on a specific mobile OS
    Browser-based applications running in specific browsers
    Websites, basically running on many browsers
    In the first three categories we saw business applications. 1 and 2 were selected especially when specific functions of the device and OS where needed to be accessed (for example the camera of the mobile device, the fast rendering capability of the desktop). 3 was also used for business applications but in most cases on desktop browsers.
    Today, one can develop browser-based applications that look like native applications and even can access the devices like native applications. Responsive design breaks the borderlines even more. Now, browser-based content can be rendered perfectly on a desktop browser as well as on a mobile phone and a user might even not be able to judge whether it was originally intended to be developed for the one or the other.
    So maybe there is no big difference anymore between websites and browser-based applications. But there is still a difference between browser-based applications and browser-based business applications, where additional requirements such as integration into business systems are drivers. Here I see SAPUI5 as a very cool UI technology.
    That’s just my 2 (personal) cents,
    JJ

  • Portal export/import between 9.0.2 and 9.o.3

    I am aware that you can not export/import between portal installations on different versions e.g. 3.0.9 and 9.0.2 but is it possible to do export/import between 9.0.2 and 9.0.3?

    The FAQ only states:
    <<<<Snip>>>>
    Portal Export/Import utilities will only work between portal installations that are at the same revision level. For example, Portal Import/Export will copy content successfully between two 9.0.2.x instances of Portal, but not between a 9.0.2 portal instance and a 3.0.9 portal instance.
    That said, Portal Export/Import WILL work between two portal instances that are of different "minor" revision levels. For example, Portal Export/Import will work between a 9.0.2.2.14 portal instance to a 9.0.2.2.22 portal instance, and vice versa.
    <<<</Snip>>>>

Maybe you are looking for

  • Crystal Report Engine

    We have an ASP .Net application developed using VS2008 and Crystal Report for .NET in VS2008. We display most of the reports in Crystal Report Viewer, we also print the report directly to a network printer using PrintToPrinter function. We deployed t

  • Quality of Service with WRT610N and Vonage

    I'm trying to get Quality of Service working with my WRT610N and my Vonage device.  The WRT is connected directly to my cable modem, and the Vonage device is connected to Ethernet port 1.  I've set up the Vonage's MAC address on the QoS tab to be pri

  • Please HELP!! Finals are due, and I Cant get past Kernel Error

    I forced a shutdown holding the power button and now every time I turn on the Imac I am instructed to restart it, in several different languages. This screen comes up just after the "ping" when I turn it on and after the apple logo appears. So far I

  • Loading Modules and Mounting Local Filesystems failed during boot

    Hi all, since 2-3 weeks I've had some FAIL during the boot (after having upgraded the system, I remember that there was involved an upgrade of init script probably, or something connected with the booting process). [gianluca@gianluca-laptop ~]$ dmesg

  • Select  from partition, will it work ?

    Hi, I have a partiotined TT_table: CREATE TABLE RYBATEMP.T_STAT ( ACTDATE DATE, COL_LIST, FORMAT_LIST.. TABLESPACE "RYBA_DATA" PARTITION BY RANGE ("ACTDATE" ) ( PARTITION "D_20100901" VALUES LESS THAN (TO_DATE(' 2010-09-02 00:00:00', 'SYYYY-MM-DD HH2