Dragons ! RH61 and Oracle 8.1.5 db creation

Oh dear. It seems we have found the dragons lair ...
OK, I managed to get through the install section,
in short, run the linux/install/runIns.sh script and do it with KDE.
Now what does the window manager have to do with this ?
Well, there is an explanation, but I was quite surprised that the wm could be an issue ...
The NEXT problem: Create a database.
There is a very good description at http://homepages.tig.com.au/~jmsalvo/linux/oracle8i-3.html
Well what is the source of the problem here ?
All of my efforts (so far) have resulted in the well-known "Not logged on" message.
There is a very "funny" addition to this:
Startup is done manually WITH success - but then the Not logged on appears.
But then I can't shut it down again or anything (Not logged on).
Applying the patches didn't change a thing.
WHAT IS THE SOURCE OF THIS NOT-LOGGED-ON MESSAGE AND HOW TO FIX IT ?
PLEASE STATE THE HIGHLIGHTS OF THE PROCESS.
IS IT RELATED TO DIFFERENCES BETWEEN REDHAT 6.0 AND 6.1 ?
Red Hat Linux release 6.1 (Cartman)
Kernel 2.2.12-20 on an i586
login: oracle
Last login: Wed Feb 2 20:32:34 from main
Happy Oracle environvent variables set.
[oracle@lbox oracle]$ svrmgrl
Oracle Server Manager Release 3.1.5.0.0 - Production
(c) Copyright 1997, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.5.0.2 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
SVRMGR> connect internal
Connected.
SVRMGR> startup nomount
ORACLE instance started.
ORA-01012: not logged on
SVRMGR>
Server Manager complete.
[oracle@lbox oracle]$ sqlplus system/manager
SQL*Plus: Release 8.1.5.0.0 - Production on Wed Feb 2 20:41:57 2000
(c) Copyright 1999 Oracle Corporation. All rights reserved.
ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
null

