Re: linux

2004-01-19 Thread Mladen Gogala
I would probably go to the http://www.realtimelinuxfoundation.org and see what's there. The next thing would be to start looking into other RT Unix systems and when all of the needed information is compiled, I would post an article with the solution on this list. On 2004.01.19 09:54, [EMAIL

RE: linux

2004-01-19 Thread Bobak, Mark
Having never done it, I'll just refer you here: http://www.tldp.org/HOWTO/RTLinux-HOWTO.html Mark J. Bobak Oracle DBA ProQuest Company Ann Arbor, MI Imagination was given to man to compensate him for what he is not, and a sense of humor was provided to console him for what he is. --Unknown

Re: Linux

2003-12-23 Thread Mihalis I. Tsoukalos
On Sat, Dec 20, 2003 at 02:34:26PM -0800, Paul Drake wrote: --- Seema Singh [EMAIL PROTECTED] wrote: Hi Does anyone know good Linux administration book? Can you guyes suggest any good linux user group? thx -Seema Matt Welsh's Running Linux is now out in 4th Edition. Just make sure

Re: Linux

2003-12-20 Thread Paul Drake
--- Seema Singh [EMAIL PROTECTED] wrote: Hi Does anyone know good Linux administration book? Can you guyes suggest any good linux user group? thx -Seema Matt Welsh's Running Linux is now out in 4th Edition. Just make sure that you find a recent edition, as there are still plenty of RedHat

Re: Linux install for Oracle - Details reqd

2003-12-16 Thread Mladen Gogala
On 12/16/2003 03:29:25 PM, quriyat wrote: Hello all I am planning to install Linux; the idea is to install Oracle RAC. I have two questions: Q1. Which Linux is best suited for it(RH?/SUSE?/Mandrake?). I know i can get Oracle download from OTN but it should be installable on the

Re: Linux VPN and routing HOWTO

2003-09-26 Thread Matthew Zito
Title: OT: Linux VPN and routing HOWTO Is IP forwarding enabled? cat /proc/sys/net/ipv4/ip_forward ? If its a zero, set it to a 1 (echo 1 /proc/sys/net/ipv4/ip_forward) Beyond that, use a packet sniffer like tcpdump to see what is appearing on the wire on both interfaces. Thanks, Matt

RE: LINUX instance startup problem

2003-07-03 Thread Weaver, Walt
What version of Red Hat? --Walt -Original Message- From: Seema Singh [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 1:09 PM To: Multiple recipients of list ORACLE-L Subject: LINUX instance startup problem Hi, I'm having problem during startup of instance on LINUX.I have

Re: LINUX instance startup problem

2003-07-03 Thread James J. Morrow
Most modern versions of linux have shared memory/semaphore parameters set high enough that oracle can start (unless, of course, you have an exceptionally large SGA). (Note 187397.1) If this is a fresh install (in particular a download from OTN) of 8.1.7, locate the glibc-2.1.3-stubs.tar.gz

Re: linux and windows2000 memory allocation

2003-06-23 Thread Tanel Poder
Hi! Linux doesn't split memory that way (although some memory is still allocated to kernel of course) Max SGA I have allocated on 32bit server w. 8GB mem running RHAS 2.1 is 2.4G. The max is 2.7GB I believe, but you have to relocate SGA for that. Check metalink note 211424.1. In addition, you

Re: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-13 Thread Yechiel Adar
PROTECTED] Sent: Sunday, June 08, 2003 11:00 AM To: Multiple recipients of list ORACLE-L Subject: Re: ??? Linux/Oracle 8.1.7 2GB file size limit ??? Just curious how you arrived at the 1900 meg number. Why not use 2000m? Oracle defines gigabytes in binary, not decimal as drive

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-09 Thread Weaver, Walt
FWIW, we use 2048m here. --Walt (who feels obligated to make some posts since Steve's off today) Weaver Bozeman, Montana -Original Message- From: Jared Still [mailto:[EMAIL PROTECTED] Sent: Sunday, June 08, 2003 11:00 AM To: Multiple recipients of list ORACLE-L Subject: Re

Re: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-08 Thread Yechiel Adar
We have been hit by a bug in autoextend that corrupted a database (8.1.6) on NT. It seems that the bug was exported to Linux as well. We now use all datafiles with autoextend up to 1900 MB. We also define a second datafile with 200MB initial and autoextend to 1900 MB. Whenever the last datafile

Re: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-08 Thread Jared Still
Just curious how you arrived at the 1900 meg number. Why not use 2000m? Oracle defines gigabytes in binary, not decimal as drive mfg's do, so 2000m would be fine. Not a criticism, just wondering. Jared On Sunday 08 June 2003 09:29, Yechiel Adar wrote: We have been hit by a bug in autoextend

Re: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-08 Thread Mladen Gogala
The critical boundary on 32-bit filesystems was 2048M. The problem was (and still is) in the lseek function, which accepts int off_t lseek(int fildes, off_t offset, int whence); In order to move through the files larger then 2GB (1 bit is for the sign), OS needs routines named lseek64 and

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Mark Leith
That could be quite a LARGE update.. ;) -Original Message- Carmichael Sent: 05 June 2003 01:49 To: Multiple recipients of list ORACLE-L geez, back to the very very first presentation Marlene Theriault and I did together, about version 6, called All the Things THEY Didn't Tell You you

