- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem of running Sybase(3)
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
07-04-2000 02:24 AM
07-04-2000 02:24 AM
Problem of running Sybase(3)
The system is Sybase 11 running on HP-UX 11.0, but the speed is slow sometimes. The situation happens when the clients access DB server. But it is not always so.
I wonder how to resolve this problem. If someone need configuration files, I will provide them.
Any message will be helpful.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2000 04:04 AM
07-04-2000 04:04 AM
Re: Problem of running Sybase(3)
see your Sybase documentation and tune the kernel or check if the Sybase is compatible with OS(HP-UX is 32/64 bits OS). After you check this, use glance, top and sar to verify utilization of resorces.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2000 02:27 AM
07-05-2000 02:27 AM
Re: Problem of running Sybase(3)
I had also this problem with Sybase and HP-UX 11.00.
The problem is sql statements. When somebody starts a sql then you see that the idle% go down (use sar). The larger the sql the longer the system is slow.
There are two ways to solve this problem:
1. Tuning kernel
2. Use more embedded sql (I think that's called procedures in Sybase).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2000 06:49 AM
07-05-2000 06:49 AM
Re: Problem of running Sybase(3)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2000 06:51 AM
07-05-2000 06:51 AM
Re: Problem of running Sybase(3)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 06:12 PM
07-13-2000 06:12 PM
Re: Problem of running Sybase(3)
1. asyncdsk driver must be included in your hpux kernel.
2. shmmax hpux kernel parameter should be equil to or bigger than your physical memory size.
3. check your sybase memory -> sp_configure "total memory", don't leave it at default which is too small for good cache peformance.
4. check out the runnable process search count -> sp_configure 'runnable process search count', if it is not at default then change it back to default.
5. while your machine is slow, run "sar -Mud 2 9" to see if you ran into CPU or disk bound situation. If disk bounded, go back to your sql program to make sure they don't cause table scan problems. If CPU bounded then you got whole lot more work to do. Also run "top" to make sure there are no other program that occupied the CPU.
6. make sure no livelocks in Sybase, while your machine is slow check output from "sp_who", look at the "block by" column.
Give it a try and good luck !!!