RE: Oracle Data Guard

2003-12-09 Thread Kitty Luo
), will not run
 that
   fast
 anymore.
 In logical standby, I think there's no such
 requirement, but I don't
 
=== message truncated === 


BT Yahoo! Broadband - Save £80 when you order online today. Hurry! Offer ends 21st 
December 2003. The way the internet was meant to be. 
http://uk.rd.yahoo.com/evt=21064/*http://btyahoo.yahoo.co.uk
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: =?iso-8859-1?q?Nalla=20Ravi?=
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: LF and CR (chr(10)||chr(13)) problem

2003-11-14 Thread Kitty Luo
Joze,

It's not that simply. I already tried all the possible combination: chr(13)||chr(10) , 
chr(10)||chr(13),  chr(13) , chr(10)||chr(10)...

Thanks for your input anyway.

Regards,
Kitty
-Original Message-
Sent: Friday, November 14, 2003 6:09 AM
To: Multiple recipients of list ORACLE-L


The solution is simple. The correct sequence of characters is not  
chr(10)||chr(13)  but rather chr(13)||chr(10). This is obviously changed 
by notepad.

regards, Joze

-Original Message-
Sent: Friday, November 14, 2003 5:59 AM
To: Multiple recipients of list ORACLE-L



Hi,

Currently I am working on a project that requires me to transfer 
Customer Master Record  data into SAP R/3 system from my oracle 
database (9.2.0.4 running on Solaris 5.9). The text file (contains LF 
and CR) generated by PLSQL or Oracle reporter builder could not be 
loaded into the SAP database (running on the same version of oracle 
database on W2K). It breaks on the CR. However, when I open the text 
file by notepad, do nothing, just simply save the file, re-run the data 
load, then everything works fine. Does anyone know anything about this? 
Please help.

Thanks in advance.

Kitty Luo
Oracle DBA, OCP
Onlane Inc.
www.onlane.com
[EMAIL PROTECTED]
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Joze Senegacnik
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: LF and CR (chr(10)||chr(13)) problem

2003-11-14 Thread Kitty Luo
Peter,

Thanks for your input.

You misunderstood the problem. The point is the SAP needs that LF and CR (chr(10) and 
chr(13)).

Of course, I used a hex editor to look at it, they are OK (0A and 0D). That's why it 
is frustrate.

Anybody who had a similar problem before, please help me.

Thanks,
Kitty

-Original Message-
Sent: Friday, November 14, 2003 7:20 AM
To: Multiple recipients of list ORACLE-L


Strip out the chr(10) and chr(13) using 

  update tname set field = replace(field,chr(13),' ')
  where instr(column_name,chr(13))  0 having count(*)  0;'

BUT check whether you want to replace your chr(10) and chr(13) with a space(
' ') or nothing ('').
Use the above 'where' clause in a select to look for these non-printers
first.

Oh yes - don't judge data contents by what Notepad might show you. Use a hex
editor (or dump) if you really want to check.