Re: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Jan Pruner
I think it is the limitation of Linux, not Oracle. Use LVM and don't worry about file size limit. :-) JP - Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 5:40 PM I've just been informed that there is a 2GB datafile size

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Branimir Petrovic
I'd say file size limit/autoextend feature has been Oracle's dirty little secret for quite a while. For a very long period of time there was similar 4GB 'magic' barrier on Windows, that was allegedly fixed. Workaround for the problem was to create datafile 1 MB larger than the 'magic' number, and

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
See my note: There is no such O/S file size limit. We have datafiles 2GB which work just fine. The problem is with autoextending datafiles that extend from 2GB to 2GB. It's not a Linux limitation but a limitation imposed by Oracle's implementation on Linux. Oracle 9i on Linux doesn't have this

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Mercadante, Thomas F
Steve - are you saying that there is a workaround by increasing the size of the file manually to something larger than 4G? Tom Mercadante Oracle Certified Professional -Original Message- Sent: Wednesday, June 04, 2003 1:25 PM To: Multiple recipients of list ORACLE-L See my note: There

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
-3551 Phone: 212-358-8211 x 359 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jan Pruner Sent: Wednesday, June 04, 2003 11:55 AM To: Multiple recipients of list ORACLE-L Subject: Re: ??? Linux/Oracle 8.1.7 2GB file size limit ??? I think

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Matthew Zito
Of Jan Pruner Sent: Wednesday, June 04, 2003 11:55 AM To: Multiple recipients of list ORACLE-L Subject: Re: ??? Linux/Oracle 8.1.7 2GB file size limit ??? I think it is the limitation of Linux, not Oracle. Use LVM and don't worry about file size limit. :-) JP - Original Message

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
Thanks Branimir for confirming my right to be peeved. :-) I never liked the autoextend feature but we use it because: 1) We have this nifty end user driven feature where they can clone their data via a nice web GUI interface. (This is for web site upgrades scheduled by the end user.) 2) We don't

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Boivin, Patrice J
This almost sounds like the problem that existed for Oracle 7.3 and the 2G threshold a couple of years ago... J'ai une impression d'avoir déjà vu ceci. : ) Patrice. -Original Message- Sent: Wednesday, June 04, 2003 3:10 PM To: Multiple recipients of list ORACLE-L Steve - are you

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
Well... datafiles 2GB seem to work okay but since Oracle is being a weenie about supporting them altogether I'm choosing not to. One of the first hoops OWS had me jump thru in the wild goose chase was to manually extend datafiles via maxsize without using unlimited. Eventually the only

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread DENNIS WILLIAMS
Steve - Is there a Metalink note on this? What would a person search for? Dennis Williams DBA, 80%OCP, 100% DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Wednesday, June 04, 2003 12:25 PM To: Multiple recipients of list ORACLE-L See my note: There is no such O/S file

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Mercadante, Thomas F
nice. either way, you're screwed into doing more work than you had planned. Tom Mercadante Oracle Certified Professional -Original Message- Sent: Wednesday, June 04, 2003 3:05 PM To: Multiple recipients of list ORACLE-L Well... datafiles 2GB seem to work okay but since Oracle is

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
Yeah, now I call it the outta-extend feature. :-) -Original Message- Sent: Wednesday, June 04, 2003 12:28 PM To: '[EMAIL PROTECTED]' Cc: Orr, Steve nice. either way, you're screwed into doing more work than you had planned. Tom Mercadante Oracle Certified Professional

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread DENNIS WILLIAMS
Nevermind, a search on 2gb yielded Note 112011.1, which seems to explain it all. Oh well, one more item for my to do list. Dennis Williams DBA, 80%OCP, 100% DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Wednesday, June 04, 2003 2:30 PM To: Multiple recipients of list

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread April Wells
Title: RE: ??? Linux/Oracle 8.1.7 2GB file size limit ??? Upgrading was number 2? NO way!?! I am (genuinely) surprised that it wasn't number 1 suggestion... April Wells Oracle DBA/Oracle Apps DBA Corporate Systems Amarillo Texas You will recognize your own path when you come upon

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
As per Branimer's previous post, try searching under dirty little secrets. :-) -Original Message- Sent: Wednesday, June 04, 2003 1:30 PM To: Multiple recipients of list ORACLE-L Steve - Is there a Metalink note on this? What would a person search for? Dennis Williams DBA, 80%OCP, 100%

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
It doesn't seem to be a problem on other platforms... Just when I stopped feeling like a neglected step child for running on Linux. Don't worry... Be happy... There's a workaround... Upgrade and buy more software... D'ai jobu desu... er, eh, Ca ne fais rien. -Original Message- Sent:

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Matthew Zito
PROTECTED] On Behalf Of April WellsSent: Wednesday, June 04, 2003 2:30 PMTo: Multiple recipients of list ORACLE-LSubject: RE: ??? Linux/Oracle 8.1.7 2GB file size limit ??? Upgrading was number 2? NO way!?! I am (genuinely) surprised that it wasn't number 1 suggestion... April

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread DENNIS WILLIAMS
Ahem . . . according to Note 112011.1, these problems can affect all platforms except OS/390 which does NOT support datafile resizing (fiendishly clever those mainframe types). It looks like 8.1.7.4 and above is not affected. I would highly recommend that all Oracle DBAs take a look at this note.

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
We are on 8.1.7.4 and it aflicted us anyway. Maybe I'll just wait a couple of years and let other customers QA this Oracle feature until they get it right. Steve -Original Message- Sent: Wednesday, June 04, 2003 2:35 PM To: Multiple recipients of list ORACLE-L Ahem . . . according

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Goulet, Dick
Dennis, Thanks a lot, the diamond of the day from the list. Dick Goulet Senior Oracle DBA Oracle Certified 8i DBA -Original Message- Sent: Wednesday, June 04, 2003 4:35 PM To: Multiple recipients of list ORACLE-L Ahem . . . according to Note 112011.1, these problems can

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread DENNIS WILLIAMS
Steve Personally I am VERY glad you mentioned this today. Since I run 64-bit Unix, I didn't think this applied to me, but after reading the note, I ran their formula and found a file on one of my databases that was very close to the limit. Plenty happy to dodge that bullet. Dennis Williams

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Orr, Steve
And thanks for the note recommendation Dennis... There's too many of these bullets flying around. Need a short list called: Things you should know that Oracle doesn't tell you straight out. Of course there's the bug list but who has time for that and can remember it all? Sigh... Steve

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Rachel Carmichael
geez, back to the very very first presentation Marlene Theriault and I did together, about version 6, called All the Things THEY Didn't Tell You you mean I hafta update it AGAIN? :) --- Orr, Steve [EMAIL PROTECTED] wrote: And thanks for the note recommendation Dennis... There's too

