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 > Table's dbspace

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-17-03, 06:54
dbforumstest dbforumstest is offline
Registered User
 
Join Date: Sep 2003
Posts: 11
Table's dbspace

Hi,

Informix online - INFORMIX-SQL Version 5.10.UC2.

How to find which dbspace the Table belongs.

Thanks
Reply With Quote
  #2 (permalink)  
Old 09-17-03, 07:44
lloydnwo lloydnwo is offline
Registered User
 
Join Date: Aug 2003
Location: India
Posts: 262
Re: Table's dbspace

Hi there,

Foll is the query
database sysmaster;
select s2.name,s1.tabname,s1.owner from systabnames s1,sysdbspaces s2
where s2.dbsnum=trunc(s1.partnum/1048576)
and s1.owner='ocslinkdev'
order by name,tabname,owner

Regards,

lloyd


Quote:
Originally posted by dbforumstest
Hi,

Informix online - INFORMIX-SQL Version 5.10.UC2.

How to find which dbspace the Table belongs.

Thanks
Reply With Quote
  #3 (permalink)  
Old 09-18-03, 04:11
dbforumstest dbforumstest is offline
Registered User
 
Join Date: Sep 2003
Posts: 11
Llyod,

sysmaster database is not available on Informix online 5. Please where the tables on sql can be found.

Thanks
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