peter
edinburgh


 -Original Message-
 From: Kitty Luo [mailto:[EMAIL PROTECTED]
 Sent: Friday, November 14, 2003 4:59 AM
 To: Multiple recipients of list ORACLE-L
 Subject: LF and CR (chr(10)||chr(13)) problem
 
 
 
 Hi,
 
 Currently I am working on a project that requires me to 
 transfer Customer Master Record  data into SAP R/3 system 
 from my oracle database (9.2.0.4 running on Solaris 5.9). The 
 text file (contains LF and CR) generated by PLSQL or Oracle 
 reporter builder could not be loaded into the SAP database 
 (running on the same version of oracle database on W2K). It 
 breaks on the CR. However, when I open the text file by 
 notepad, do nothing, just simply save the file, re-run the 
 data load, then everything works fine. Does anyone know 
 anything about this? Please help.
 
 Thanks in advance.
 
 Kitty Luo
 Oracle DBA, OCP
 Onlane Inc.
 www.onlane.com
 [EMAIL PROTECTED]
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 -- 
 Author: Kitty Luo
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 


*
This  e-mail  message,  and  any  files  transmitted  with  it, are
confidential  and intended  solely for the  use of the  addressee. If
this message was not addressed to  you, you have received it in error
and any  copying,  distribution  or  other use  of any part  of it is
strictly prohibited. Any views or opinions presented are solely those
of the sender and do not necessarily represent  those of the British
Geological  Survey. The  security of e-mail  communication  cannot be
guaranteed and the BGS accepts no liability  for claims arising as a
result of the use of this medium to  transmit messages from or to the
BGS. .http://www.bgs.ac.uk
*

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Robson, Peter
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: LF and CR (chr(10)||chr(13)) problem

2003-11-14 Thread Kitty Luo
The size do differ between two files. 

I attached both files. The problem is  between the end of line2 /  and  the begin of 
line3 2 in the customer.txt.

Thanks,
Kitty

-Original Message-
Sent: Friday, November 14, 2003 9:09 AM
To: Multiple recipients of list ORACLE-L


Kitty,

when the file is written by pl/sql note its size. Then open and save in notepad and 
note its size. If both sizes are different, you know there is a CR/LF problem, else 
problems is somewhere else.

Raj

Rajendra dot Jamadagni at nospamespn dot com
All Views expressed in this email are strictly personal.
QOTD: Any clod can have facts, having an opinion is an art !


-Original Message-
Sent: Friday, November 14, 2003 8:54 AM
To: Multiple recipients of list ORACLE-L


Joze,

It's not that simply. I already tried all the possible combination: chr(13)||chr(10) , 
chr(10)||chr(13),  chr(13) , chr(10)||chr(10)...

Thanks for your input anyway.

Regards,
Kitty
-Original Message-
Sent: Friday, November 14, 2003 6:09 AM
To: Multiple recipients of list ORACLE-L


The solution is simple. The correct sequence of characters is not  
chr(10)||chr(13)  but rather chr(13)||chr(10). This is obviously changed 
by notepad.

regards, Joze

-Original Message-
Sent: Friday, November 14, 2003 5:59 AM
To: Multiple recipients of list ORACLE-L



Hi,

Currently I am working on a project that requires me to transfer 
Customer Master Record  data into SAP R/3 system from my oracle 
database (9.2.0.4 running on Solaris 5.9). The text file (contains LF 
and CR) generated by PLSQL or Oracle reporter builder could not be 
loaded into the SAP database (running on the same version of oracle 
database on W2K). It breaks on the CR. However, when I open the text 
file by notepad, do nothing, just simply save the file, re-run the data 
load, then everything works fine. Does anyone know anything about this? 
Please help.

Thanks in advance.

Kitty Luo
Oracle DBA, OCP
Onlane Inc.
www.onlane.com
[EMAIL PROTECTED]
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Joze Senegacnik
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


**
This e-mail message is confidential, intended only for the named recipient(s) above 
and may contain information that is privileged, attorney work product or exempt from 
disclosure under applicable law. If you have received this message in error, or are 
not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 
and delete this e-mail message from your computer, Thank you.
**5
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jamadagni, Rajendra
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from

RE: LF and CR (chr(10)||chr(13)) problem -- problem solved

2003-11-14 Thread Kitty Luo

Hi List,

Finally, I used HexCmp and found out the file generated by Oracle PLSQL or report 
writer only contains a CR (chr(13)) even if I had a chr(13) and chr(10) in the query. 

I re-wrote my export scripts in java, then resulting file is OK. 

Thanks to all of you who responded my problem.

Have a great weekend!

Kitty
-Original Message-
Sent: Friday, November 14, 2003 9:09 AM
To: Multiple recipients of list ORACLE-L


Kitty,

when the file is written by pl/sql note its size. Then open and save in notepad and 
note its size. If both sizes are different, you know there is a CR/LF problem, else 
problems is somewhere else.

Raj

Rajendra dot Jamadagni at nospamespn dot com
All Views expressed in this email are strictly personal.
QOTD: Any clod can have facts, having an opinion is an art !


-Original Message-
Sent: Friday, November 14, 2003 8:54 AM
To: Multiple recipients of list ORACLE-L


Joze,

It's not that simply. I already tried all the possible combination: chr(13)||chr(10) , 
chr(10)||chr(13),  chr(13) , chr(10)||chr(10)...

Thanks for your input anyway.

Regards,
Kitty
-Original Message-
Sent: Friday, November 14, 2003 6:09 AM
To: Multiple recipients of list ORACLE-L


The solution is simple. The correct sequence of characters is not  
chr(10)||chr(13)  but rather chr(13)||chr(10). This is obviously changed 
by notepad.

regards, Joze

-Original Message-
Sent: Friday, November 14, 2003 5:59 AM
To: Multiple recipients of list ORACLE-L



Hi,

Currently I am working on a project that requires me to transfer 
Customer Master Record  data into SAP R/3 system from my oracle 
database (9.2.0.4 running on Solaris 5.9). The text file (contains LF 
and CR) generated by PLSQL or Oracle reporter builder could not be 
loaded into the SAP database (running on the same version of oracle 
database on W2K). It breaks on the CR. However, when I open the text 
file by notepad, do nothing, just simply save the file, re-run the data 
load, then everything works fine. Does anyone know anything about this? 
Please help.

Thanks in advance.

Kitty Luo
Oracle DBA, OCP
Onlane Inc.
www.onlane.com
[EMAIL PROTECTED]
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Joze Senegacnik
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


**
This e-mail message is confidential, intended only for the named recipient(s) above 
and may contain information that is privileged, attorney work product or exempt from 
disclosure under applicable law. If you have received this message in error, or are 
not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 
and delete this e-mail message from your computer, Thank you.
**5
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jamadagni, Rajendra
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego

LF and CR (chr(10)||chr(13)) problem

2003-11-13 Thread Kitty Luo

Hi,

Currently I am working on a project that requires me to transfer Customer Master 
Record  data into SAP R/3 system from my oracle database (9.2.0.4 running on Solaris 
5.9). The text file (contains LF and CR) generated by PLSQL or Oracle reporter builder 
could not be loaded into the SAP database (running on the same version of oracle 
database on W2K). It breaks on the CR. However, when I open the text file by notepad, 
do nothing, just simply save the file, re-run the data load, then everything works 
fine. Does anyone know anything about this? Please help.

Thanks in advance.

Kitty Luo
Oracle DBA, OCP
Onlane Inc.
www.onlane.com
[EMAIL PROTECTED]
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Help in html Output from Oracle Reports...PLease

2002-11-20 Thread Kitty Luo


Hi,
I am having problem with html output from oracle reports.I have designed a
report which looks for *.jpg pictures location in the database and then from
physical location generate report as html.For this output itself converts
*.jpg to *.gif so the output comes with pictures but very shaded pictures
which is not acceptable.No problem with pdf output.If I can get some help
how to prevent report to convert .jpg to .gif or some other way to generate
a good html output.
Thanks in Advance

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Oracle Installer not launching in NT -- solved

2002-09-19 Thread Kitty Luo

For your information, the workaround I used is to download oracle 9i client
and install the 9i installer, then install oracle 8.1.7 software
successfully.

Thanks to all who response to my problems.

Kitty

-Original Message-
[EMAIL PROTECTED]
Sent: 17 September, 2002 11:03 AM
To: Multiple recipients of list ORACLE-L


Try installing Java VM and retry. Download Java from www.java.sun.com.

I ever got such a problem on TRU64 Unix. I installed Java, also changed the
parameters used to mount CD ROM. This SHOULD NOT BE the case with NT.

-Original Message-
Sent: Tuesday, September 17, 2002 5:13 PM
To: Multiple recipients of list ORACLE-L


The OUI does not launch at all. I also tried what the note 131299.1
suggests, still not working.

After I download the copy of  symcjit.dll described by Mark
http://www.cool-tools.co.uk/products/downloads/symcjit.dll, I receive the
following error message: jvm.dll could not be found.

Any ideas are appreciated!

Kitty


-Original Message-
Dave
Sent: 17 September, 2002 7:38 AM
To: Multiple recipients of list ORACLE-L


Is the problem that the OUI does not launch or that it launches, does some
installing and then suddenly stops??

Dave

-Original Message-
Sent: Monday, September 16, 2002 9:58 PM
To: Multiple recipients of list ORACLE-L


I have s similar problem (Oracle Installer 8.1.6 / 8.1.7 not launching in
NT) but on a Pentium 3 with NT4 SP5, anyone has a workround?

Many thanks.

Kitty

-Original Message-
Heisler
Sent: 25 July, 2002 12:13 PM
To: Multiple recipients of list ORACLE-L


If it's a Pentium 4, it's a known bug.  See MetaLink note 131299.1.  The
patch is 1507768.


Dennis



 [EMAIL PROTECTED] wrote:

 Hi List,

 I saw a similar post to this in the last 2 weeks, but deleted it
 (oops) as I am in a unix shop.  But I now have a client who is
 trying to install the oracle client on his nt box in order to demo our
 *product*.

 However, he can't get the installer to even launch.  He thinks its
 a Java VM conflict.

 Any ideas?  I need this rather quick so please also reply direct
 to me and in the meantime I will hit the internet.

 Thanks,

 Hannah
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Dennis M. Heisler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Farnsworth, Dave
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California

RE: Oracle Installer not launching in NT

2002-09-17 Thread Kitty Luo

The OUI does not launch at all. I also tried what the note 131299.1
suggests, still not working.

After I download the copy of  symcjit.dll described by Mark
http://www.cool-tools.co.uk/products/downloads/symcjit.dll, I receive the
following error message: jvm.dll could not be found.

Any ideas are appreciated!

Kitty


-Original Message-
Dave
Sent: 17 September, 2002 7:38 AM
To: Multiple recipients of list ORACLE-L


Is the problem that the OUI does not launch or that it launches, does some
installing and then suddenly stops??

Dave

-Original Message-
Sent: Monday, September 16, 2002 9:58 PM
To: Multiple recipients of list ORACLE-L


I have s similar problem (Oracle Installer 8.1.6 / 8.1.7 not launching in
NT) but on a Pentium 3 with NT4 SP5, anyone has a workround?

Many thanks.

Kitty

-Original Message-
Heisler
Sent: 25 July, 2002 12:13 PM
To: Multiple recipients of list ORACLE-L


If it's a Pentium 4, it's a known bug.  See MetaLink note 131299.1.  The
patch is 1507768.


Dennis



 [EMAIL PROTECTED] wrote:

 Hi List,

 I saw a similar post to this in the last 2 weeks, but deleted it
 (oops) as I am in a unix shop.  But I now have a client who is
 trying to install the oracle client on his nt box in order to demo our
 *product*.

 However, he can't get the installer to even launch.  He thinks its
 a Java VM conflict.

 Any ideas?  I need this rather quick so please also reply direct
 to me and in the meantime I will hit the internet.

 Thanks,

 Hannah
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Dennis M. Heisler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Farnsworth, Dave
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kitty Luo
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).