The below text is cut-n-paste from a telnet session on a freshly booted machine.
The oracle environment variables are set by /usr/local/bin/env4ora.sh
The network is local and not connected to anything. The domain name is lnx.
I want to create a database called db1
I assume the global name will be db1.lnx, and the sid db1
I have tried with dbassist to select 'custom' and 'dedicated',
I have also checked that all mts_* entries were commented out # mts_*.
The $ORACLE_HOME/rdbms/install/create directory contains a skeleton.
I have used this to try to create the db1 database,
and here is the information you requested.
I have put it in one big posting for everyone to see.
You get everything up to point 8 in the famous "3.7" paragraph.
This is really a good guide, I highly appreciate your help
Red Hat Linux release 6.1 (Cartman)
Kernel 2.2.12-20 on an i586
login: oracle
Last login: Thu Feb 3 00:46:01 from main
Happy Oracle environvent variables set.
[oracle@lbox oracle]$ hostname
lbox.lnx
[oracle@lbox oracle]$ cat /usr/local/bin/env4ora.sh
#/bin/sh
# - create group oinstall
# - create group dba
# - create user oracle default group oinstall
# - group dba contains oracle and root
# - user oracle is a member of oinstall and dba, there is no oracle group
# Very very ultra-short quick install guide:
# - As usual install must be done by the "oracle" user.
# - Have at least 128 megs of RAM, or it doesn't work.
# - The "runInstaller" script doesn't work ...
# instead go to the install/linux dir and run runIns.sh
# - Some problems with GNOME and Enlightenment.
# Use KDE or a newer version of Enlightenment.
# - Patches should be applied after installation and before creating databases.
export LD_LIBRARY_PATH=/big/ora/app/oracle/product/8.1.5/lib
export ORACLE_BASE=/big/ora/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/8.1.5
export NLS_LANG=WE8ISO8859P1
export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export ORACLE_SID=test
export PATH="$PATH:$ORACLE_HOME/bin"
echo Happy Oracle environvent variables set.
[oracle@lbox oracle]$
[oracle@lbox oracle]$ cd $ORACLE_HOME
[oracle@lbox 8.1.5]$ cd rdbms/install/create/
[oracle@lbox create]$
[oracle@lbox create]$ vi initdb1.ora
1 db_name = db1
2 instance_name = db1
3 service_names = db1.lnx
4
5 control_files = ("/big/ora/app/oracle/oradata/db1/control01.ctl", "/big/ora/app/oracle/oradata/db1/control02.ctl")
6
7 db_block_buffers = 8192
8
9 shared_pool_size = 15728640
10
11 java_pool_size = 20971520
12
13 log_checkpoint_interval = 10000
14 log_checkpoint_timeout = 1800
15
16 processes = 50
17
18 log_buffer = 163840
19
20 # audit_trail = false # if you want auditing
21 # timed_statistics = false # if you want timed statistics
22 # max_dump_file_size = 10000 # limit trace file size to 5M each
23
24 #log_archive_start = true
25 #log_archive_dest_1 = "location=?/dbs/arch"
26 #log_archive_format = %t_%s.dbf
27 # If using private rollback segments, place lines of the following
28 # form in each of your instance-specific init.ora files:
29 rollback_segments = (r01, r02, r03, r04)
30
31 # Global Naming -- enforce that a dblink has same name as the db it connects to
32 # global_names = false
33
34 # Uncomment the following line if you wish to enable the Oracle Trace product
35 # to trace server activity. This enables scheduling of server collections
36 # from the Oracle Enterprise Manager Console.
37 # Also, if the oracle_trace_collection_name parameter is non-null,
38 # every session will write to the named collection, as well as enabling you
39 # to schedule future collections from the console.
40 # oracle_trace_enable = true
41
42 # define directories to store trace and alert files
43 background_dump_dest = /big/ora/app/oracle/oradata/db1/bdump
44 core_dump_dest = /big/ora/app/oracle/oradata/db1/cdump
45 user_dump_dest =/big/ora/app/oracle/oradata/db1/udump
46
47 db_block_size = 4096
48
49 remote_login_passwordfile = exclusive
50
51 os_authent_prefix = ""
52
53 # The following parameters are needed for the Advanced Replication Option
54 #job_queue_processes = 0
55 #job_queue_interval = 60
56 #distributed_transactions = 10
57 #open_links = 4
58
59 # mts_dispatchers = "(PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)"
60 # Uncomment the following line when your listener is configured for SSL
61 # (listener.ora and sqlnet.ora)
62 # mts_dispatchers = "(PROTOCOL=TCPS)(PRE=oracle.aurora.server.SGiopServer)"
63
64 # mts_servers = 1
65 compatible = "8.1.5"
~
:q
[oracle@lbox create]$ vi db1.sh
1 DB_NAME=db1
2 DB_DIR=/big/ora/app/oracle/oradata/$DB_NAME
3 echo "Creating dirs"
4 mkdir $DB_DIR
5 mkdir $DB_DIR/pfile
6 mkdir $DB_DIR/bdump
7 mkdir $DB_DIR/cdump
8 mkdir $DB_DIR/udump
9 mkdir $DB_DIR/create
10 mkdir $DB_DIR/exp
11 mkdir $DB_DIR/adhoc
12 mkdir $DB_DIR/arch
13
14 mkdir $ORACLE_HOME/install/w_$DB_NAME
15 echo "Copy creation skeleton files. Remember to modify"
16 cp crdb1.sh $ORACLE_HOME/install/w_$DB_NAME/$DB_NAMEcrdbr1.sh
17 cp crdb2.sh $ORACLE_HOME/install/w_$DB_NAME/$DB_NAMEcrdbr2.sh
18 cp crdb3.sh $ORACLE_HOME/install/w_$DB_NAME/$DB_NAMEcrdbr3.sh
19
20 echo "Copying init$DB_NAME.ora file"
21 cp init$DB_NAME.ora $DB_DIR/pfile
22
23 echo "Creating symlink"
24 ln -s $DB_DIR/pfile/init$DB_NAME.ora $ORACLE_HOME/dbs/init$DB_NAME.ora
25
~
:q
[oracle@lbox create]$ ./db1.sh
Creating dirs
Copy creation skeleton files. Remember to modify
Copying initdb1.ora file
Creating symlink
[oracle@lbox create]$ ls /big/ora/app/oracle/oradata/db1/
adhoc arch bdump cdump create exp pfile udump
[oracle@lbox create]$ ls $ORACLE_HOME/dbs
init.ora initdb1.ora initdw.ora
[oracle@lbox create]$ cd $ORACLE_HOME/install/w_db1
[oracle@lbox w_db1]$ vi db1crdbr1.sh
1 #!/bin/sh
2 ORACLE_SID=db1
3 export ORACLE_SID
4
5 $ORACLE_HOME/bin/orapwd file=$ORACLE_HOME/dbs/orapw$ORACLE_SID password=change_on_install
6 $ORACLE_HOME/bin/svrmgrl << EOF
7 spool $ORACLE_HOME/install/crdb1.log
8 connect internal
9 startup nomount pfile = $ORACLE_HOME/dbs/initdb1.ora
10 CREATE DATABASE "db1"
11 maxdatafiles 254
12 maxinstances 8
13 maxlogfiles 32
14 character set US7ASCII
15 national character set US7ASCII
16 DATAFILE '$ORACLE_HOME/dbs/system01.dbf' SIZE 175M
17 logfile '$ORACLE_HOME/dbs/redo01.log' SIZE 4096K,
18 '$ORACLE_HOME/dbs/redo02.log' SIZE 4096K;
19 disconnect
20 spool off
21 exit
22
23
24 EOF
~
[oracle@lbox w_db1]$ pwd
/big/ora/app/oracle/product/8.1.5/install/w_db1
[oracle@lbox w_db1]$ echo $ORACLE_HOME
/big/ora/app/oracle/product/8.1.5
[oracle@lbox w_db1]$ cp db1crdbr1.sh ..
[oracle@lbox w_db1]$ cd ..
[oracle@lbox install]$
[oracle@lbox install]$
[oracle@lbox install]$ ./db1crdbr1.sh
Oracle Server Manager Release 3.1.5.0.0 - Production
(c) Copyright 1997, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.5.0.2 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
SVRMGR> SVRMGR> Connected.
SVRMGR> ORACLE instance started.
ORA-01012: not logged on
SVRMGR> 2> 3> 4> 5> 6> 7> 8> 9> CREATE DATABASE "db1"
ORA-01012: not logged on
SVRMGR> Disconnected.
SVRMGR> SVRMGR> Server Manager complete.
[oracle@lbox install]$
[oracle@lbox install]$ make sense
make: *** No rule to make target `sense'. Stop.
[oracle@lbox install]$
[oracle@lbox install]$ cd ../rdbms/log
[oracle@lbox log]$
[oracle@lbox log]$ cat alert_db1.log
Thu Feb 3 01:14:39 2000
Starting ORACLE instance (normal)
LICENSE_MAX_SESSION = 0
LICENSE_SESSIONS_WARNING = 0
LICENSE_MAX_USERS = 0
Starting up ORACLE RDBMS Version: 8.1.5.0.2.
System parameters with non-default values:
processes = 50
shared_pool_size = 15728640
java_pool_size = 20971520
control_files = ?/dbs/control01.ctl, ?/ dbs/control02.ctl
db_block_buffers = 8192
db_block_size = 2048
compatible = 8.1.0
log_buffer = 163840
log_checkpoint_interval = 10000
log_checkpoint_timeout = 1800
rollback_segments = r01, r02, r03, r04
remote_login_passwordfile= EXCLUSIVE
db_domain = lnx
distributed_transactions = 10
service_names = db1.lnx
instance_name = db1
open_links = 4
db_name = db1
os_authent_prefix =
job_queue_processes = 0
job_queue_interval = 60
PMON started with pid=2
Load Indicator not supported by OS !
DBW0 started with pid=3
LGWR started with pid=4
CKPT started with pid=5
SMON started with pid=6
RECO started with pid=7
[oracle@lbox log]$
[oracle@lbox log]$ cd /big/ora/app/oracle/oradata/
[oracle@lbox oradata]$ ls -lR db1
db1:
total 32
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 adhoc
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 arch
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:27 bdump
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 cdump
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 create
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 exp
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 pfile
drwxr-xr-x 2 oracle dba 4096 Feb 4 01:14 udump
db1/adhoc:
total 0
db1/arch:
total 0
db1/bdump:
total 8
-rw-r--r-- 1 oracle oinstall 1262 Feb 4 01:27 alert_db1.log
-rw-r----- 1 oracle oinstall 587 Feb 4 01:27 pmon_7907.trc
db1/cdump:
total 0
db1/create:
total 0
db1/exp:
total 0
db1/pfile:
total 4
-rw-r--r-- 1 oracle dba 2097 Feb 4 01:14 initdb1.ora
db1/udump:
total 0
[oracle@lbox oradata]$
null

Similar Messages

  • Select query differences between oracle 9 and oracle 8.

    Hi,
    I have a problem using the select query between oracle 7 and oracle 9i I don't have the same result :
    ex:
    With oracle7
    SQL> select 'champ1','champ2' from DUAL;
    'CHAMP 'CHAMP
    champ1 champ2
    With Oracle 9
    SQL> select 'champ1','champ2' from DUAL;
    'CHAMP1' 'CHAMP2'
    champ1 champ2
    So Can someone tell me how to solve this problem ? Is there a parameter in oracle 9 to set?
    Thanx.

    Whenever you are posting anything over internet forums like this - you should be very careful about not just posting the details which requires to solve the problem - also should be sensible about your question.
    This is not at all desired when you are posting such question. It may be because - you may not well aware of the fact.
    My suggestion is -> First Go through the basics Of SQL in general.
    Then go for any specific product like Oracle/ SQL Server/ Sybase etc.
    And, finally learn the advanced commands of that DB.
    You asked it - may be you thought the difference in output in terms of lines. But, that is not your actual output. That is the graphical display part only.
    Anyway,
    You can get the quite familier output by first type the following command ->
    set lin 310Regards.
    Satyaki De.

  • Oracle Single Sign on and Oracle Internet Directory

    Hello Gurus,
    What is the relationship between Oracle Single Sign on and Oracle Internet Directory.
    To my understanding, OID is required to install SSO.
    If OID already exist, can we just install SSO and go on integrating it to existing OID.
    Great Thanks,
    vimal jain.
    [email protected]

    Hi Tim,
    I've been working on this and could reproduce the issue with anonymous binds. A fix will be ready in 4.2.1.
    So what I really need is the password used for login to pass to the is_member call.The P101_PASSWORD item does not save state. However, you can access the value during submit processing of the login page, for example in the post authentication function of your authentication scheme. People sometimes put code in there to query the user's groups (e.g. with apex_ldap.member_of2) and save them in an application. This item value can then be used in the authorization schemes.
    Regards,
    Christian

  • Oracle Spatial and Oracle Forms

    Hi,
    Does anyone have experience with Oracle Spatial and Oracle Forms?
    I have generated a form, which is based on a view. The view uses the mdsys.sdo_relate operator. Somehow I am unable to get the form to perform (to get one record it takes over 20 minutes). While useing sql-navigator to process the same statement it seems no problem. The query that also uses the view, is then processed in 10 seconds.
    I also noticed that when text-functions like ' lower' of ' upper' are used to query the view, the query is processed within 15 seconds. If I don't use ' lower' or ' upper' it takes a long time (> 20 minutes) to process the query. Is it possible that this causes the bad performance of the form?
    On metalink I have found that forms and spatial do not cooperate because of the pl/sql version that
    forms6 uses. There is no solution presented, does anyone know of a work around?
    My configuration is:
    Oracle 8.1.7 on WIN2K @ PIII-800Mhz 256 Mb memory.
    Formsbuilder 6
    If requested I can post the queries that I have made.
    With regards,
    Gerjan Walrecht
    [email protected]
    null

    Hello Priya,
    Look into the following.
    1. Book - Pro Oracle Spatial for Oracle Database 11g by r. Kothuri, A. Godfrind, E. Beinat. This book provides a nice introduction on Oracle Spatial concepts and have examples.
    2. Look at the Oracle Spatial & Graph User Guide
    2. Book - Applying and Extending Oracle Spatial by S. Greener and S. Ravada. This book provides hands on information for advanced oracle spatial application developers. Practical guide on hands-on examples, Data models and  develop cross-vendor database solutions.
    3. This oracle spatial forum, once you understand these concepts.
    In the future consider Certification on Oracle Spatial 11g Certified Implementation Specialist.
    Best
    Navaneet

  • Oracle Streams b/w MS-Access 2007 and Oracle 10g.

    Can we set up Oracle Streams between MS-Access 2007 and Oracle 10g? Ms-Access as source and Oracle 10g as destination database. If so, can any one please give me little heads up with supported doc's or any source of info.

    Help Help....!!!

  • Limitation on SQL executing select statement from ADO and Oracle 8.1.7.1 OleDB Driver

    Hi,
    we are running a query with a big dunamic select statement from VB code using ADO command object. When Execute method is called system hangs and control won't return back to the application. it seems to be that there is some type limitation on Query string length. Please tell us if there is any?
    we are running Oracle 8.1.7 Server on Windows 200 Server and connecting from a W2K professional, ADO 2.6 and Oracle OLEDB 8.1.7.1 OLEDB Driver.
    Sample code:
    Dim rs As ADODB.Recordset
    Dim cmd As ADODB.Command
    Set cmd = New Command
    With cmd
    .CommandText = ' some text with more than 2500 characters
    .CommandType = adCmdText
    Set rs = .Execute
    End With
    when i debug using VB6 and when .Execute line is called system hangs or return a message method <<somemethod> of <<some class name>> failed error.
    Any help is appreciated.
    Thanks,
    Anil

    A stored procedure would only slow you down here if it was poorly written. I suspect you want to use the translate function. I'm cutting & pasting examples from the documentation-- a search at tahiti.oracle.com will give you all the info you'll need.
    Examples
    The following statement translates a license number. All letters 'ABC...Z' are translated to 'X' and all digits '012 . . . 9' are translated to '9':
    SELECT TRANSLATE('2KRW229',
    '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ',
    '9999999999XXXXXXXXXXXXXXXXXXXXXXXXXX') "License"
    FROM DUAL;
    License
    9XXX999
    The following statement returns a license number with the characters removed and the digits remaining:
    SELECT TRANSLATE('2KRW229',
    '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ', '0123456789')
    "Translate example"
    FROM DUAL;
    Translate example
    2229
    Also, LIKE '%<string>%' is going to be rather expensive simply because it has to compare the entire string and because it forces full table scans, rather than using indexes. You could speed this sort of query up by using interMedia Text (Oracle Text now in 9i). If you can eliminate one of the '%' options, you could also improve things.
    My guess is that your stored procedure is inefficient and that's causing the problem-- 5k rows per table should be pretty trivial.
    If you post your query over on the PL/SQL forum, there are better performance tuners than I that might have more hints for you. To get really good advice, though, you'lllikely have to get at least the execution plan for this statement and may need to do some profiling to identify the problem areas.
    Justin

  • New to XML and Oracle

    Just trying to clarify some issues as I try and learn about XML, and specifically how it integrates into the DB.
    1 - Is there a way with Oracle tools for me to get an XSD of an existing 9i relational schema? We are not currently using the XML DB, but our middleware developers would like to have an up to date XSD to use for their internal mapping.
    2 - Is there any way that I can keep that XSD up-to-date automatically, so I get a new one whenever the schema gets updated?
    3 - If I wanted to investigate storing XML docs within the DB in native XML format, I need to have an XML DB, correct? Is this DB construct maintained seperatelly from my "normal" relational schema? or are they kept in sync by Oracle?
    I know these may all be real basic questions, but as I said, I'm new to XML and Oracle. I am reading as much as I can, but there are a lot of docs out there.
    Thanks,
    Mike

    Hi
    1. On my opinion such a tool doesn't exists. Some parts can be implemented elsewhere, but not as described by you... e.g. with XSU if you specify the parameter "withschema" the XSD of the executed statement is generated. Another example is to use DBMS_METADATA to dump the data dictionary in XML (but not XSD, of course you could write your own XSLT to do this transformation...).
    2. -
    3. If you use XSD-based tables the XSD and the relational model are stored separately in the data dictionary. Therefore if you change the XSD you have to drop/create the XSD-based table... no schema evolution yet.
    Chris

  • SRM 4.0 Installation Master and Oracle Installation

    Dear Members, I am trying to install SRM 4.0 in sandbox using the SRM 4.0 Installation Master DVD. The question I have is does this installation take care of Oracle Installation also or should I install Oracle 9.2 first and then use the SRM Installation Master DVD to install the SRM. I am using SRM on Linux and Oracle.  Appreciate expert advice. Thanks in advance.
    Best Regards
    Gabriel

    I installed ORACLE 9x (only software) on Linux and also installed SAP SRM 4.0
    When I try to start the oracle db, i get the following error message..
    Trying to start ORASR2 database ...
    Thu Aug 9 21:08:39 UTC 2007
    checking required environment variables
    ORACLE_HOME  is >/oracle/SR2/920_32<
    ORACLE_SID   is >ORASR2<
    Thu Aug 9 21:08:39 UTC 2007
    check initora
    Thu Aug 9 21:08:39 UTC 2007
    check initora
    Thu Aug 9 21:08:39 UTC 2007
    starting orasrv
    /oracle/SR2/920_32/bin/orasrv missing or without set-user-ID bit. Terminating.
    ./startdb: Terminating with error code
    can someone help identify what the problem could be

  • Problem with Java 5 and Oracle 10g JDBC driver

    Hi All,
    Currently we upgrade our web application to Java 5 and Oracle 10.2 JDBC driver. And we encountered a bug, when the user entered the information through UI and data didn't store into database (Oracle 9i). The problem is that this bug is not happend so often maybe once a day and this did not happen before we upgraded to Java 5 and Oracle 10.2 JDBC driver. Does anyone encounter the same problem ? Is this Java 5 problem or Oracle JDBC driver problem ?
    Thanks,

    sounds like a database problem...
    Are you using a driver version that's supported for your database engine?
    What else did you change? We once ran into a major bug in our application that had for 5 years been masked by performance problems in our hardware and infrastructure.
    Once those were resolved the bug showed itself and caused tens of thousands of records to be erroneously inserted into our database every day.
    It's certainly NOT a problem with your JVM (if it's a decent one, like the Sun implementation).
    So it's either your database, your driver, your network (dropping packets???), or your application.
    The upgrade may just have exposed something that was already there.

  • Problem with installing Oracle UI  and Oracle SP (ouiosp220160.jar)

    Hello,
    I have downloaded the installation file for Oracle Universal Installer and Oracle Software Packager which is in the form of a jar file:
    ouiosp220160.jar.
    WhenI try to extract it, the JVM says that the jar file is a corrupt one.
    So, I downloaded it again and still it is a corrupted one.
    What to do now? Is it in the corrupt form on the site or I am missing something?
    Any other mirror site?
    Please help.
    -Sameer

    Yes use a different ORACLE_HOME's for the Database,
    The Application Server (Needs 2 Oracle Homes if you are installing it on one server) and the developer suite - I would expect to see this more on a client PC than a server but if you are trying everything out on say a windows box then that also needs its own HOME.
    Have fun.

  • Which LKM and IKM to use for Fast data loading b/w MSSQL 2005 and Oracle 11

    Hi,
    Can anybody help us to decide which LKMs and IKMs are best for data loading between MSSQL and Oracle.
    Staging Area is Oracle. We have to load around 400Million rows from MSSQL to Oracle 11g.
    Best regards,
    Muhammad

    Thanks Ayush,
    You are right and it has dumped the file very quickly; but it is giving error on sqlldr call thorugh jython. I have reaised SR with oracle to look into it further.
    thanks again and have a very nice time.
    Regards,
    Muhammad

  • Reports Requirements using R12 and Oracle 10g Reports

    Hi All,
    Looking forward to some valuable inputs to propose a technical solution in R12 using 10g Reports Developer.
    Requirements are :
    1. Report output should be in Excel Format. ( Is this possible without XML Publisher using 10g Reports only )
    2. Report Parameters to have multi selection criteria. ( Is this possible in 10g Reports and Oracle Apps, Report Manager responsibility ?)
    Regards,
    Anand

    >
    1. Report output should be in Excel Format. ( Is this possible without XML Publisher using 10g Reports only )
    >
    Yes, Reports can create output in Excel - but XML Publisher offers better and easier options.
    >
    2. Report Parameters to have multi selection criteria. ...
    >
    Pl explain what you mean by multi selection criteria.
    HTH
    Srini

  • Crystal Report and Oracle SDO_GEOMETRY

    Hi,
    <br />
    <br />
    I'm using Crystal Reports for Eclipse version 2.0.4.r825 with Eclipse 3.5 and Oracle 11g as database. I configured the database connection using ojdbc14.jar. Some of the tables i want to use in the report contains columns using the SDO_GEOMETRY data type and if i try to drag this table in the data tab of the report i get the following "Unexpected ValueType" error:
    <br />
    <br />
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Could not Add Object.
    Unexpected ValueType: ValueType=[255]---- Error code:-2147215362 Error code name:unknownError
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(ReportSDKException.java:65)
         at com.businessobjects.crystalreports.designer.core.commands.ReportCommand.throwExecFailure(ReportCommand.java:253)
         at com.businessobjects.crystalreports.designer.core.commands.ReportCommand.internalDoCommand(ReportCommand.java:126)
         at com.businessobjects.crystalreports.designer.core.commands.ReportCommand.execute(ReportCommand.java:237)
         at com.businessobjects.crystalreports.designer.uibase.gef.commands.CoreCommand.execute(CoreCommand.java:70)
         at com.businessobjects.crystalreports.designer.dseintegration.DSEDropHandler.drop(DSEDropHandler.java:114)
         at org.eclipse.jface.util.DelegatingDropAdapter$3.run(DelegatingDropAdapter.java:211)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
         at org.eclipse.core.runtime.Platform.run(Platform.java:888)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
         at org.eclipse.jface.util.DelegatingDropAdapter.drop(DelegatingDropAdapter.java:209)
         at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:90)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012)
         at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:770)
         at org.eclipse.swt.dnd.DropTarget.Drop(DropTarget.java:456)
         at org.eclipse.swt.dnd.DropTarget$3.method6(DropTarget.java:258)
         at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:119)
         at org.eclipse.swt.internal.ole.win32.COM.DoDragDrop(Native Method)
         at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:363)
         at org.eclipse.swt.dnd.DragSource.access$0(DragSource.java:289)
         at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:172)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3880)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3473)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
         at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1311)
    Caused by: com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected ValueType: ValueType=[255]---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:741)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
    <br />
    <br />
    I tried the same with the Crystal Reports 2008 trial version and i'm having the same problem.
    <br />
    <br />
    I don't wanna use the geometry column in my report but because of this error i can't use the whole table. Is there a way to avoid this error and still use the other columns of the table. Or maybe there is another way to connect to an Oracle database which can handle this special data type.
    <br />
    <br />
    Thanks in advance,
    <br />
    <br />
    Jens Keller

    Hi Jens,
    Views would work also as you noted.
    No, if DB manufacturers change/update their Servers/clients they need to follow ANSII 92 standards. If they don't return the correct data type then CR will not "hack" our drivers to fix their issues. We did that for years and was a code nightmare, when they got around to fixing the problem it broke CR again. We decided to follow the standards, it may be our issue sometimes but in this case unique data types typically are not supported by CR. If you want support and it's not a client issue then add your request to the Enhancement Request2 post.
    So yes in your case it would make it easier but for others they'll be asking why CR doesn't show all fields. Same reason.... not a CR issue.
    Thanks agian
    Don

  • HT202159 I downloaded Dragon Express and now it won't open.  It says it is INSTALLED but it won't open when clicked.  Tried to trash it and start over but won't let me trash because it says it is open.  But it isn't!  Called mac help and they can't help e

    I downloaded Dragon Express and think that it did not completely complete the download.  However, it says that it has been installed and my account has been charged 50.00.  However, when I click on the icon, it will not open.  I have tried everything from restarting, trashing the app, but it continues to tell me that I cna't trash the app because it is open.  I called apple support and they worked with me for about 30 minutes until they finally told me that the call had to end regardless of the fact that after all of their efforts, the problem was not resolved.  He gave me a link to get a refund and said it was easy to navigate however, it led me nowhere.  So now I am stuck with a worthless app, that does not work and a 50.00 bill to pay because I can't get support or link support to get a refund and even if I could get a refund I still have the Dragon express on my computer that does not work!!!  HELP!  I don't know how the app can be open when even support could not figure it out!  When I restart, the finder window opens where it never did before.

    Well first of all this is a public forum, so keep that in mind. The users here generally can not look up your case numbers.
    If AppleCare didn't work out for you, I believe your next step is
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html
    Unfortunately, their case indexing is on a different database, and they will not be able to look up your case number either. However, their support is free, and despite it may take a few bounces of emails back and forth, there is a decent chance they may be able to get a solution.
    Or... you can still try to shoot the **** with us here, which is Ok as well. But you'll have to keep in mind we can't look up your case numbers.
    By the way, the link for a refund, I think is for the same link I just gave you, so on second though, mabye it's best to just go there.

  • BAM and Oracle application server 10.1.3???

    Hi,
    I would like to understand more about integration between BAM and OAS.
    I remember I read a document that stated that BAM was included (or was integrated) as part of OAS 10.1.3, however I installed it and still don;t see how it is integrating with OAS.
    Also, in one of the Tutorials it mentions this:
    "Note –if you are using Oracle Application Server with opmn process, the following
    additional files are required in the above path:
    C:\OracleBAM\OC4J\opmn\lib\optic.jar
    Copy the entire Application Server “opmn” directory to c:\oraclebam"
    So... are there any additional steps for the OAS and BAM integration?
    I am still learning BAM but mi goal is install it as part of EBS(order Manegemnet)-BPEL-OTM (oracle Transportation) integration installation I currently have.
    If it can be integrated can it be done using iAS 10.1.2.0.2 instead?
    Thanks

    Its recommended that you should use same versions of OAS and Oracle BAM.
    For integration between OAS components and BAM you can check BAM tech notes (http://www.oracle.com/technology/products/integration/bam/10.1.3/htdocs/1013_support.html#technotes)
    Hoping it will help you.

Maybe you are looking for

  • How to handle multiple transaction in session method.

    hi experts. please tell me how to<b> write code for multiple transaction</b> in session methods. Quest.  -de<b>another question is exactly which method we have to follow , how to</b>decide. what r the conditions for selecting which method is suitable

  • UPDATE Statement executing for whole table even when WHERE Clause is presen

    Hi Friends, I have a problem in a stored procedure where i have written an update statement with a where clause. At a time only one row should get updated depending upon unique identifier in where clause. But whats happening is that Update statement

  • Syntax error [nQSError: 27002] Near NA : Syntax error [nQSError: 26012] .

    All, I would like to cache few dashboard SQL's manually. For that I am seeding this logical SQL to BI. I got this SQL from the Advanced tab of analytics. Call SASeedQuery('SELECT s_0, s_1, s_2, s_3, s_4, s_5, s_6, s_7, s_8, s_9, s_10, s_11, s_12 FROM

  • Why do we get a NoSuchMeth error

    Hi, I've created a java file and compiled it.When i try to execute it iam getting the error NoSuchMethError (main).I've also set the classpath. Why is it happening? Could anyone give me the solution Thanks in advance, Regards, Vijay

  • Is changing to a language 100% identical to a install in that language

    Imagine these two conditions : 1) I perform a fresh install of the Mac OS in the German Language, and afterwards I change the language into French in the system preferences AND 2) I perform a fresh installation in French (so I choose this language du