RE: ??? Linux/Oracle 8.1.7 2GB file size limit ???

2003-06-05 Thread Babette Turner-Underwood
Woohoo!! Us OS/390ers have it made ! actually in 9i they started allowing files to autoextend but I am not sure how they do it... On OS/390 you still cannot shrink a datafile. - Babette -Original Message- WILLIAMS Sent: Wednesday, June 04, 2003 4:35 PM To: Multiple recipients of

Re: linux intel support matrix

2003-04-04 Thread Ray Stell
On Thu, Apr 03, 2003 at 06:33:53PM -0800, Ray Stell wrote: I went to look at the matrix today and found it dramatically changed. I found only 9.2.0 and Redhat AS. All the other free linux versions are gone as well as all 8i versions. Do you find the same, maybe the webmeister is messing

RE: linux intel support matrix

2003-04-04 Thread Odland, Brad
What you see is correct. 9.2.0 is only supported on PAY versions of linux. 8.1.7 is still supported on various free versions. (funny how open only includes We just went through hoops trying to find a combination of free Linux and Oracle that we could run OEM OMS and names on... We settled on

RE: linux intel support matrix

2003-04-04 Thread Gogala, Mladen
I seriously advise against the Intel Itanic machines. If you need 64 bits you can either wait for the Clawhammer or switch to something else that already supports 64 bits. One little HP superdome would be a nice decoration in my living room. Intel Itanic has hit an iceberg. -Original

Re: linux intel support matrix

2003-04-04 Thread bill thater
[EMAIL PROTECTED] wrote: I seriously advise against the Intel Itanic machines. If you need 64 bits you can either wait for the Clawhammer or switch to something else that already supports 64 bits. One little HP superdome would be a nice decoration in my living room. Intel Itanic has hit an

Re: linux intel support matrix

2003-04-04 Thread Ron Rogers
Bill, Welcome back!!! I haven't read you in a long time. Hope all is well. Ron [EMAIL PROTECTED] 04/04/03 12:29PM [EMAIL PROTECTED] wrote: I seriously advise against the Intel Itanic machines. If you need 64 bits you can either wait for the Clawhammer or switch to something else that

Re: linux intel support matrix

2003-04-04 Thread bill thater
[EMAIL PROTECTED] wrote: Bill, Welcome back!!! I haven't read you in a long time. Hope all is well. Ron just got a 3 month contract after being out of work since the end of june. guess that's the end of my afternoon naps, and my afternoon beer, for a while.;-) -- -- Bill Shrek Thater

