Help install Oracle 10gr2  Assistant Configuration

I try to install oracle 10g r2 on Windows xp
When i arrive to "Assistant Configuration de base de donnees" i have some problems
OUI starts to copy files into database (phase create clone database) at 2% i have a pop-up with error message :
ORA-00604 error occurred at recursive SQL level 1
ORA-02248 invalid option for ALTER SESSION
if i ignore at 12% I see error message:
ORA-01012 not logged on
At 62% OUI can't create and start an Oracle instance
Is some body else have see the same problem?
How can i do to finish my installation?
It is possible to continue with or without OUI?
Regards

I try to install oracle 10g r2 on Windows xp
When i arrive to "Assistant Configuration de base de donnees" i have some problems
OUI starts to copy files into database (phase create clone database) at 2% i have a pop-up with error message :
ORA-00604 error occurred at recursive SQL level 1
ORA-02248 invalid option for ALTER SESSION
if i ignore at 12% I see error message:
ORA-01012 not logged on
At 62% OUI can't create and start an Oracle instance
Is some body else have see the same problem?
How can i do to finish my installation?
It is possible to continue with or without OUI?
Regards

Similar Messages

  • Installing ORACLE 10gr2 on windows 7 untimate 64bit processer

    Hi All,
    I was installing oracle 10gr2 on windows 7, untimate 64bit processor but giving me some abnormal termination of
    installation
    "unknown error"
    Please help me on this..
    Rajini.V

    Hi,
    Thanks for the reply.
    I have downloaded from the following link
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
    i tried these two S/w's
    Oracle Database 10g Release 2 (10.2.0.4) for Microsoft Windows Vista x64, Microsoft Windows Server 2008 R2 x64, Windows 7 x64
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista, Windows Server 2008, Windows 7
    But they are not getting installed, Can you please suggest me a link where i can download 10.2.0.5.
    Thnanks,
    Rajini.V

  • Installing oracle 10gr2 and applying 10.2.0.3 patchset on sun sparc 64bit

    dear all,
    im planning to install oracle 10gr2 on sun solaris sparc(64bit).
    kindly provide the steps specific to configuring kernal parameters.
    details:
    On Solaris 10
    sparc 64-bit
    uname -r
    5.10
    provide the steps to configure the kernal parameters with respect to my configuration.

    hi rajesh,
    thanks for your quick reply. but in sun solaris 10 do we need to change the entries in /etc/system.
    as per
    Oracle® Database
    Installation Guide
    10g Release 2 (10.2) for Solaris Operating System (SPARC
    64-Bit)
    B15690-02
    November 2005
    Note: In Solaris 10, you are not required to make changes to the
    /etc/system file to implement the System V TPC. Solaris 10 uses
    the resource control facility for its implementation.
    do we need to chanage the values as specified or how to proceed.?
    im confused in these with respect solaris 10.

  • Help on Oracle streams 11g configuration

    Hi Streams experts
    Can you please validate the following creation process steps ?
    What is need to have streams doing is a one way replication of the AR
    schema from a database to another database. Both DML and DDL shall do
    the replication of the data.
    Help on Oracle streams 11g configuration. I would also need your help
    on the maintenance steps, controls and procedures
    2 databases
    1 src as source database
    1 dst as destination database
    replication type 1 way of the entire schema FaeterBR
    Step 1. Set all databases in archivelog mode.
    Step 2. Change initialization parameters for Streams. The Streams pool
    size and NLS_DATE_FORMAT require a restart of the instance.
    SQL> alter system set global_names=true scope=both;
    SQL> alter system set undo_retention=3600 scope=both;
    SQL> alter system set job_queue_processes=4 scope=both;
    SQL> alter system set streams_pool_size= 20m scope=spfile;
    SQL> alter system set NLS_DATE_FORMAT=
    'YYYY-MM-DD HH24:MI:SS' scope=spfile;
    SQL> shutdown immediate;
    SQL> startup
    Step 3. Create Streams administrators on the src and dst databases,
    and grant required roles and privileges. Create default tablespaces so
    that they are not using SYSTEM.
    ---at the src
    SQL> create tablespace streamsdm datafile
    '/u01/product/oracle/oradata/orcl/strepadm01.dbf' size 100m;
    ---at the replica:
    SQL> create tablespace streamsdm datafile
    ---at both sites:
    '/u02/oracle/oradata/str10/strepadm01.dbf' size 100m;
    SQL> create user streams_adm
    identified by streams_adm
    default tablespace strepadm01
    temporary tablespace temp;
    SQL> grant connect, resource, dba, aq_administrator_role to
    streams_adm;
    SQL> BEGIN
    DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE (
    grantee => 'streams_adm',
    grant_privileges => true);
    END;
    Step 4. Configure the tnsnames.ora at each site so that a connection
    can be made to the other database.
    Step 5. With the tnsnames.ora squared away, create a database link for
    the streams_adm user at both SRC and DST. With the init parameter
    global_name set to True, the db_link name must be the same as the
    global_name of the database you are connecting to. Use a SELECT from
    the table global_name at each site to determine the global name.
    SQL> select * from global_name;
    SQL> connect streams_adm/streams_adm@SRC
    SQL> create database link DST
    connect to streams_adm identified by streams_adm
    using 'DST';
    SQL> select sysdate from dual@DST;
    SLQ> connect streams_adm/streams_adm@DST
    SQL> create database link SRC
    connect to stream_admin identified by streams_adm
    using 'SRC';
    SQL> select sysdate from dual@SRC;
    Step 6. Control what schema shall be replicated
    FaeterBR is the schema to be replicated
    Step 7. Add supplemental logging to the FaeterBR schema on all the
    tables?
    SQL> Alter table FaeterBR.tb1 add supplemental log data
    (ALL) columns;
    SQL> alter table FaeterBR.tb2 add supplemental log data
    (ALL) columns;
    etc...
    Step 8. Create Streams queues at the primary and replica database.
    ---at SRC (primary):
    SQL> connect stream_admin/stream_admin@ORCL
    SQL> BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'streams_adm.FaeterBR_src_queue_table',
    queue_name => 'streams_adm.FaeterBR_src__queue');
    END;
    ---At DST (replica):
    SQL> connect stream_admin/stream_admin@STR10
    SQL> BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'stream_admin.FaeterBR_dst_queue_table',
    queue_name => 'stream_admin.FaeterBR_dst_queue');
    END;
    Step 9. Create the capture process on the source database (SRC).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name =>'FaeterBR',
    streams_type =>'capture',
    streams_name =>'FaeterBR_src_capture',
    queue_name =>'FaeterBR_src_queue',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database => NULL,
    inclusion_rule => true);
    END;
    Step 10. Instantiate the FaeterBR schema at DST. by doing export
    import : Can I use now datapump to do that ?
    ---AT SRC:
    exp system/superman file=FaeterBR.dmp log=FaeterBR.log
    object_consistent=y owner=FaeterBR
    ---AT DST:
    ---Create FaeterBR tablespaces and user:
    create tablespace FaeterBR_datafile
    '/u02/oracle/oradata/str10/FaeterBR_01.dbf' size 100G;
    create tablespace ws_app_idx datafile
    '/u02/oracle/oradata/str10/FaeterBR_01.dbf' size 100G;
    create user FaeterBR identified by FaeterBR_
    default tablespace FaeterBR_
    temporary tablespace temp;
    grant connect, resource to FaeterBR;
    imp system/123db file=FaeterBR_.dmp log=FaeterBR.log fromuser=FaeterBR
    touser=FaeterBR streams_instantiation=y
    Step 11. Create a propagation job at the source database (SRC).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_PROPAGATION_RULES(
    schema_name =>'FaeterBR',
    streams_name =>'FaeterBR_src_propagation',
    source_queue_name =>'stream_admin.FaeterBR_src_queue',
    destination_queue_name=>'stream_admin.FaeterBR_dst_queue@dst',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database =>'SRC',
    inclusion_rule =>true);
    END;
    Step 12. Create an apply process at the destination database (DST).
    SQL> BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name =>'FaeterBR',
    streams_type =>'apply',
    streams_name =>'FaeterBR_Dst_apply',
    queue_name =>'FaeterBR_dst_queue',
    include_dml =>true,
    include_ddl =>true,
    include_tagged_lcr =>false,
    source_database =>'SRC',
    inclusion_rule =>true);
    END;
    Step 13. Create substitution key columns for äll the tables that
    haven't a primary key of the FaeterBR schema on DST
    The column combination must provide a unique value for Streams.
    SQL> BEGIN
    DBMS_APPLY_ADM.SET_KEY_COLUMNS(
    object_name =>'FaeterBR.tb2',
    column_list =>'id1,names,toys,vendor');
    END;
    Step 14. Configure conflict resolution at the replication db (DST).
    Any easier method applicable the schema?
    DECLARE
    cols DBMS_UTILITY.NAME_ARRAY;
    BEGIN
    cols(1) := 'id';
    cols(2) := 'names';
    cols(3) := 'toys';
    cols(4) := 'vendor';
    DBMS_APPLY_ADM.SET_UPDATE_CONFLICT_HANDLER(
    object_name =>'FaeterBR.tb2',
    method_name =>'OVERWRITE',
    resolution_column=>'FaeterBR',
    column_list =>cols);
    END;
    Step 15. Enable the capture process on the source database (SRC).
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name => 'FaeterBR_src_capture');
    END;
    Step 16. Enable the apply process on the replication database (DST).
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name => 'FaeterBR_DST_apply');
    END;
    Step 17. Test streams propagation of rows from source (src) to
    replication (DST).
    AT ORCL:
    insert into FaeterBR.tb2 values (
    31000, 'BAMSE', 'DR', 'DR Lejetoej');
    AT STR10:
    connect FaeterBR/FaeterBR
    select * from FaeterBR.tb2 where vendor= 'DR Lejetoej';
    Any other test that can be made?

    Check the metalink doc 301431.1 and validate
    How To Setup One-Way SCHEMA Level Streams Replication [ID 301431.1]
    Oracle Server Enterprise Edition - Version: 10.1.0.2 to 11.1.0.6
    Cheers.

  • Got an error while installing oracle 10gR2 on RHEL 4

    Hi Everybody,
    After running ./runInstaller while installing oracle 10gR2 on RHEL4 ,i got an error message showing below can anyone guide me how can i proceed furthur?
    As Follows:-
    [oracle@localhost database]$ ./runInstaller Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-10-29_09-37-34PM. Please wait ...[oracle@localhost database]$ Xlib: connection to ":0.0" refused by server
    Xlib: No protocol specified
    Exception in thread "main" java.lang.InternalError: Can't connect to X11 window server using ':0.0' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
    at sun.awt.X11GraphicsEnvironment.<clinit>(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(Unknown Source)
    at java.awt.Window.init(Unknown Source)
    at java.awt.Window.<init>(Unknown Source)
    at java.awt.Frame.<init>(Unknown Source)
    at oracle.ewt.popup.PopupFrame.<init>(Unknown Source)
    at oracle.ewt.lwAWT.BufferedFrame.<init>(Unknown Source)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.<init>(OiocOneClickInstaller.java:378)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:2091)
    [oracle@localhost database]$ ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-10-29_09-37-54PM. Please wait ...[oracle@localhost database]$ Xlib: connection to ":0.0" refused by server
    Xlib: No protocol specified
    Exception in thread "main" java.lang.InternalError: Can't connect to X11 window server using ':0.0' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
    at sun.awt.X11GraphicsEnvironment.<clinit>(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(Unknown Source)
    at java.awt.Window.init(Unknown Source)
    at java.awt.Window.<init>(Unknown Source)
    at java.awt.Frame.<init>(Unknown Source)
    at oracle.ewt.popup.PopupFrame.<init>(Unknown Source)
    at oracle.ewt.lwAWT.BufferedFrame.<init>(Unknown Source)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.<init>(OiocOneClickInstaller.java:378)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:2091)

    Hi,
    You got these errors because runInstaller can not start the GUI. There are 2 solutions, you can choose one:
    1. logout Gnome/Kde, login as oracle user, and run runInstaller again.
    2.open a new root terminal,
    a) run "xhost +" as root.
    b) run "su - oracle" switch to oracle
    c) run "export DISPLAY=:0.0"
    d) then run "./runInstaller" again.
    cheers.
    Ice

  • Install Oracle 10gR2 on Windows x64

    Is this possible to install Oracle 10gR2 on Windows 2008 x64 ?
    I though that there aren't any difference between 2003 and 2008, but during reading this presentation:
    http://www28.cplan.com/cbo_export/PS_S291788_291788_176-1_FIN_v2.pdf (login: cboracle pass: oraclec6) I saw that installation on Windows 2008 is "PLANNED"?! Can someone explain more?

    tutus wrote:
    So what thas mean planned?You'd have to ask Christian Shay (apparent author of the document) but given that the document is nearly two years old and 10g is now entering 'sustaining' support without having been certified on Win 2008, I'd guess it means their "plans" changed.

  • How to install oracle 10gR2 datamining

    how to install oracle 10gR2 datamining ??????

    its very simple
    step 1: install u r oracle database with data warehousing , data mining feature.
    step 2: download the s/w of data miner from oracle website
    step 3: Create user in oracle dtabase with data mining privilages
    step 4: run odminer file from the data miner folder which u have downloaded from oracle site
    step 6:give the user /password/sid/host/port no u should know all this , are copy sid name while ur installing database.
    step 7: give the path of sqlload.exe in data miner TOOLs==>preferance file for importing the data from external databases
    thts it u are able 2 work with data miner

  • Problems Installing Oracle 10GR2 & kernel parameters

    Hi there,
    I'm trying to install Oracle 10G on a new Solaris10 machine. After extensivley reading the oracle install guide and proceeding my install failed with an out of memory error.
    Ive read the posts regarding many similar problems and to set the kernel parameters in /etc/system. My question for the experts is:
    1). Is there a problem with the oracle install scripts and it not recognising the new features in Solaris?
    2). Is there a more deep-rooted problem with oracle and solaris?
    ANY help/advice would be much appreciated. There are hundreds of posts like this on the web and surely someone must have the answer? I mean surely oracle did not hack /etc/system to get their install to work did they??
    Nibs

    It IS a terrible experince to install oracle 10g on solaris 10. Tell us your system configuration and your installation step. For I have installed three times and each time a different problem. Suggest you go to oracle forum to get more help.

  • ORA-27102: out of memory. Faild to install oracle 10gR2 on Solaris 10

    Hi, I want to install oracle on my solaris machine. I have 2.5G RAM and more than 5G swap file. But the ORA-27102: out of memory error occurred at installing the Oracle Database Configuration Assistant step(Copying database files Creating and starting Oracle instance).
    The only warnings bellow:
    Checking kernel parameters
    Checking for BIT_SIZE=64; found BIT_SIZE=64. Passed
    Checking for shmsys:shminfo_shmmax=4294967295; found no entry. Failed <<<<
    Checking for shmsys:shminfo_shmmni=100; found no entry. Failed <<<<
    Checking for semsys:seminfo_semmni=100; found no entry. Failed <<<<
    Checking for semsys:seminfo_semmsl=256; found no entry. Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    What's the reason and how may I resolve it?
    Thanks!

    I set some kernel parameters like: set shmsys:shminfo_shmmax=4294967295 and so on. Restart the computer and run dbca+ and configure in advance mode. There's a stage require the size of flash_recover_segment of which the default size number is 2048M. WOW, out of memory on my pc of course.
    So I think it's the parameter value during the installation progress bring on the ORA-27102 problem. However, during the first installation, there's no prompt for me to enter the parameter; or I didn't see.

  • JRE Error : while Install oracle 10gR2 on Windows Server 2003

    Hello,
    I am trying to install a Oracle 10gR2 on windows server 2003.
    I have unziped the files and when I run the oui.exe it gives the below error:
    cannot find any matches for wildcard specification "../stage/components/oracle.swd.jre/1.5.0.0./1/DataFiles/*.jar
    Error : JRE missing in Scratch Path
    I tried changing the oraparmaini file but it did not allow to make any changes.
    Not sure if its looking for any particular java files.
    What should i edit ,to specify the java location.
    Thanks

    What exactly did you unzip? This error occurs if there are several zip-files extracted to different target locations. But - if I remember correctly - 10gR2 database is only one zip-file, so you should not face this issue. JRE for OUI is part of the downloaded software,so you don't need to specify a location for JRE, OUI knows where to find this.
    Werner

  • Phyical memory error installing oracle 10gR2 on redhatenterprise linux 4 U3

    can anyone help me out of this problem
    im having 512MB of RAM which is enough for installing oracle 10g on linux but still after runing the installer when it starts checking requirments for oracle it says that the expect physical memory is 920 but the acual result is 500
    how i would be able to get out of this problem????

    You have to bypass system prerequisites checking (at your own risk) :
    $ ./runInstaller -ignoresysprereqs

  • Error installing Oracle 10gR2 on Solaris Express Developer Edition

    Hi
    I'm trying to install Oracle Db 10gR2 on Solaris Express Developer Edition 1/08 for x86 but it fails with the following link error:
    INFO: /export/home/u01/app/oracle/oracle/product/10.2.0/db_1/bin/genclntsh
    INFO: ld: fatal:
    INFO: symbol `ntcontab' in file /export/home/u01/app/oracle/oracle/product/10.2.0/db_1/lib/libn10.a(ntcontab.o): section [3] .data: size 0x60: symbol (address 0, size 0x70) lies outside of containing section
    INFO: ld:
    INFO: fatal:
    INFO: File processing errors. No output written to
    INFO: /export/home/u01/app/oracle/oracle/product/10.2.0/db_1/lib/libclntsh.so.10.1
    INFO:
    INFO: genclntsh: Failed to link libclntsh.so.10.1
    INFO: *** Error code 1
    INFO: make: Fatal error: Command failed for target `client_sharedlib'
    Any ideas would be appreciated.
    Thanks

    If your version of Solaris is not supported, see the support matrix, you are on your own. This is likely the case.

  • Unable to install Oracle Migration Assistant for Access

    I download Oracle Migration Assistant for Microsoft Access from
    the web but I can't install it on windows NT. Oracle Installer
    want a file nt.prd but I have a file product.jar. What is the
    solution?
    Thanks.
    Sylvain Denis
    null

    Hi
    I have the same problem, but I'm using oracle 8.0.5 client on NT
    and don't have the Universal Installer just the regular
    Installer.
    So the installer don't recognize the products.jar file.
    Is it possible to download the Universal installer ?
    What's the solution ?
    Oracle Migration Workbench Team wrote:
    : When you bring up Oracle Universal Installer on the
    : second dialog box it will ask you to enter the full
    : path to the products you wish to install. You can enter
    : the name and full location of the products.jar there.
    : Regards,
    : Marie
    : Sylvain Denis (guest) wrote:
    : : I download Oracle Migration Assistant for Microsoft Access
    from
    : : the web but I can't install it on windows NT. Oracle
    Installer
    : : want a file nt.prd but I have a file product.jar. What is
    the
    : : solution?
    : : Thanks.
    : : Sylvain Denis
    : Oracle Technology Network
    : http://technet.oracle.com
    null

  • I NEED HELP INSTALLING ORACLE ON VISTA

    PLEASE I NEED ASSISTANCE IN INSTALLING ORACLE 10g ON MY VISTA HOME PREMIUM 32BiT. IT KEEPS ON GOING OFF WHEN I START INSTALLING AFTER INSTALLING THE INSTANCE ON MY C:// DRIVE. IT DOES NOT COMPLETE THE INSTALLATION. APART FROM THAT WHEN I INSTALLED IT THE FIRST TIME AFTER MANY TRIAL, I HAD SECURITY ISSUE. USING SQL AND TRYING TO LOG ON AS SYS IT KEEP ON GIVING ME INSUFFICIENT PRIVILEDGE. SO I CANNOT REALLY SHUT DOWN ON START UP THE DATABASE AS A SYS.

    user10880070 wrote:
    PLEASE I NEED ASSISTANCE IN INSTALLING ORACLE 10g ON MY VISTA HOME PREMIUM 32BiT. IT KEEPS ON GOING OFF WHEN I START INSTALLING AFTER INSTALLING THE INSTANCE ON MY C:// DRIVE. IT DOES NOT COMPLETE THE INSTALLATION. APART FROM THAT WHEN I INSTALLED IT THE FIRST TIME AFTER MANY TRIAL, I HAD SECURITY ISSUE. USING SQL AND TRYING TO LOG ON AS SYS IT KEEP ON GIVING ME INSUFFICIENT PRIVILEDGE. SO I CANNOT REALLY SHUT DOWN ON START UP THE DATABASE AS A SYS.First, you need assistance locating and toggling off your caps lock key BECAUSE WHEN YOU TYPE IN ALL CAPS IT LOOKS LIKE YOU ARE SHOUTING!!!!
    Second, if you got a message about 'insufficient privilege' when trying to log on to a database, you would most likely have a working database to have even determined 'insufficient privilege'. So the last thing you want to do is keep trying to re-install.
    Tell us exactly how you tried to connect when you got th 'insufficient privilege' and the exact, full error message returned.

  • Need help installing oracle 8.1.7 on RH 8.0

    I'm a newbie to linux red hat 8.0
    and I'm trying to install oracle 8.1.7 on red hat 8.0
    I keep getting all these error message and half the instructions i read i cannot find thoughts files that need to be modified.
    Can someone please point me into the right direction.
    Basically instructions that a dummy can follow been new to Olin in all.
    Regards KARNUN

    NI don't believe this is th issue.
    The system just hangs when trying to run the installer. I think the problem is due to the Pentium 4 processor (like the Microsoft bug where you need copy the whole installation to disc, rename one of the .dll files and install from the staging area just created).
    Any advice would be greatly appreciated.

