- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Problem with HP-UX 11iv1 and Oracle 9i
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2005 09:31 PM
10-31-2005 09:31 PM
That server only run about 5 million records. It can not process more 5 million records.
I don't what problem is.
Really, with that hardware, software how many records can RP7410 process ???
Anybody installed and used Oracle 9i and HP-UX 11iv1 on the RP7410, pl tell me about maximum records that server can process.
If i want that server process about 60 million records, can that server support ???
Pl help me as soon as possible
Thanks for any help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2005 10:04 PM
10-31-2005 10:04 PM
SolutionYou should be able to process hundreds of millions if not billions of records with oracle.
I would go back to the install document and make sure such issues as OS patches and kernel parms like shmmax and shmseg are set properly.
In my prior employment I managed three rp5450 servers that ran this exact product set.
The RP7410 is a very powerful box and you are not running into an inherent limitation of the hardware, more likely the system configuration or oracle sga limits.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2005 11:29 PM
10-31-2005 11:29 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
could you post the error message(s) you are getting ?
I have tables with more than 60 millions rows.
Regards
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2005 09:53 PM
11-02-2005 09:53 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
PL show me about sample Kernel parameter for Oracle.
My server don't process many records as i want.
Thank for any help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2005 10:03 PM
11-02-2005 10:03 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
You can look at the above thread for more information.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2005 10:25 PM
11-02-2005 10:25 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
No such limitations exists!
Either you database is not properly tunes
or You program has a bug!
can you please post the error messages you are getting as requested by Jean_luc above?
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 12:49 AM
11-03-2005 12:49 AM
Re: Problem with HP-UX 11iv1 and Oracle 9i
Try these Kernel parameters:
bufpages Pages of static buffer cache â older parm 0
dbc_max_pct Max dynamic buffer cache between 3 and 10 % of memory
dbc_min_pct Min dynamic buffer cache between 2 and 5% of memory
maxfiles Soft limit for open files 1024
maxfiles_lim Hard limit for open files 1024 (default)
nfile Open files limit (15 * NPROC + 2048)
nflocks File lock limit (NPROC) (at least 4096)
ninode Max inodes in memory (8 * NPROC + 2048)
maxswapchunks Max swap space on the system 16384
swapmem_on Enable/disable pseudo-swap 1 (on)
swchunk Swap chunk size 4096 (up to 65536 for large RAM)
vps_ceiling Max page size in Kbytes 64
maxdsiz Max process data seg size for 32bit procs 1073741824 bytes or (0x40000000)
maxdsiz_64bit Max process data seg size for 64bit procs 2147483648 bytes or (0x80000000)
maxssiz Max process storage seg size for 32bit procs 134217728 bytes
maxssiz_64bit Max process storage seg size for 64bit procs 1073741824 bytes or (0x40000000)
maxtsize Max process text seg size 128MB
maxuprc Max # of procs/user ((NPROC*9)/10)
max_thread_proc Max threads/proc 256
nkthread Max kernel threads (((NPROC * 7) / 4) + 16)
nproc Max procs/system 4096
msgmap Message map size (2+msgmni)
msgmni Max msg queues nproc
msgseg # segs in msg queue 32767
msgtql Total msgs on system nproc
semmap Free sem map size (semmni+2)
semmni Max sems/system 4096
semmns Max sems for users/sys (semmni*2)
semmnu Max undos/sem (nproc-4)
semvmx Max sem value 32767
shmmax Max shared memory segment Large enough to hold the entire SGA in one shared memory segment (we use 32GB)
shmmni Max segments/system 512
shmseg Max segments/proc 120 per Oracle database
Or you may want to adopt the kernel paramters of the environments of the TPC runs at www.tpc.org.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 07:04 PM
11-03-2005 07:04 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
Tell me any comment.
Oracle:
QL> conn xuly/xuly45@tc461
Connected.
SQL> set time on
08:08:42 SQL> set timing on
08:08:46 SQL> exec thuebao.cre('06',2005)
PL/SQL procedure successfully completed.
Elapsed: 00:00:01.05
08:10:00 SQL> exec thuebao.GOP_BD('06',2005)
PL/SQL procedure successfully completed.
Elapsed: 00:35:27.03 --qua cham (10-15')
08:45:28 SQL> set serveroutput on
09:33:17 SQL> commit;
Commit complete.
Elapsed: 00:00:00.00
09:33:22 SQL> tccg_go('dth','06/2005','SQL plus','QUYND');
SP2-0734: unknown command beginning "tccg_go('d..." - rest of line ignored.
09:33:29 SQL> exec tccg_go('dth','06/2005','SQL plus','QUYND');
BEGIN tccg_go('dth','06/2005','SQL plus','QUYND'); END;
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Elapsed: 03:17:37.03
12:51:11 SQL>
Connected.
SQL> set time on
16:50:05 SQL> set timing on
16:50:15 SQL> set serveroutput on
16:50:51 SQL> exec tccg_go('dth','06/2005','SQL plus','QUYND');
ERROR:
ORA-03114: not connected to ORACLE
BEGIN tccg_go('dth','06/2005','SQL plus','QUYND'); END;
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Elapsed: 03:06:24.08
19:57:25 SQL>
16:25:41 SQL> exec tccg_go('dth','06/2005','SQL plus','QUYND');
ERROR:
ORA-03114: not connected to ORACLE
BEGIN tccg_go('dth','06/2005','SQL plus','QUYND'); END;
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Elapsed: 03:11:07.00
Thanks for any help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 12:33 AM
11-04-2005 12:33 AM
Re: Problem with HP-UX 11iv1 and Oracle 9i
As fot te other parameters, try starting with the values above. They're HP's recommended kernel settings.
Also, if your mount options on your Oracle DB filesystems are for DirectIO (mincache=direct,convosync=direct - check via mount -p), you may want to lower your buffer cache and just adjust SGA.
Keep your dbc_max_pct to around 800-1600 GB.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 12:47 AM
11-04-2005 12:47 AM
Re: Problem with HP-UX 11iv1 and Oracle 9i
"Best Practices for Oracle on HPUX"
http://h21007.www2.hp.com/dspp/files/unprotected/database/HP3KOracle.ppt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 03:07 PM
11-04-2005 03:07 PM
Re: Problem with HP-UX 11iv1 and Oracle 9i
nfile (15*NPROC+2048)
nproc 4096
So nfile is not small as u tell.
What problem is it ???
Error code is " ORA-03113: end-of-file on communication channel " . Can that error code show you what problem is ?
Pl give me your idea about that error code.
Thanks