RE: linux intel support matrix

2003-04-04 Thread Weaver, Walt
They make you work in the afternoon --Walt Weaver Bozeman, Montana -Original Message- From: bill thater [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 2:29 PM To: Multiple recipients of list ORACLE-L Subject: Re: linux intel support matrix [EMAIL PROTECTED] wrote

RE: linux intel support matrix

2003-04-04 Thread Chris Berry
From: Weaver, Walt [EMAIL PROTECTED] They make you work in the afternoon --Walt Weaver Bozeman, Montana You mean sometimes you aren't at work? Chris Berry [EMAIL PROTECTED] Systems Administrator JM Associates Without change, something sleeps inside us, and seldom awakens. The sleeper must

RE: Linux and Oracle Cluster File System

2003-01-07 Thread Richard Ji
Jos, Yes, you are right that if you use OCFS then you can just have one mount point and create all data files under it, because OCFS is a file system. It makes it a lot easier to manage space and you can use commands like: cp, mv, rm etc which you can't do to a raw partition. Backup on

RE: Linux and Oracle Cluster File System

2003-01-07 Thread Jos
Thanks for the clarification, a lot more to read. Richard Ji [EMAIL PROTECTED] wrote: Jos, Yes, you are right that if you use OCFS then you can just have one mount point and create all data files under it, because OCFS is a file system. It makes it a lot easier to manage space and you can use

Re: Linux

2002-10-23 Thread ltiu
Run it on Linux like you would run it on Windows. You do need some Unix skills for any OS level work though. Otherwise, Oracle is the same (mostly) on both platforms. Download Oracle for Linux., It's free for evaluation, education and development use from http://www.oracle.com -- Lyndon Tiu

RE: linux

2002-10-23 Thread Joe Testa
It run beautifully. i've been running oracle(not so much production but up thru testing/QA) on linux platform since 8.0. I love it. You know that the datafiles format is not compatible, so the only choice to migrate to linux is exp/imp. It runs on linux like it runs on any other *nix(except

RE: Linux

2002-10-23 Thread Jim Hawkins
We have Oracle 8.1.7 and 9.2.0 running on Red Hat Linux 7.2 - and love it. It is not a production box though. We are still in test mode. Jim Hawkins Oracle Database Administrator St. Louis, MO Turner, Christine [EMAIL PROTECTED] wrote: Greetings ALL! Have a question for anyone who

Re: Linux

2002-10-23 Thread Joe Raube
See http://otn.oracle.com/tech/linux/content.html It runs very well. Moving a database from NT to Linux is as easy as export/import. Other methods exist too. --- Turner, Christine [EMAIL PROTECTED] wrote: Greetings ALL! Have a question for anyone who has infoI'm researching what it

Re: Linux

2002-10-23 Thread Ray Stell
Define Linux. Check the support matrix. I liked running on Redhat, but Oracle seemed to drop support for the free versions after 7.1 or so. Anyway, you may want support and so you may want to purchase some of the enterprise releases of linux, such as from RedHat or SuSE that are included in

RE: linux

2002-10-23 Thread Phil Wilson (DBA)
What distribution/version of Linux would you recommend (RedHat, Suse, etc.)? Thanks Phil Wilson ([EMAIL PROTECTED]) DBA, Operations Group SkillSoft, Learning Solutions for the Human Enterprise 506.462.1124(w) 506.447.0334(c) -Original Message- Sent: Wednesday, October 23, 2002 1:50

RE: Linux

2002-10-23 Thread Turner, Christine
Kewlness! Thanks everyone for your input. Totally off the dba subject...does anyone know of any C++ developers that have information regarding converting to UNIX. My developers are going stir crazy trying to find any steps to follow when converting C++ applications for Linux. If not, that's cool,

Re: linux

2002-10-23 Thread Joe Testa
Well technically, only the advanced version of RH( are supported, i think most if not all(some please clarify) of Suse are supported. go here: http://www.redhat.com/oracle_cert/ for the scoop of versions of oracle on which versions of RH are certified. Joe Phil Wilson (DBA) wrote: What

Re: Linux

2002-10-23 Thread Ron Rogers
Christine, I found it easier ( because I had the OS disks) to load the PC with RedHat6.2 and then install Oracle 8.1.7. That eliminated the glib and java problems encountered with the RedHat 7.0 and 7.1 versions. Then I upgraded the OS to 7.0 and finally 7.1 after I found things ran perfectly.

RE: Linux

2002-10-23 Thread Daniel Harron
We have experience numerous problems with high transaction load databases. The i/o drivers and memory drivers have proven to be unstable. The largest problem seems to occur with the memory drivers. Try running a linux database with and SGA over 1GB. We have been able to duplicate these

RE: linux

2002-10-23 Thread Gogala, Mladen
I'll be able to tell you more about 9.2.0.2 on RH 8.0 after this weekend. I don't expect any trouble. -Original Message- From: Joe Testa [mailto:jtesta;dmc-it.com] Sent: Wednesday, October 23, 2002 1:54 PM To: Multiple recipients of list ORACLE-L Subject: Re: linux Well

RE: Linux

2002-10-23 Thread Gogala, Mladen
, Christine [mailto:christine.turner;ips-sendero.com] Sent: Wednesday, October 23, 2002 2:11 PM To: Multiple recipients of list ORACLE-L Subject: RE: Linux Kewlness! Thanks everyone for your input. Totally off the dba subject...does anyone know of any C++ developers that have information

Re: linux and Oracle Apps jinit

2002-09-29 Thread Madhavan Amruthur
Hi Ron, Has anyone found a way to use linux as a client to Oracle Applications? The self service stuff runs just fine but the Oracle Forms requires that damnable jinit. This is the only problem left before I can give MS the big Heave Ho. I am also in the process of trying to find if I

Re: Re: LINUX and Oracle Corp.

2002-08-03 Thread chaos
what people don't like. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02

Re: LINUX and Oracle Corp.

2002-08-03 Thread Jared Still
:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above topic but on a different note

Re: LINUX and Oracle Corp.

2002-08-03 Thread ltiu
OK. I should try Linux with Oracle then. Cheap(er) alternative. Cheapest would be Linux with Postgresql/MySQL but functionality is not there yet. Price-wise, is the performace of Dell better than Sun? Dollar/performance ? How much (cost) is the Dell and how much is the Sun? ltiu On Saturday

Re: Re: LINUX and Oracle Corp.

2002-08-03 Thread Jared Still
]] Sent: Thursday, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above topic but on a different note, anyone here