Maybe you are looking for

  • How does pixelgrabber store the pixels?

    i used pixelgrabber like so in an applet Image ball = getImage(getCodeBase(), "bball.gif"); int w = ball.getWidth(this); int h = ball.getHeight(this); int[] pixels = new int[w * h]; PixelGrabber pg=new PixelGrabber(ball,0,0,w,h,pixels,0,w); try{ pg.g

  • Reading request using ServletRequest.getInputStream() and getParameter()

    Hi, I have following problem: I have to read request using getInputStream()-method, because there might be an attachment in the form. Problem is that I have to read same request using ServletRequest.getParameter()-method. As it is said in API-documen

  • I think I broke my photoshop

    I don't know what I did, but photoshop now says that abr is an unknown file format. My brushes thumbnail use to be what looked like a little greenish brown paint brush. now the thumbnail is the photoshop feathers. I know it has something to do with w

  • Cash Journal - Document Number and Internal Document number

    Dear all, In Cash Journal, do you know the different between these 2 fields: Document Number (ISCJ_E_POSTINGS-D_POSTING_NUMB) and Internal Document Number (ISCJ_E_POSTINGS-POSTING_NUMBER) ? How we can handle it ? Thank you very much, Best regards, Sy

  • Found a BUG picture shows in the background, an underlay image remains glued to the screen

    the picture is showing a youtube video remaining in the backround of all my pages. email, etc... everywhere except the browser itself. I choose the alarm screen to show you this since it has less kin text obscuring the image. you can scroll left righ