If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > SQL to monitore performance...

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-02-08, 08:15
dicipulofer dicipulofer is offline
Registered User
 
Join Date: Oct 2007
Posts: 55
SQL to monitore performance...

Hello..

My database's very slow... I'd like know if there are some sql to know what process's more slow..... and what is getting more memory...


Thanks..
Fernando.
Reply With Quote
  #2 (permalink)  
Old 01-03-08, 06:37
dicipulofer dicipulofer is offline
Registered User
 
Join Date: Oct 2007
Posts: 55
I ran the sql.... and see that my phylog percent free's just in 2 percent..

It's bad to my database ?


select name[1,8] dbspace, -- name truncated to fit on one line
sum(chksize) Pages_size, -- sum of all chunks size pages
sum(chksize) - sum(nfree) Pages_used,
sum(nfree) Pages_free, -- sum of all chunks free pages
round ((sum(nfree)) / (sum(chksize)) * 100, 2) percent_free
from sysdbspaces d, syschunks c
where d.dbsnum = c.dbsnum
group by 1
order by 1;



dbspace percent free
loglog 18.99
phylog 2.23
prddbs 26.10
prdtmp1 99.45
prdtmp2 99.48
rootdbs 84.44
Reply With Quote
  #3 (permalink)  
Old 01-04-08, 14:55
gurey gurey is offline
Registered User
 
Join Date: Aug 2003
Location: Argentina
Posts: 780
Hi,

I suggets that run update statistics for all database, next run:
set explain on avoide_execute;
SELECT ..........

Then verify performance.

Gustavo.
Reply With Quote
  #4 (permalink)  
Old 01-05-08, 05:18
ceinma ceinma is offline
Registered User
 
Join Date: Apr 2007
Location: Jundiai / SP - Brasil
Posts: 311
onstat -g ses
onstat -g mem
__________________
________________________________________
César Inacio Martins
Jundiai / SP - Brasil
http://www.imartins.com.br/informix - em Português
http://www.imartins.com.br/informix - English (translated by Google).
________________________________________
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On