Re: LINUX and Oracle Corp.

2002-08-02 Thread Jared Still
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above

Re: LINUX and Oracle Corp.

2002-08-02 Thread ltiu
, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above topic but on a different note, anyone here on the list

RE: LINUX and Oracle Corp.

2002-08-01 Thread Cabansay, Yoyong
regarding the above topic but on a different note, anyone here on the list that is on an Oracle/HP-UX OS platform for backend and 9iAS/Linux on the middle tier? problems encountered? gotchas? stories to tell. we are looking at this configuration right now for our Oracle Apps 11i. thanks in

RE: LINUX and Oracle Corp.

2002-08-01 Thread lembark
-- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above topic but on a different note, anyone here on the list that is on an Oracle/HP-UX OS platform for backend and 9iAS/Linux on the middle tier? problems encountered? gotchas? stories to tell. we are looking

RE: LINUX and Oracle Corp.

2002-08-01 Thread Gogala, Mladen
: Thursday, August 01, 2002 6:33 AM To: Multiple recipients of list ORACLE-L Subject: RE: LINUX and Oracle Corp. -- Cabansay, Yoyong [EMAIL PROTECTED] on 08/01/02 02:19:10 -0800 regarding the above topic but on a different note, anyone here on the list that is on an Oracle/HP-UX OS

