dbTalk Databases Forums  

Clarification on SBSPACES

comp.databases.informix comp.databases.informix


Discuss Clarification on SBSPACES in the comp.databases.informix forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
KalpanaPai
 
Posts: n/a

Default Clarification on SBSPACES - 08-20-2003 , 05:38 PM






Hi

We have informix Database 9.2 running on Solaris, ad our database is
registered with datablades, which we are not using at all.

As i am going to set up a new server , i have exported the database
and changed the .sql file removed all the scrap except what needs for
our Database did dbimport and application works fine with this.

My question is if we are not going to use datablades , do we need to
have SBSPACE in our database? When i try to register ETX it will point
an error abt SBSPACE otherwise if i dont install no problem.

At the moment the prod and test boxes have datablades, but to put the
database on new server with dbimport it needs SBSPACE.

Is it Ok to go with the above process i.e.,
1.changing the .sql file and import the database OR
2. Unregister the Datablades and do dbexport and import the db on new
server

I observed even after unregistering, some procedures, datatypes will
be still there. Any suggestions would be appreciated.

Regards
Kalpan Pai

Reply With Quote
  #2  
Old   
Ronald Cole
 
Posts: n/a

Default Seeking Red Hat startup script or oninit/onmode exit codes... - 08-20-2003 , 09:13 PM






Is there a well written/highly regarded, all knowing and all powerful
IDS 9.4 uber-startup script for Red Hat that someone might share?
I've googled and found half-attempts and looked at IIUG, but couldn't
find what I'm looking for.

Barring that, I'm writing one myself, but have been unable to find
oninit/onmode exit codes documented anywhere in IBM's rather extensive
online documentation... but it is slow to dig through pdf's in a
browser and maybe I missed it.

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald (AT) forte-intl (DOT) com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B

Reply With Quote
  #3  
Old   
Jonathan Leffler
 
Posts: n/a

Default Re: Clarification on SBSPACES - 08-21-2003 , 01:41 AM



KalpanaPai wrote:
Quote:
We have informix Database 9.2 running on Solaris, ad our database is
registered with datablades, which we are not using at all.

As i am going to set up a new server , i have exported the database
and changed the .sql file removed all the scrap except what needs for
our Database did dbimport and application works fine with this.

My question is if we are not going to use datablades , do we need to
have SBSPACE in our database? When i try to register ETX it will point
an error abt SBSPACE otherwise if i dont install no problem.

At the moment the prod and test boxes have datablades, but to put the
database on new server with dbimport it needs SBSPACE.

Is it Ok to go with the above process i.e.,
1.changing the .sql file and import the database OR
2. Unregister the Datablades and do dbexport and import the db on new
server

I observed even after unregistering, some procedures, datatypes will
be still there. Any suggestions would be appreciated.

You might need an sbspace if you are using ER (or planning to use it);
maybe even for HDR.

You don't have to register the blades you aren't using. If you are
really sure you have no current use for an sbspace, you can leave it
out on the new system -- you can always add one later if need be.

--
Jonathan Leffler #include <disclaimer.h>
Email: jleffler (AT) earthlink (DOT) net, jleffler (AT) us (DOT) ibm.com
Guardian of DBD::Informix v2003.04 -- http://dbi.perl.org/



Reply With Quote
  #4  
Old   
Ronald Cole
 
Posts: n/a

Default Re: Seeking Red Hat startup script or oninit/onmode exit codes... - 08-21-2003 , 07:58 PM



"Andrew Hamm" <ahamm (AT) mail (DOT) com> writes:
Quote:
Ronald Cole wrote:
[i] have been unable to find
oninit/onmode exit codes documented anywhere in IBM's rather extensive
online documentation...

What exactly do you mean/need? Here's my /etc/init.d/informix script

start() {
echo -n $"Starting Informix services: "
daemon oninit $ONINIT_OPTIONS
RETVAL=$?
echo
return $RETVAL
}

stop() {
echo -n $"Shutting down Informix services: "
onmode -ky
RETVAL=$?
echo
return $RETVAL
}
Yeah, the values in RETVAL that your are returning... where are the
oninit/onmode return values documented?

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald (AT) forte-intl (DOT) com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B


Reply With Quote
  #5  
Old   
Richard Kofler
 
Posts: n/a

Default Re: Seeking Red Hat startup script or oninit/onmode exit codes... - 08-23-2003 , 03:54 AM



Ronald Cole wrote:
Quote:
"Andrew Hamm" <ahamm (AT) mail (DOT) com> writes:
Ronald Cole wrote:
[i] have been unable to find
oninit/onmode exit codes documented anywhere in IBM's rather extensive
online documentation...

What exactly do you mean/need? Here's my /etc/init.d/informix script

start() {
echo -n $"Starting Informix services: "
daemon oninit $ONINIT_OPTIONS
RETVAL=$?
echo
return $RETVAL
}

stop() {
echo -n $"Shutting down Informix services: "
onmode -ky
RETVAL=$?
echo
return $RETVAL
}

Yeah, the values in RETVAL that your are returning... where are the
oninit/onmode return values documented?

spoiling the original thread a lil further,
(which also is interesting!)
here is what Rick wrote in 2001
http://groups.google.com/groups?q=sy...ion.com&rnum=1

! the above link has wrapped, and I still do not know, how to post
links out of google in a proper way

dic_k
--
Richard Kofler
SOLID STATE EDV
Dienstleistungen GmbH
Vienna/Austria/Europe


Reply With Quote
  #6  
Old   
Andrew Hamm
 
Posts: n/a

Default Re: Seeking Red Hat startup script or oninit/onmode exit codes... - 08-25-2003 , 09:45 PM



Ronald Cole wrote:
Quote:
Yeah, the values in RETVAL that your are returning... where are the
oninit/onmode return values documented?
ummm, it's somewhere in the admin guide. Perhaps in the section that
documents the command line utilities?




Reply With Quote
  #7  
Old   
Ronald Cole
 
Posts: n/a

Default Re: Seeking Red Hat startup script or oninit/onmode exit codes... - 08-26-2003 , 01:15 AM



"Andrew Hamm" <ahamm (AT) mail (DOT) com> writes:
Quote:
Ronald Cole wrote:
Yeah, the values in RETVAL that your are returning... where are the
oninit/onmode return values documented?

ummm, it's somewhere in the admin guide. Perhaps in the section that
documents the command line utilities?
First place I looked. Command line arguments are documented in gory
detail, command return values are completely glossed over.

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald (AT) forte-intl (DOT) com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B


Reply With Quote
Reply




Thread Tools
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.