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 > System Monitoring Scripts

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-17-03, 10:15
lloydnwo lloydnwo is offline
Registered User
 
Join Date: Aug 2003
Location: India
Posts: 262
System Monitoring Scripts

Hi all,

does any one have scripts to find out in which dbspace my database/tables are created. In which dbspaces my index are created and some additonal scripts for monitoring the server. Also is there any GUI tool to monitor the database

Regards,

lloyd
Reply With Quote
  #2 (permalink)  
Old 09-17-03, 15:11
Roelwe Roelwe is offline
Registered User
 
Join Date: Aug 2002
Location: Belgium
Posts: 534
There are lots of third party tools.
Internally, you can look at ISA.

if you do a

select hex(partnum), tabname
from systables
where tabid > 99

you get a number like this: 0x00100100

the 0x001 points to the chunk id, the rest is the page number of the tblspace of the table in the chunk.

same for indexes.
__________________
rws
Reply With Quote
  #3 (permalink)  
Old 09-17-03, 15:14
Roelwe Roelwe is offline
Registered User
 
Join Date: Aug 2002
Location: Belgium
Posts: 534
You also might want to check
http://www.iiug.org
and
http://www.oninit.com

http://www.herber-consulting.de is an example of a third party tool
__________________
rws
Reply With Quote
  #4 (permalink)  
Old 09-17-03, 23:33
lloydnwo lloydnwo is offline
Registered User
 
Join Date: Aug 2003
Location: India
Posts: 262
Quote:
Originally posted by Roelwe
You also might want to check
http://www.iiug.org
and
http://www.oninit.com

http://www.herber-consulting.de is an example of a third party tool
Hi Roelwe,

Thanks once again mate.
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