Re: LINUX and Oracle Corp.

2002-07-31 Thread KENNETH JANUSZ
Good luck. When I worked for Oracle in 1998/99 they consolidated all their e-mail servers at Corp. in Calif. What a mess. Something was wrong with the hard drives that continued to fail and we would go for days without e-mail. The primary communication media at Oracle is e-mail. This lasted

RE: Linux SuSe question?

2002-07-17 Thread Grabowy, Chris
The download takes forever because you have to download each and every single file...unlike RH You can buy it for 30 bucks. I think the enterprise version is like 90 dollars. -Original Message- Sent: Wednesday, July 17, 2002 5:09 PM To: Multiple recipients of list ORACLE-L Is the

RE: linux vs any other os

2002-06-04 Thread Sherman, Edward
Although not very scientific, this one is always fun to watch. http://srom.zgp.org/ Good Luck, Ed -Original Message- Sent: Monday, June 03, 2002 7:23 PM To: Multiple recipients of list ORACLE-L Hi All, Anyone have any sites where they are doing performance compares of linux vs

RE: linux vs any other os

2002-06-04 Thread Gogala, Mladen
Ite misa est, Linux is the best! -Original Message- From: Sherman, Edward [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 12:53 PM To: Multiple recipients of list ORACLE-L Subject: RE: linux vs any other os Although not very scientific, this one is always fun to watch

RE: RE: linux vs any other os

2002-06-04 Thread kkennedy
Separator Author: Gogala; Mladen [EMAIL PROTECTED] Date: 6/4/2002 10:09 AM Ite misa est, Linux is the best! -Original Message- From: Sherman, Edward [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 12:53 PM To: Multiple recipients of list ORACLE-L Subject: RE

RE: Linux for Big(ish) Databases

2002-03-07 Thread James Morle
Bill, In general terms, I would say that it is certainly suitable. That answer is based upon the information you provide below. The real answer could only be ascertained by evaluating other requirements: A) Availability B) Scalability C) 'Cost' of each user - what do the transactions look like

Re: Linux command to display total disk capacity

2002-03-05 Thread Marin Dimitrov
- Original Message - Does someone know what command can be used to display total capacity of disk drive? I can use command df -k but it breaks partitions apart so I have to add them up. I need command just display a total. for an IDE drive do: cat /proc/ide/xxx/capacity

RE: Linux command to display total disk capacity

2002-03-05 Thread Michael Cupp
Disk capacity is relevant to partition. Your df -k could show 10 partitions, this could be 10 1 drive, or 10. You might find what you need in fdisk, but use it with caution if you aren't a unix admin. -Original Message- Sent: Tuesday, March 05, 2002 9:59 AM To: Multiple recipients of

Re: Linux command to display total disk capacity

2002-03-05 Thread Alex
pipe df -k to awk and sum the column you want On Tue, 5 Mar 2002, Nguyen, David M wrote: Does someone know what command can be used to display total capacity of disk drive? I can use command df -k but it breaks partitions apart so I have to add them up. I need command just display a

Re: Linux for Big(ish) Databases

2002-03-04 Thread Steven Lembark
We've got a new database to put together. OLTP, 100-200 users, ~250Gb data. We haven't decided on a platform for this yet. Is Intel/Linux worth considering for this size of thing? No reason why not. Might also want to consider linux on a Sparc or Alpha. -- Steven Lembark

RE: Linux for Big(ish) Databases

2002-03-04 Thread Jesse, Rich
The problem with Linux on Sparc or Alpha is that Oracle doesn't have binaries for them. I've requested Alpha binaries, but haven't had any response, despite the 1-2 business days response. sigh GL! Rich Jesse System/Database Administrator [EMAIL PROTECTED]

RE: Linux for Big(ish) Databases

2002-03-04 Thread Gogala, Mladen
May be they'll release the source code and distribute it under the GPL license? -Original Message- From: Jesse, Rich [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 12:03 PM To: Multiple recipients of list ORACLE-L Subject: RE: Linux for Big(ish) Databases The problem

RE: Linux for Big(ish) Databases

2002-03-04 Thread lembark
-- Jesse, Rich [EMAIL PROTECTED] on 03/04/02 09:03:28 -0800 The problem with Linux on Sparc or Alpha is that Oracle doesn't have binaries for them. I've requested Alpha binaries, but haven't had any response, despite the 1-2 business days response. sigh Remember: They're Oracle, you're

Re: Linux Cluster

2002-02-22 Thread Bjørn Engsig
On Friday 22 February 2002 16:03, Henrik Ekenberg wrote: Who is your configuration ? Two nodes running in VMWare on an HP laptop 2- Which Linux version ? RH 7.1 + logical volume manager 3- Which Oracle version ? 9.0.1.2.0 4- Is is fun ? That depends. -- Bjørn Engsig, Miracle A/S

RE: Linux Cluster

2002-02-22 Thread James Morle
I'm also running it on two Vmware machines running Linux on my laptop. I'm currently working on a 'real' cluster, using a mixture of SMP linux boxes on a shared SCSI array. Two nodes, no problem. Three nodes, big problem. I believe it still to be electrical on the SCSI bus, so watch this space.

Re: Linux Cluster

2002-02-22 Thread Anjo Kolk
I wish that I had some of that 10 year ago OPS experience ;-) Anjo. - Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Friday, February 22, 2002 5:53 PM I'm also running it on two Vmware machines running Linux on my laptop. I'm currently working

Re: Linux taking over at Oracle

2002-02-01 Thread Stephane Faroult
I am afraid we have seen too many 'flavour-of-the-month' fads already. I fear that Larry is about as clueless as I am about the immediate future of IT and Oracle's 'strategy' has more or less been a succession of more or less well inspired tactical moves. I have known Oracle when distribution of

RE: Linux taking over at Oracle

2002-02-01 Thread Jamadagni, Rajendra
We had a small discussion yesterday about Oracle moving to Linux (possibly), so my SA asks ... Is there any OS vendor left in the market that Uncle L hasn't pissed off yet? Sun was dumped in favor of HP, they already pissed off IBM because of DB/2, not dumping HP they move to Linux. So I told him

Re: Linux taking over at Oracle

2002-02-01 Thread Rachel Carmichael
it's not just Oracle, this tends to be a trend in all businesses. Just as there are fads in clothing (shorter hemlines, longer hemlines etc), there seem to be fads in the right way to manage your computer systems. I've seen the cycle turn a number of times centralize all software and systems,

Re: Linux taking over at Oracle

2002-02-01 Thread Stephane Faroult
In a previous life in the 1980s, an IBM salesman has told me a funny story about an IBM marketing guy who was a specialist of strategy speeches, future of IT, etc. The salesman took a customer to a presentation once, and was very impressed by the speech in which the marketing man was

Re: Linux taking over at Oracle

2002-02-01 Thread orantdba
Hi All, I don't think anything here indicates that we are going back to hundreds of smaller databases. I does indicate that he is pushing the Real Application Clusters on thes smaller boxes so that they can continue to support large databases. John [EMAIL PROTECTED] wrote: Jonathan,

RE: Linux taking over at Oracle

2002-02-01 Thread Orr, Steve
On a contrarian note with all the Larry hype aside... Linux is much more that just a fad. In a relatively short time it has already put a very significant dent in MS server software sales and I'm sure it's going to affect Sun/HP regardless of Oracle's IT infrastructure strategies. Linux/Intel

RE: Linux taking over at Oracle

2002-02-01 Thread Jesse, Rich
I think that the LVM announcement in the link below is the lynchpin for getting Linux Enterprise-wide (man, I hate buzzwords!): http://www.veritas.com/news/press/PressReleaseDetail.jhtml?NewsId=9483 Now if I could only get Oracle on Linux for Alpha, I'd be set! Rich Jesse

RE: Linux taking over at Oracle

2002-02-01 Thread John Kanagaraj
I've seen the cycle turn a number of times centralize all software and systems, one data center to serve them all, standards cross-company then suddenly it's decentralize, one big center makes no sense, we don't get the things we need fast enough from them I always think that thinking in

RE: Linux taking over at Oracle

2002-02-01 Thread Grabowy, Chris
I thought it also put a dent in HP/UX Solaris sales...easier to migrate UNIX to Linux. I believe Amazon is a good example. For the record, I have no love for MS. Congrats on your ReplayTV, it will blow your mind once you fully grasp it's usefulness. I love my TiVo, and I can't live without

RE: RE: Linux taking over at Oracle

2002-02-01 Thread Gogala, Mladen
There are rumors that Red Hat is buying Microsoft? -Original Message- Sent: Friday, February 01, 2002 11:16 AM To: Multiple recipients of list ORACLE-L Steve, As one of the GREAT MicroSlop bashers, I pray you are more than correct. May the Penguin rule!! BTW: I've

RE: Linux taking over at Oracle

2002-02-01 Thread Orr, Steve
For a different perspective step into Larry's shoes for a minute, (O... that's scary!)... Hmmm... the less they have to spend on servers the more money left over to spend on me, er, my products... Oracle will get away with their pricing as long as the competition isn't so stiff that they

RE: RE: Linux taking over at Oracle

2002-02-01 Thread Grabowy, Chris
It's not a rumor, it's true...MS is letting themselves become aquired by Red Hat, they figure that all the lawsuits will have to be dropped, and there going to put the Windows GUI onto RH Linux. A killer combo. A brillant move by Bill Gates.

RE: Linux taking over at Oracle

2002-02-01 Thread Mercadante, Thomas F
Not selling my Oracle stock... yet. now is the time to buy! it's cheap! Tom Mercadante Oracle Certified Professional -Original Message- Sent: Friday, February 01, 2002 1:42 PM To: Multiple recipients of list ORACLE-L For a different perspective step into Larry's shoes for a minute,

  1   2   >