Re: Locally managed tablespaces and raw devices
At my previous company, I managed an OPS database ver. 8.1.7.1 with ALL tablespaces locally managed (auto allocate) and on the raw devices.There were no problems, if we disregard the famous "Philamae comparison". On Thu, 2003-10-02 at 15:14, Louis Avrami wrote: > Hi all, > > I just inherited an 8.1.7.4 database running on Solaris 2.8, > 16 k block size, using raw devices for database datafiles. The > raw slices all appear to be a uniform size, 200 meg each. As > part of my initial site survey, I noticed that the tablespaces > are all dictionary managed. > > Would it be optimal to convert the existing application data > and index tablespaces to locally managed tablespaces? > > Does anyone know of any issues/problems when using locally managed > tablespaces with raw devices? > > Another question that I do have concerns the proper sizing of > datafiles for new tablespaces. I have only utilized locally > managed tablespaces on OS filesystems. With OS-level datafiles > I usually create datafiles as a multiple of the OS filesystem > block size + 64K for the bitmap header and metadata blocks. > For example: > > OS block size datafile size > - - >8k256 meg + 64k > > > With raw disk slices, the OS filesystem is bypassed. What then > should be the optimal "formula" when creating new datafiles? > > Thanks, > Lou Avrami > > > > > > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net Note: This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to monitor all e-mail communications through its networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorized to state them to be the views of any such entity. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Mladen Gogala INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
Jared I'm with you on this one. I switched our production tablespaces (except system) to autoextend several years ago and couldn't be happier. I used to scrupulously check the free space in tablespaces, but over the years, being a solo DBA, as more instances were added, this took longer and longer and meanwhile my available space window kept shrinking. I wrote scripts to help, but there are always decisions involved. Since switching to autoextend, we've experienced only a couple of incidents where something ran the disk out of space, and these turned out to be easier to deal with than the out of tablespace calls from the users. We use big RAID sets, so it is a matter of checking a couple of RAID sets vs. checking hundreds of tablespaces. There is also the advantage of less wasted space. If you leave enough free space in each tablespace to accommodate the largest next extent, that adds up. With LMT and autoextend, there is zero free space on most of these tablespaces. Dennis Williams DBA, 40%OCP, 100% DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Saturday, March 22, 2003 5:49 PM To: Multiple recipients of list ORACLE-L AUTOEXTEND can be abused for sure, but it can also be a big time saver. Say you want to load 100 gigabytes of data, and you have 5 disks to spread it out on. You opt for 5 files of 4 gig each on each disk. That gives you 20 files to create in your tablespace. Creating 100 gig of datafiles takes awhile. If you start each file out as 500m with a next size of 500m and a max of 4g, you can defer the time spent creating the files to load time, rather than waiting around for 100g of files to be created before you start loading. Still takes the same amount of time, but you get to go home earlier. :) Jared On Friday 21 March 2003 18:23, Jacques Kilchoer wrote: > Well, my first suggestion would be to buy a software package from a > reputable software company that lets you predict object growth and an > estimate of when your tablespace will be full. Contact me for more details. > > :) > > But seriously, you can write a report that shows the number of extents and > the amount of freespace in each tablespace, and review the report > periodically (say once a week). Which is what I did back in my production > DBA days. I imagine you could have a database procedure that checks the > free space in a tablespace and sends you an e-mail, or even pages you if > you have e-mail forwarded to a pager. > Setting the datafiles to autoextend just pushes the problem back to the OS > level - how do you know when your disks will be full? > > > -Original Message- > > From: Ryan [mailto:[EMAIL PROTECTED] > > > > so for normal business you should not use autoextend? You > > should monitor it > > yourself? What are some tips for monitoring the database to > > see if you need > > to extend your tablespace manually? Do you use DBMS_ALERT and > > read the v$ > > views and then broadcast a message if you need to extend a tablespace? Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description: -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jared Still INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: RE: Locally Managed Tablespaces
AUTOEXTEND can be abused for sure, but it can also be a big time saver. Say you want to load 100 gigabytes of data, and you have 5 disks to spread it out on. You opt for 5 files of 4 gig each on each disk. That gives you 20 files to create in your tablespace. Creating 100 gig of datafiles takes awhile. If you start each file out as 500m with a next size of 500m and a max of 4g, you can defer the time spent creating the files to load time, rather than waiting around for 100g of files to be created before you start loading. Still takes the same amount of time, but you get to go home earlier. :) Jared On Friday 21 March 2003 18:23, Jacques Kilchoer wrote: > Well, my first suggestion would be to buy a software package from a > reputable software company that lets you predict object growth and an > estimate of when your tablespace will be full. Contact me for more details. > > :) > > But seriously, you can write a report that shows the number of extents and > the amount of freespace in each tablespace, and review the report > periodically (say once a week). Which is what I did back in my production > DBA days. I imagine you could have a database procedure that checks the > free space in a tablespace and sends you an e-mail, or even pages you if > you have e-mail forwarded to a pager. > Setting the datafiles to autoextend just pushes the problem back to the OS > level - how do you know when your disks will be full? > > > -Original Message- > > From: Ryan [mailto:[EMAIL PROTECTED] > > > > so for normal business you should not use autoextend? You > > should monitor it > > yourself? What are some tips for monitoring the database to > > see if you need > > to extend your tablespace manually? Do you use DBMS_ALERT and > > read the v$ > > views and then broadcast a message if you need to extend a tablespace? Content-Type: text/html; charset="iso-8859-1"; name="Attachment: 1" Content-Transfer-Encoding: quoted-printable Content-Description: -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jared Still INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
thanks for all the responses to such a basic question. - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Saturday, March 22, 2003 6:03 AM > The other pctincrease option that preserves a multiple of the extent > size is 100. > Similiar to LMT autoallocate extent sizes always being a multiple of 64K. > > Have Fun :) > > Rachel Carmichael wrote: > > >pctincrease=0 and set the storage parameters at the tablespace level > >and do NOT put storage parameters on the individual objects. > > > >you can "fake" the workings (without the bitmap!) of an LMT by doing > >that. Next extent=initial extent, pctincrease=0 will effectively > >allocate extents of equal sizes > > > > > >--- [EMAIL PROTECTED] wrote: > > > > > >>thanks in case I happen to work on a 7.3 database > >> > >>what kind of pctincrease should I set? What about the other settings? > >>Just curious. > >> > >>Ryan > >> > >> > >>>From: "BALA,PRAKASH (HP-USA,ex1)" <[EMAIL PROTECTED]> > >>>Date: 2003/03/21 Fri PM 12:54:41 EST > >>>To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > >>>Subject: RE: Locally Managed Tablespaces > >>> > >>>Once you set to uniform extents, pctincrease will default to 0. > >>> > >>>Most Oracle gurus advise to just use uniform extents for all > >>> > >>> > >>situations. > >> > >> > >>>-Original Message- > >>>Sent: Friday, March 21, 2003 10:59 > >>>To: Multiple recipients of list ORACLE-L > >>> > >>> > >>>This is probably pretty basic, so please keep in mind that Im a > >>> > >>> > >>developer > >> > >> > >>>and Im trying to pick up more of the DBA side. > >>> > >>>I am assuming that the preferred way to create a tablespace in 8i, > >>> > >>> > >>9i is as > >> > >> > >>>follows(this is out of OTN docs) > >>> > >>>CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' > >>> > >>> > >>SIZE 50M > >> > >> > >>>EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; > >>> > >>> > >>>When you use Uniform Extents you know longer have to worry about > >>> > >>> > >>tablespace > >> > >> > >>>fragmentation correct? You also do not need to worry > >>> > >>> > >>minimum,initial,and > >> > >> > >>>next extents correct? > >>> > >>>What are some rules of thumb for setting PCTINCREASE(there is > >>> > >>> > >>another PCT > >> > >> > >>>setting too right)? A DBA I used to work with said you should > >>> > >>> > >>almost always > >> > >> > >>>use zero for PCTINCREASE. Could someone please tell me why? The > >>> > >>> > >>default is > >> > >> > >>>like 40? > >>> > >>>Is there a time when I should not use Uniform Extents? > >>> > >>>Thanks... hope this isnt too basic. > >>> > >>>-- > >>>Please see the official ORACLE-L FAQ: http://www.orafaq.net > >>>-- > >>>Author: <[EMAIL PROTECTED] > >>> INET: [EMAIL PROTECTED] > >>> > >>>Fat City Network Services-- 858-538-5051 http://www.fatcity.com > >>>San Diego, California-- Mailing list and web hosting > >>> > >>> > >>services > >> > >> > >>- > >> > >> > >>>To REMOVE yourself from this mailing list, send an E-Mail message > >>>to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > >>>the message BODY, include a line containing: UNSUB ORACLE-L > >>>(or the name of mailing list you want to be removed from). You may > >>>also send the HELP command for other information (like > >>> > >>> > >>subscribing). > >> > >> > >>>
Re: Locally Managed Tablespaces
The other pctincrease option that preserves a multiple of the extent size is 100. Similiar to LMT autoallocate extent sizes always being a multiple of 64K. Have Fun :) Rachel Carmichael wrote: pctincrease=0 and set the storage parameters at the tablespace level and do NOT put storage parameters on the individual objects. you can "fake" the workings (without the bitmap!) of an LMT by doing that. Next extent=initial extent, pctincrease=0 will effectively allocate extents of equal sizes --- [EMAIL PROTECTED] wrote: thanks in case I happen to work on a 7.3 database what kind of pctincrease should I set? What about the other settings? Just curious. Ryan From: "BALA,PRAKASH (HP-USA,ex1)" <[EMAIL PROTECTED]> Date: 2003/03/21 Fri PM 12:54:41 EST To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Subject: RE: Locally Managed Tablespaces Once you set to uniform extents, pctincrease will default to 0. Most Oracle gurus advise to just use uniform extents for all situations. -Original Message- Sent: Friday, March 21, 2003 10:59 To: Multiple recipients of list ORACLE-L This is probably pretty basic, so please keep in mind that Im a developer and Im trying to pick up more of the DBA side. I am assuming that the preferred way to create a tablespace in 8i, 9i is as follows(this is out of OTN docs) CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' SIZE 50M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; When you use Uniform Extents you know longer have to worry about tablespace fragmentation correct? You also do not need to worry minimum,initial,and next extents correct? What are some rules of thumb for setting PCTINCREASE(there is another PCT setting too right)? A DBA I used to work with said you should almost always use zero for PCTINCREASE. Could someone please tell me why? The default is like 40? Is there a time when I should not use Uniform Extents? Thanks... hope this isnt too basic. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <[EMAIL PROTECTED] INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: BALA,PRAKASH (HP-USA,ex1) INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <[EMAIL PROTECTED] INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Chip INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
Title: RE: RE: Locally Managed Tablespaces Well, my first suggestion would be to buy a software package from a reputable software company that lets you predict object growth and an estimate of when your tablespace will be full. Contact me for more details. :) But seriously, you can write a report that shows the number of extents and the amount of freespace in each tablespace, and review the report periodically (say once a week). Which is what I did back in my production DBA days. I imagine you could have a database procedure that checks the free space in a tablespace and sends you an e-mail, or even pages you if you have e-mail forwarded to a pager. Setting the datafiles to autoextend just pushes the problem back to the OS level - how do you know when your disks will be full? > -Original Message- > From: Ryan [mailto:[EMAIL PROTECTED]] > > so for normal business you should not use autoextend? You > should monitor it > yourself? What are some tips for monitoring the database to > see if you need > to extend your tablespace manually? Do you use DBMS_ALERT and > read the v$ > views and then broadcast a message if you need to extend a tablespace?
Re: RE: Locally Managed Tablespaces
I knew I'd forget something :) it's been a while since I worked on 7.3 thanks! --- Jonathan Lewis <[EMAIL PROTECTED]> wrote: > > For 7.3 it is also important to set MINIMUM EXTENT > for the tablespace to match the initial and next - then > every extent has to be at worst a multiple of the minimum > extent size whatever a rogue user does. > > Regards > > Jonathan Lewis > http://www.jlcomp.demon.co.uk > > For one-day tutorials: > (see http://www.jlcomp.demon.co.uk/tutorial.html ) > > UK___April 8th > UK___April 22nd > Denmark May 21-23rd > USA_(FL)_May 2nd > > Next dates for the 3-day seminar: > (see http://www.jlcomp.demon.co.uk/seminar.html ) > UK_(Manchester)_May > Estonia___June (provisional) > USA_(CA, TX)_August > > The Co-operative Oracle Users' FAQ > http://www.jlcomp.demon.co.uk/faq/ind_faq.html > > > - Original Message - > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > Sent: 21 March 2003 19:20 > > > > pctincrease=0 and set the storage parameters at the tablespace > level > > and do NOT put storage parameters on the individual objects. > > > > you can "fake" the workings (without the bitmap!) of an LMT by > doing > > that. Next extent=initial extent, pctincrease=0 will effectively > > allocate extents of equal sizes > > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: Jonathan Lewis > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Rachel Carmichael INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
Title: RE: RE: Locally Managed Tablespaces I think minimum extent was a new parameter in 8.0. > -Original Message- > From: Jonathan Lewis [mailto:[EMAIL PROTECTED]] > > For 7.3 it is also important to set MINIMUM EXTENT > for the tablespace to match the initial and next - then > every extent has to be at worst a multiple of the minimum > extent size whatever a rogue user does.
Re: RE: Locally Managed Tablespaces
so for normal business you should not use autoextend? You should monitor it yourself? What are some tips for monitoring the database to see if you need to extend your tablespace manually? Do you use DBMS_ALERT and read the v$ views and then broadcast a message if you need to extend a tablespace? - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Friday, March 21, 2003 6:38 PM > FWIW I've come to think of autoextend as a valuable ally in certain cases. > > When loading data it's nice to enable autoextend when you don't know > how large you really need to have the database files. Create several > and set autoextend on, being sure that if all were to fill up, it won't > fill up > the drive, as that can cause some sticky problems. > > When upgrading a database, I may set autoextend on on the SYSTEM > datafiles so they don't run out. > > Along the same lines, I set maxextents to unlimited and monitor the number > of extents so that it is not unreasonable. Better to have a couple > thousand > extents during a data load that someone 'forgot' to inform you about than > to have the job die in the middle of the night. > > I think my 'reasonable' # of extents must be higher than yours Jacques. :) > > Jared > > > > > > > Jacques Kilchoer <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 03/21/2003 11:00 AM > Please respond to ORACLE-L > > > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > cc: > Subject:RE: RE: Locally Managed Tablespaces > > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > > > thanks in case I happen to work on a 7.3 database > > > > what kind of pctincrease should I set? What about the other > > settings? Just curious. > The current thinking is that uniform extents are a good thing. > So in 7.3, try and "manually" enforce uniform extents: > initial = next for all clusters/tables/indexes in the same tablespace > pctincrease=0 for all objects > These should of course be the settings for the DEFAULT STORAGE clause on > the create tablespace. Then to create a cluster/table/index you can > (should?) use tablespace defaults and skip the storage parameter on the > CREATE cluster/table/index statement. > My personal opinion: always use maxextents unlimited but put your object > in a tablespace where the values of INITIAL and NEXT will prevent the > object from having more than 1000 extents. > Autoextend datafiles: my personal opinion is don't use those, because you > should have an idea of how and when your database is going to grow, and if > you need more space it's nice to be aware of it. Of course this means the > risk of failure when a datafile is full, but the same thing can happen > with autoextend when the disk gets full. > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ryan INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
Title: RE: RE: Locally Managed Tablespaces > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > I think my 'reasonable' # of extents must be higher than > yours Jacques. :) I agree that having a datafile autoextend is better than having a job die. On the other hand a poorly written job that runs amuck can be stopped before creating too much damage if you set limits on your datafile sizes. But yes, autoextend definitely has its uses. As far as my suggested maximum of 1000 extents: some people give me grief about that. I have worked mostly in development environments and so I might be out of touch. But 1000 extents should be plenty for anybody. When is the last time you had to drop a table with 1 extents, and have the developer looking over your shoulder tell you "In Access when you drop a table it's instantaneous?"
Re: RE: Locally Managed Tablespaces
For 7.3 it is also important to set MINIMUM EXTENT for the tablespace to match the initial and next - then every extent has to be at worst a multiple of the minimum extent size whatever a rogue user does. Regards Jonathan Lewis http://www.jlcomp.demon.co.uk For one-day tutorials: (see http://www.jlcomp.demon.co.uk/tutorial.html ) UK___April 8th UK___April 22nd Denmark May 21-23rd USA_(FL)_May 2nd Next dates for the 3-day seminar: (see http://www.jlcomp.demon.co.uk/seminar.html ) UK_(Manchester)_May Estonia___June (provisional) USA_(CA, TX)_August The Co-operative Oracle Users' FAQ http://www.jlcomp.demon.co.uk/faq/ind_faq.html - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: 21 March 2003 19:20 > pctincrease=0 and set the storage parameters at the tablespace level > and do NOT put storage parameters on the individual objects. > > you can "fake" the workings (without the bitmap!) of an LMT by doing > that. Next extent=initial extent, pctincrease=0 will effectively > allocate extents of equal sizes -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jonathan Lewis INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
FWIW I've come to think of autoextend as a valuable ally in certain cases. When loading data it's nice to enable autoextend when you don't know how large you really need to have the database files. Create several and set autoextend on, being sure that if all were to fill up, it won't fill up the drive, as that can cause some sticky problems. When upgrading a database, I may set autoextend on on the SYSTEM datafiles so they don't run out. Along the same lines, I set maxextents to unlimited and monitor the number of extents so that it is not unreasonable. Better to have a couple thousand extents during a data load that someone 'forgot' to inform you about than to have the job die in the middle of the night. I think my 'reasonable' # of extents must be higher than yours Jacques. :) Jared Jacques Kilchoer <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/21/2003 11:00 AM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject:RE: RE: Locally Managed Tablespaces > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > thanks in case I happen to work on a 7.3 database > > what kind of pctincrease should I set? What about the other > settings? Just curious. The current thinking is that uniform extents are a good thing. So in 7.3, try and "manually" enforce uniform extents: initial = next for all clusters/tables/indexes in the same tablespace pctincrease=0 for all objects These should of course be the settings for the DEFAULT STORAGE clause on the create tablespace. Then to create a cluster/table/index you can (should?) use tablespace defaults and skip the storage parameter on the CREATE cluster/table/index statement. My personal opinion: always use maxextents unlimited but put your object in a tablespace where the values of INITIAL and NEXT will prevent the object from having more than 1000 extents. Autoextend datafiles: my personal opinion is don't use those, because you should have an idea of how and when your database is going to grow, and if you need more space it's nice to be aware of it. Of course this means the risk of failure when a datafile is full, but the same thing can happen with autoextend when the disk gets full. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: RE: Locally Managed Tablespaces
pctincrease=0 and set the storage parameters at the tablespace level and do NOT put storage parameters on the individual objects. you can "fake" the workings (without the bitmap!) of an LMT by doing that. Next extent=initial extent, pctincrease=0 will effectively allocate extents of equal sizes --- [EMAIL PROTECTED] wrote: > thanks in case I happen to work on a 7.3 database > > what kind of pctincrease should I set? What about the other settings? > Just curious. > > Ryan > > > > From: "BALA,PRAKASH (HP-USA,ex1)" <[EMAIL PROTECTED]> > > Date: 2003/03/21 Fri PM 12:54:41 EST > > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > > Subject: RE: Locally Managed Tablespaces > > > > Once you set to uniform extents, pctincrease will default to 0. > > > > Most Oracle gurus advise to just use uniform extents for all > situations. > > > > -Original Message- > > Sent: Friday, March 21, 2003 10:59 > > To: Multiple recipients of list ORACLE-L > > > > > > This is probably pretty basic, so please keep in mind that Im a > developer > > and Im trying to pick up more of the DBA side. > > > > I am assuming that the preferred way to create a tablespace in 8i, > 9i is as > > follows(this is out of OTN docs) > > > > CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' > SIZE 50M > > EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; > > > > > > When you use Uniform Extents you know longer have to worry about > tablespace > > fragmentation correct? You also do not need to worry > minimum,initial,and > > next extents correct? > > > > What are some rules of thumb for setting PCTINCREASE(there is > another PCT > > setting too right)? A DBA I used to work with said you should > almost always > > use zero for PCTINCREASE. Could someone please tell me why? The > default is > > like 40? > > > > Is there a time when I should not use Uniform Extents? > > > > Thanks... hope this isnt too basic. > > > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.net > > -- > > Author: <[EMAIL PROTECTED] > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > > San Diego, California-- Mailing list and web hosting > services > > > - > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like > subscribing). > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.net > > -- > > Author: BALA,PRAKASH (HP-USA,ex1) > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > > San Diego, California-- Mailing list and web hosting > services > > > - > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like > subscribing). > > > > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: <[EMAIL PROTECTED] > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Rachel Carmichael INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: RE: Locally Managed Tablespaces
Title: RE: RE: Locally Managed Tablespaces > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > thanks in case I happen to work on a 7.3 database > > what kind of pctincrease should I set? What about the other > settings? Just curious. The current thinking is that uniform extents are a good thing. So in 7.3, try and "manually" enforce uniform extents: initial = next for all clusters/tables/indexes in the same tablespace pctincrease=0 for all objects These should of course be the settings for the DEFAULT STORAGE clause on the create tablespace. Then to create a cluster/table/index you can (should?) use tablespace defaults and skip the storage parameter on the CREATE cluster/table/index statement. My personal opinion: always use maxextents unlimited but put your object in a tablespace where the values of INITIAL and NEXT will prevent the object from having more than 1000 extents. Autoextend datafiles: my personal opinion is don't use those, because you should have an idea of how and when your database is going to grow, and if you need more space it's nice to be aware of it. Of course this means the risk of failure when a datafile is full, but the same thing can happen with autoextend when the disk gets full.
Re: RE: Locally Managed Tablespaces
thanks in case I happen to work on a 7.3 database what kind of pctincrease should I set? What about the other settings? Just curious. Ryan > > From: "BALA,PRAKASH (HP-USA,ex1)" <[EMAIL PROTECTED]> > Date: 2003/03/21 Fri PM 12:54:41 EST > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Subject: RE: Locally Managed Tablespaces > > Once you set to uniform extents, pctincrease will default to 0. > > Most Oracle gurus advise to just use uniform extents for all situations. > > -Original Message- > Sent: Friday, March 21, 2003 10:59 > To: Multiple recipients of list ORACLE-L > > > This is probably pretty basic, so please keep in mind that Im a developer > and Im trying to pick up more of the DBA side. > > I am assuming that the preferred way to create a tablespace in 8i, 9i is as > follows(this is out of OTN docs) > > CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' SIZE 50M > EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; > > > When you use Uniform Extents you know longer have to worry about tablespace > fragmentation correct? You also do not need to worry minimum,initial,and > next extents correct? > > What are some rules of thumb for setting PCTINCREASE(there is another PCT > setting too right)? A DBA I used to work with said you should almost always > use zero for PCTINCREASE. Could someone please tell me why? The default is > like 40? > > Is there a time when I should not use Uniform Extents? > > Thanks... hope this isnt too basic. > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: <[EMAIL PROTECTED] > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: BALA,PRAKASH (HP-USA,ex1) > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > > -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <[EMAIL PROTECTED] INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
Once you set to uniform extents, pctincrease will default to 0. Most Oracle gurus advise to just use uniform extents for all situations. -Original Message- Sent: Friday, March 21, 2003 10:59 To: Multiple recipients of list ORACLE-L This is probably pretty basic, so please keep in mind that Im a developer and Im trying to pick up more of the DBA side. I am assuming that the preferred way to create a tablespace in 8i, 9i is as follows(this is out of OTN docs) CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' SIZE 50M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; When you use Uniform Extents you know longer have to worry about tablespace fragmentation correct? You also do not need to worry minimum,initial,and next extents correct? What are some rules of thumb for setting PCTINCREASE(there is another PCT setting too right)? A DBA I used to work with said you should almost always use zero for PCTINCREASE. Could someone please tell me why? The default is like 40? Is there a time when I should not use Uniform Extents? Thanks... hope this isnt too basic. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <[EMAIL PROTECTED] INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: BALA,PRAKASH (HP-USA,ex1) INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
RG Here is a Web page that explains it pretty well. http://www.samoratech.com/TopicOfInterest/swLMT.htm You need to decide whether you want your data file to autoextend. I can't recall if that is the default or not. You can't set pctincrease for the tablespace and if you think about it, it doesn't make much sense anyway with uniform extents. You just want it to take an extent when it needs one. There is no value for taking multiple extents at a time. I haven't found a time not to use uniform extents. Dennis Williams DBA, 40%OCP, 100% DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, March 21, 2003 9:59 AM To: Multiple recipients of list ORACLE-L This is probably pretty basic, so please keep in mind that Im a developer and Im trying to pick up more of the DBA side. I am assuming that the preferred way to create a tablespace in 8i, 9i is as follows(this is out of OTN docs) CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' SIZE 50M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; When you use Uniform Extents you know longer have to worry about tablespace fragmentation correct? You also do not need to worry minimum,initial,and next extents correct? What are some rules of thumb for setting PCTINCREASE(there is another PCT setting too right)? A DBA I used to work with said you should almost always use zero for PCTINCREASE. Could someone please tell me why? The default is like 40? Is there a time when I should not use Uniform Extents? Thanks... hope this isnt too basic. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <[EMAIL PROTECTED] INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
PCTINCREASE is not relevant if you are using locally managed tablespaces. The DBA did tell you correctly, but he/she meant for dictionary managed tablespaces, not LMT. In 8i, the SYSTEM tablespace still has to be dictionary managed, while in 9i the default is now LMT --- [EMAIL PROTECTED] wrote: > This is probably pretty basic, so please keep in mind that Im a > developer and Im trying to pick up more of the DBA side. > > I am assuming that the preferred way to create a tablespace in 8i, 9i > is as follows(this is out of OTN docs) > > CREATE TABLESPACE lmtbsb DATAFILE '/u02/oracle/data/lmtbsb01.dbf' > SIZE 50M > EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K; > > > When you use Uniform Extents you know longer have to worry about > tablespace fragmentation correct? You also do not need to worry > minimum,initial,and next extents correct? > > What are some rules of thumb for setting PCTINCREASE(there is another > PCT setting too right)? A DBA I used to work with said you should > almost always use zero for PCTINCREASE. Could someone please tell me > why? The default is like 40? > > Is there a time when I should not use Uniform Extents? > > Thanks... hope this isnt too basic. > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: <[EMAIL PROTECTED] > INET: [EMAIL PROTECTED] > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com > San Diego, California-- Mailing list and web hosting services > - > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Rachel Carmichael INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
But she is missing from this list for a while...Hope to see her again Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Fri, 14 Jun 2002 11:51:37 -0800 I concur. Anita's one of the most knowledgeable replication people to ever grace this list. Jared "Gogala, Mladen" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 06/14/2002 12:28 PM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject: RE: Locally Managed Tablespaces Well, not really. I did that by slightly modifying sql.bsq in 8.1.7.2, but I'm not quite sure that modifying sql.bsq is something that Oracle Support likes to hear about... You can do it in a supported way as of 9.2. The same goes for renaming a user. One or two quick updates of the sys.user$ table and it is done. Again, your favorite support engineer will not like that. BTW, my favorite support engineer is Anita Bardeen from FLA. She's great! > -Original Message- > From: Rachel Carmichael [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 2:57 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally Managed Tablespaces > > > only in 9.2 can system be an lmt > > > --- [EMAIL PROTECTED] wrote: > > I am using 9.0.1 - can the system tablespace be setup as lmt? Or is > > that new in 9.2? > > > > Michele > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing > > Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like subscribing). > > > __ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Rachel Carmichael > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Gogala, Mladen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Mohammad Rafiq INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists
RE: Locally Managed Tablespaces
Yeah Anita is my favorite support engineer too... except that she's not on the "front lines" of support anymore :( But I think she's going to be able to come to NY to present for the user group in December. We're looking into it now :) You are right, knowing the members of this list I should have said "only in 9.2 is it supported for system to be an lmt" --- "Gogala, Mladen" <[EMAIL PROTECTED]> wrote: > Well, not really. I did that by slightly modifying sql.bsq > in 8.1.7.2, but I'm not quite sure that modifying sql.bsq > is something that Oracle Support likes to hear about... > You can do it in a supported way as of 9.2. > The same goes for renaming a user. One or two quick updates > of the sys.user$ table and it is done. Again, your favorite > support engineer will not like that. BTW, my favorite support > engineer is Anita Bardeen from FLA. She's great! > > > -Original Message- > > From: Rachel Carmichael [mailto:[EMAIL PROTECTED]] > > Sent: Friday, June 14, 2002 2:57 PM > > To: Multiple recipients of list ORACLE-L > > Subject: RE: Locally Managed Tablespaces > > > > > > only in 9.2 can system be an lmt > > > > > > --- [EMAIL PROTECTED] wrote: > > > I am using 9.0.1 - can the system tablespace be setup as lmt? Or > is > > > that new in 9.2? > > > > > > Michele > > > -- > > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > -- > > > Author: > > > INET: [EMAIL PROTECTED] > > > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) > 538-5051 > > > San Diego, California-- Public Internet access / Mailing > > > Lists > > > > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and > in > > > the message BODY, include a line containing: UNSUB ORACLE-L > > > (or the name of mailing list you want to be removed from). You > may > > > also send the HELP command for other information (like > subscribing). > > > > > > __ > > Do You Yahoo!? > > Yahoo! - Official partner of 2002 FIFA World Cup > > http://fifaworldcup.yahoo.com > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: Rachel Carmichael > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing > Lists > > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like > subscribing). > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Gogala, Mladen > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing > Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Rachel Carmichael INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
I concur. Anita's one of the most knowledgeable replication people to ever grace this list. Jared "Gogala, Mladen" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 06/14/2002 12:28 PM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject: RE: Locally Managed Tablespaces Well, not really. I did that by slightly modifying sql.bsq in 8.1.7.2, but I'm not quite sure that modifying sql.bsq is something that Oracle Support likes to hear about... You can do it in a supported way as of 9.2. The same goes for renaming a user. One or two quick updates of the sys.user$ table and it is done. Again, your favorite support engineer will not like that. BTW, my favorite support engineer is Anita Bardeen from FLA. She's great! > -Original Message- > From: Rachel Carmichael [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 2:57 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally Managed Tablespaces > > > only in 9.2 can system be an lmt > > > --- [EMAIL PROTECTED] wrote: > > I am using 9.0.1 - can the system tablespace be setup as lmt? Or is > > that new in 9.2? > > > > Michele > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing > > Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like subscribing). > > > __ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Rachel Carmichael > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Gogala, Mladen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
Well, not really. I did that by slightly modifying sql.bsq in 8.1.7.2, but I'm not quite sure that modifying sql.bsq is something that Oracle Support likes to hear about... You can do it in a supported way as of 9.2. The same goes for renaming a user. One or two quick updates of the sys.user$ table and it is done. Again, your favorite support engineer will not like that. BTW, my favorite support engineer is Anita Bardeen from FLA. She's great! > -Original Message- > From: Rachel Carmichael [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 2:57 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally Managed Tablespaces > > > only in 9.2 can system be an lmt > > > --- [EMAIL PROTECTED] wrote: > > I am using 9.0.1 - can the system tablespace be setup as lmt? Or is > > that new in 9.2? > > > > Michele > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing > > Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like subscribing). > > > __ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Rachel Carmichael > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Gogala, Mladen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
only in 9.2 can system be an lmt --- [EMAIL PROTECTED] wrote: > I am using 9.0.1 - can the system tablespace be setup as lmt? Or is > that new in 9.2? > > Michele > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing > Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Rachel Carmichael INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
9.2 [EMAIL PROTECTED] wrote: >I am using 9.0.1 - can the system tablespace be setup as lmt? Or is that new in 9.2? > >Michele > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Joe Testa INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
That is new in 9.2. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 14, 2002 2:04 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally Managed Tablespaces > > > I am using 9.0.1 - can the system tablespace be setup as lmt? > Or is that new in 9.2? > > Michele > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Gogala, Mladen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
only in 9.2 ... that's the default. Raj __ Rajendra Jamadagni MIS, ESPN Inc. Rajendra dot Jamadagni at ESPN dot com Any opinion expressed here is personal and doesn't reflect that of ESPN Inc. QOTD: Any clod can have facts, but having an opinion is an art! -Original Message- Sent: Friday, June 14, 2002 2:04 PM To: Multiple recipients of list ORACLE-L I am using 9.0.1 - can the system tablespace be setup as lmt? Or is that new in 9.2? Michele -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). *This e-mail message is confidential, intended only for the named recipient(s) above and may contain information that is privileged, attorney work product or exempt from disclosure under applicable law. If you have received this message in error, or are not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 and delete this e-mail message from your computer, Thank you.*2
RE: Locally Managed Tablespaces
I am using 9.0.1 - can the system tablespace be setup as lmt? Or is that new in 9.2? Michele -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
One can 'plug' in a DMT via TTS. but can not make it writable... ;) - Kirti -Original Message- Sent: Thursday, June 13, 2002 12:39 PM To: Multiple recipients of list ORACLE-L I would treat dmt's as obsolete. (In 9.2, all tablespaces default to locally managed, and furthermore, if you create system as lmt in 9.2, all subsequent tablespaces must also be lmt).. I would not be surprised to see dmt's disappear altogether at some stage in future. hth connor --- [EMAIL PROTECTED] wrote: > Hi All, > > I am setting up a 9i instance and am wondering if > there are any tablespaces that you would not set up > as locally managed. Would system and rollback > tablespaces be set up as dictionary managed or > locally managed? Are there any guidelines when > considering lmt or dmt? > > Thanks, > Michele Armstrong > -- -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Deshpande, Kirti INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
I would treat dmt's as obsolete. (In 9.2, all tablespaces default to locally managed, and furthermore, if you create system as lmt in 9.2, all subsequent tablespaces must also be lmt).. I would not be surprised to see dmt's disappear altogether at some stage in future. hth connor --- [EMAIL PROTECTED] wrote: > Hi All, > > I am setting up a 9i instance and am wondering if > there are any tablespaces that you would not set up > as locally managed. Would system and rollback > tablespaces be set up as dictionary managed or > locally managed? Are there any guidelines when > considering lmt or dmt? > > Thanks, > Michele Armstrong > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Connor McDonald http://www.oracledba.co.uk http://www.oaktable.net "Some days you're the pigeon, some days you're the statue" __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?Connor=20McDonald?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces/What a DBA can do ?
When you backup, temporary tablespace does not need to be backed up and it is not a required tablespace for creating/bringing up database. My hot backup does not include temporary tablespace and I was many times able to restore/recovery the database without any problem. -Original Message- Sent: Wednesday, April 17, 2002 4:59 PM To: Multiple recipients of list ORACLE-L The poster implied he was going to change the temporary tablespace to locally managed. > > > > > to some of the other org's, so maybe staying > > > with > > > > > dictionary-managed would > > > > > be > > > > > best, except for the temporary tablespace. > > > > > > > > > > Darren. All of my production databases are still dictionary managed. I played around with locally managed tablespaces a while back on a test server, and when I ran a generic hot backup script, which attempted to dynamically put each tablespace in backup mode, it failed on the temporary tablespace. Of course all other tablespaces were successful (as you pointed out). Hopefully he would be doing this in a test environment first anyway, but I was just pointing out that he may want to test backup/recovery after converting. Rob Pegram Oracle Certified DBA --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > That's not a temp tablespace (TEMP_DATA_A). It's a > place to put temporary > load tables. My temporary tablespace is TEMP, which > is dictionary. From > the research I did on LMT's before I decided to use > them, it looked like > there were several bugs associated with temporary > tablespaces being LMT's so > I left my temporary ts dictionary. > > LK > > > > -Original Message- > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, April 17, 2002 11:34 AM > > To: Multiple recipients of list ORACLE-L > > Subject:RE: Locally managed tablespaces/What a > DBA can do ? > > > > What about your locally managed "temporary" > > tablespace? > > > > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> > wrote: > > > What? I was just able to do it. 8.1.7, W2K > > > > > > (INV-SYSTEM)>@ts > > > > > > TS_NAME LMT MB_FREE MB_TOTAL > > > PCT_USED > > > --- -- - - > > > - > > > LOAD_DATA_A LOCAL740 2000 > > > > 63 > > > LRG_INDEX_A LOCAL390 2500 > > > > 84.4 > > > LRG_INDEX_B LOCAL980 1000 > > > > 2 > > > LRG_TABLE_A LOCAL 2440 4000 > > > > 39 > > > LRG_TABLE_B LOCAL360 1000 > > > > 64 > > > MED_INDEX_A LOCAL480 1000 > > > > 52 > > > MED_TABLE_A LOCAL680 1000 > > > > 32 > > > RBS DICTIONARY 299 1000 > > > > 70.1 > > > SMALL_INDEX_A LOCAL183 200 > > > > 8.5 > > > SMALL_TABLE_A LOCAL169 200 > > > > 15.5 > > > SYSTEM DICTIONARY 110 200 > > > > 45 > > > TEMPDICTIONARY 961 1000 > > > > 3.9 > > > TEMP_DATA_A LOCAL900 1000 > > > > 10 > > > TOOLS LOCAL 1920 > > > > 5 > > > USERS LOCAL 3475 > > > > 54.7 > > > > > > 15 rows selected. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > > backup; > > > > > > Tablespace altered. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > > backup; > > > > > > Tablespace altered. > > > > > > > > > > > > > -Original Message- > > > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > > Sent: Wednesday, April 17, 2002 9:58 AM > > > > To: Multiple recipients of list ORACLE-L > > > > Subject:RE: Locally managed tablespaces/What > a > > > DBA can do ? > > > > > > > > Darren, > > > > > > > > If using a hot backup strategy (other than > Rman), > > > > make sure to test your backup/recovery if you > > > switch > > > > the temp
RE: Locally managed tablespaces/What a DBA can do ?
The poster implied he was going to change the temporary tablespace to locally managed. > > > > > to some of the other org's, so maybe staying > > > with > > > > > dictionary-managed would > > > > > be > > > > > best, except for the temporary tablespace. > > > > > > > > > > Darren. All of my production databases are still dictionary managed. I played around with locally managed tablespaces a while back on a test server, and when I ran a generic hot backup script, which attempted to dynamically put each tablespace in backup mode, it failed on the temporary tablespace. Of course all other tablespaces were successful (as you pointed out). Hopefully he would be doing this in a test environment first anyway, but I was just pointing out that he may want to test backup/recovery after converting. Rob Pegram Oracle Certified DBA --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > That's not a temp tablespace (TEMP_DATA_A). It's a > place to put temporary > load tables. My temporary tablespace is TEMP, which > is dictionary. From > the research I did on LMT's before I decided to use > them, it looked like > there were several bugs associated with temporary > tablespaces being LMT's so > I left my temporary ts dictionary. > > LK > > > > -Original Message- > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, April 17, 2002 11:34 AM > > To: Multiple recipients of list ORACLE-L > > Subject:RE: Locally managed tablespaces/What a > DBA can do ? > > > > What about your locally managed "temporary" > > tablespace? > > > > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> > wrote: > > > What? I was just able to do it. 8.1.7, W2K > > > > > > (INV-SYSTEM)>@ts > > > > > > TS_NAME LMT MB_FREE MB_TOTAL > > > PCT_USED > > > --- -- - - > > > - > > > LOAD_DATA_A LOCAL740 2000 > > > > 63 > > > LRG_INDEX_A LOCAL390 2500 > > > > 84.4 > > > LRG_INDEX_B LOCAL980 1000 > > > > 2 > > > LRG_TABLE_A LOCAL 2440 4000 > > > > 39 > > > LRG_TABLE_B LOCAL360 1000 > > > > 64 > > > MED_INDEX_A LOCAL480 1000 > > > > 52 > > > MED_TABLE_A LOCAL680 1000 > > > > 32 > > > RBS DICTIONARY 299 1000 > > > > 70.1 > > > SMALL_INDEX_A LOCAL183 200 > > > > 8.5 > > > SMALL_TABLE_A LOCAL169 200 > > > > 15.5 > > > SYSTEM DICTIONARY 110 200 > > > > 45 > > > TEMPDICTIONARY 961 1000 > > > > 3.9 > > > TEMP_DATA_A LOCAL900 1000 > > > > 10 > > > TOOLS LOCAL 1920 > > > > 5 > > > USERS LOCAL 3475 > > > > 54.7 > > > > > > 15 rows selected. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > > backup; > > > > > > Tablespace altered. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > > backup; > > > > > > Tablespace altered. > > > > > > > > > > > > > -Original Message- > > > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > > Sent: Wednesday, April 17, 2002 9:58 AM > > > > To: Multiple recipients of list ORACLE-L > > > > Subject:RE: Locally managed tablespaces/What > a > > > DBA can do ? > > > > > > > > Darren, > > > > > > > > If using a hot backup strategy (other than > Rman), > > > > make sure to test your backup/recovery if you > > > switch > > > > the temporary tablespace to locally managed. > You > > > > can't put a locally managed temporary > tablespace > > > in > > > > backup mode. > > > > > > > > Rob Pegram > > > > Oracle Certified DBA > > > > > > > > > > > > > > > > SQL> create
RE: Locally managed tablespaces/What a DBA can do ?
I have upgraded 8.1.6 to 8.1.7.2(32-bit) on HP-UX 11.0 64-bit machine and use LMT on all my databases. They run fine and one of the database has been running over 1 year now. -Original Message- Sent: Wednesday, April 17, 2002 12:59 PM To: Multiple recipients of list ORACLE-L Rafiq, I upgraded an HP-UX 11.0 64-bit machine in early April. (8.1.6.3.0 to 8.1.7.3.0) It was the worst upgrade I've ever gone through, but everthing appears to be running normally. (I'm not using locally managed tablespaces yet though.) I was missing a couple of operating system patches and the machine isn't the quickest in the world (and I have 3 databases on that machine). I plan on upgrading another HP-UX 11.0 64-bit machine to 8.1.7.3.0 by the end of the month. I'm a little nervous about 8.1.7.3.0 on Solaris 7, so I'm going to do some reading before taking the databases to either 8.1.7.2.0 or 8.1.7.3.0. HTH, Julie Julie Fisher Sandia National Laboratories Oracle 8i DBA - OCP8i Solaris 2.6,7/HP-UX 11.0 System Administrator Web Server Administrator -Original Message- Sent: Wednesday, April 17, 2002 1:04 PM To: Multiple recipients of list ORACLE-L Lisa, Thanks. I saw couple of messages today about problems with 8.1.7.3 on Solaris. We are also thinking to move to 8.1.7.3 on HP-UX 11 in near future but now we have to wait and see for a while. Regards Rafiq -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Fisher, Julie INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Wong, Bing INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces/What a DBA can do ?
Julie, We are also going through same exercise now a days as we are moving to new HP hardware with HP-UX 11 64 bits with Hitachi Storage. These machines do not run on 32 bit Unix. However we are still using 32 bit Oracle and Oracle Financials 10.7 char software. In our situation we have to change blocksize from 4k to 16k , we created 8.1.7.2 database with locally managed tablespaces and imported our 8.1.6.2 database there. So far so good in testing. These new box (3 of them)will go in production in 3/4 weeks time and then we will upgrade to 8.1.7.3(except Oracle Financials)once we feel comfortable. We are HP shop. Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Wed, 17 Apr 2002 11:59:26 -0800 Rafiq, I upgraded an HP-UX 11.0 64-bit machine in early April. (8.1.6.3.0 to 8.1.7.3.0) It was the worst upgrade I've ever gone through, but everthing appears to be running normally. (I'm not using locally managed tablespaces yet though.) I was missing a couple of operating system patches and the machine isn't the quickest in the world (and I have 3 databases on that machine). I plan on upgrading another HP-UX 11.0 64-bit machine to 8.1.7.3.0 by the end of the month. I'm a little nervous about 8.1.7.3.0 on Solaris 7, so I'm going to do some reading before taking the databases to either 8.1.7.2.0 or 8.1.7.3.0. HTH, Julie Julie Fisher Sandia National Laboratories Oracle 8i DBA - OCP8i Solaris 2.6,7/HP-UX 11.0 System Administrator Web Server Administrator -Original Message- Sent: Wednesday, April 17, 2002 1:04 PM To: Multiple recipients of list ORACLE-L Lisa, Thanks. I saw couple of messages today about problems with 8.1.7.3 on Solaris. We are also thinking to move to 8.1.7.3 on HP-UX 11 in near future but now we have to wait and see for a while. Regards Rafiq -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Fisher, Julie INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). MOHAMMAD RAFIQ _ Chat with friends online, try MSN Messenger: http://messenger.msn.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Mohammad Rafiq INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces/What a DBA can do ?
My TEMP tablespace is a locally managed temporary tablespace using a tempfile (not datafile). See results below; SQL> alter tablespace TEMP begin backup; alter tablespace TEMP begin backup * ERROR at line 1: ORA-03217: invalid option for alter of TEMPORARY TABLESPACE which makes perfect sense, because you wouldn't want to restore that sucker anyway. Here's the skinny from Oracle: cause: Alter database and alter tablespace will not work on locally managed tempfiles as they have no reference in the data dictionary. There is no need to back up the tempfiles as they are used and destroyed every time you start up and shut down the database. fix: There is no need to backup the temporary locally manged tablespaces because: 1. Locally managed tempfiles are always set to NOLOGGING mode. So thus will have no undo. 2. Extents are managed by bitmap in each datafile to keep track of free or used status of blocks in that datafile. 3. The data dictionary does not manage the tablespace. 4. Rollback information is not generated because there is no update on the data dictionary. 5. Media recovery does not recognize tempfiles. > -Original Message- > From: Robert Pegram [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 17, 2002 11:34 AM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > > What about your locally managed "temporary" > tablespace? > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > > What? I was just able to do it. 8.1.7, W2K > > > > (INV-SYSTEM)>@ts > > > > TS_NAME LMT MB_FREE MB_TOTAL > > PCT_USED > > --- -- - - > > - > > LOAD_DATA_A LOCAL740 2000 > > 63 > > LRG_INDEX_A LOCAL390 2500 > > 84.4 > > LRG_INDEX_B LOCAL980 1000 > > 2 > > LRG_TABLE_A LOCAL 2440 4000 > > 39 > > LRG_TABLE_B LOCAL360 1000 > > 64 > > MED_INDEX_A LOCAL480 1000 > > 52 > > MED_TABLE_A LOCAL680 1000 > > 32 > > RBS DICTIONARY 299 1000 > > 70.1 > > SMALL_INDEX_A LOCAL183 200 > > 8.5 > > SMALL_TABLE_A LOCAL169 200 > > 15.5 > > SYSTEM DICTIONARY 110 200 > > 45 > > TEMPDICTIONARY 961 1000 > > 3.9 > > TEMP_DATA_A LOCAL900 1000 > > 10 > > TOOLS LOCAL 1920 > > 5 > > USERS LOCAL 3475 > > 54.7 > > > > 15 rows selected. > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > backup; > > > > Tablespace altered. > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > backup; > > > > Tablespace altered. > > > > > > > > > -Original Message- > > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > Sent: Wednesday, April 17, 2002 9:58 AM > > > To: Multiple recipients of list ORACLE-L > > > Subject: RE: Locally managed tablespaces/What a > > DBA can do ? > > > > > > Darren, > > > > > > If using a hot backup strategy (other than Rman), > > > make sure to test your backup/recovery if you > > switch > > > the temporary tablespace to locally managed. You > > > can't put a locally managed temporary tablespace > > in > > > backup mode. > > > > > > Rob Pegram > > > Oracle Certified DBA > > > > > > > > > > > > SQL> create tablespace temp_dict > > > 2 datafile 'c:oracleoradataorclemp_dict.dbf' > > size > > > 10M > > > 3 default storage (initial 1M next 1M > > maxextents > > > unlimited pctincrease 0) > > > 4* temporary > > > SQL> / > > > > > > Tablespace created. > > > > > > SQL> create temporary tablespace temp_local > > > 2 tempfile 'c:oracleoradataorclemp_local.dbf' > > size > > > 10M > > > 3 extent management local > > > 4 uniform size 1M; > > > > > > Tablespace created. > > > > > > > > > SQL> alter tablespace temp_dict begin backup; > > > > > > T
RE: Locally managed tablespaces/What a DBA can do ?
Rafiq, I upgraded an HP-UX 11.0 64-bit machine in early April. (8.1.6.3.0 to 8.1.7.3.0) It was the worst upgrade I've ever gone through, but everthing appears to be running normally. (I'm not using locally managed tablespaces yet though.) I was missing a couple of operating system patches and the machine isn't the quickest in the world (and I have 3 databases on that machine). I plan on upgrading another HP-UX 11.0 64-bit machine to 8.1.7.3.0 by the end of the month. I'm a little nervous about 8.1.7.3.0 on Solaris 7, so I'm going to do some reading before taking the databases to either 8.1.7.2.0 or 8.1.7.3.0. HTH, Julie Julie Fisher Sandia National Laboratories Oracle 8i DBA - OCP8i Solaris 2.6,7/HP-UX 11.0 System Administrator Web Server Administrator -Original Message- Sent: Wednesday, April 17, 2002 1:04 PM To: Multiple recipients of list ORACLE-L Lisa, Thanks. I saw couple of messages today about problems with 8.1.7.3 on Solaris. We are also thinking to move to 8.1.7.3 on HP-UX 11 in near future but now we have to wait and see for a while. Regards Rafiq -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Fisher, Julie INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces/What a DBA can do ?
Lisa, Thanks. I saw couple of messages today about problems with 8.1.7.3 on Solaris. We are also thinking to move to 8.1.7.3 on HP-UX 11 in near future but now we have to wait and see for a while. Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Wed, 17 Apr 2002 10:21:07 -0800 Hi Rafiq, Sorry. I'm 8.1.7.3 on W2K. It's very possible that things have changed drastically since last year when I created this database. If I remember right there was an issue with export. I may be off my rocker, because nothing is exported out of a temporary tablespace. LK > -Original Message- > From:Mohammad Rafiq [SMTP:[EMAIL PROTECTED]] > Sent:Wednesday, April 17, 2002 1:54 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > Lisa, > What version you are talking about? I am using locally managed tablesspace > > with uniform extents for temporary tablespace with tempfile for last one > year with oracle version 8.1.6.2 on HP-UX 11 for datawarehouse database > without any issue/problem. Now we have migrated it to 8.1.7.2 and put it > into production in a month time... > > Regards > Rafiq > > > > > Reply-To: [EMAIL PROTECTED] > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Date: Wed, 17 Apr 2002 08:53:45 -0800 > > That's not a temp tablespace (TEMP_DATA_A). It's a place to put temporary > load tables. My temporary tablespace is TEMP, which is dictionary. From > the research I did on LMT's before I decided to use them, it looked like > there were several bugs associated with temporary tablespaces being LMT's > so > I left my temporary ts dictionary. > > LK > > > > -Original Message- > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, April 17, 2002 11:34 AM > > To: Multiple recipients of list ORACLE-L > > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > > > What about your locally managed "temporary" > > tablespace? > > > > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > > > What? I was just able to do it. 8.1.7, W2K > > > > > > (INV-SYSTEM)>@ts > > > > > > TS_NAME LMT MB_FREE MB_TOTAL > > > PCT_USED > > > --- -- - - > > > - > > > LOAD_DATA_A LOCAL740 2000 > > > 63 > > > LRG_INDEX_A LOCAL390 2500 > > > 84.4 > > > LRG_INDEX_B LOCAL980 1000 > > > 2 > > > LRG_TABLE_A LOCAL 2440 4000 > > > 39 > > > LRG_TABLE_B LOCAL360 1000 > > > 64 > > > MED_INDEX_A LOCAL480 1000 > > > 52 > > > MED_TABLE_A LOCAL680 1000 > > > 32 > > > RBS DICTIONARY 299 1000 > > > 70.1 > > > SMALL_INDEX_A LOCAL183 200 > > > 8.5 > > > SMALL_TABLE_A LOCAL169 200 > > > 15.5 > > > SYSTEM DICTIONARY 110 200 > > > 45 > > > TEMPDICTIONARY 961 1000 > > > 3.9 > > > TEMP_DATA_A LOCAL900 1000 > > > 10 > > > TOOLS LOCAL 1920 > > > 5 > > > USERS LOCAL 3475 > > > 54.7 > > > > > > 15 rows selected. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > > backup; > > > > > > Tablespace altered. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > > backup; > > > > > > Tablespace altered. > > > > > > > > > > > > > -Original Message- > > > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > > Sent: Wednesday, April 17, 2002 9:58 AM > > > > To: Multiple recipients of list ORACLE-L > > > > Subject: RE: Locally managed tablespaces/What a > > > DBA can do ? > > > > > > > > Darren, > > > > > > > > If using a hot backup strategy (other than Rman), > > > > make sure to test your backup/recovery if you
RE: Locally managed tablespaces/What a DBA can do ?
Hi Rafiq, Sorry. I'm 8.1.7.3 on W2K. It's very possible that things have changed drastically since last year when I created this database. If I remember right there was an issue with export. I may be off my rocker, because nothing is exported out of a temporary tablespace. LK > -Original Message- > From: Mohammad Rafiq [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, April 17, 2002 1:54 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > Lisa, > What version you are talking about? I am using locally managed tablesspace > > with uniform extents for temporary tablespace with tempfile for last one > year with oracle version 8.1.6.2 on HP-UX 11 for datawarehouse database > without any issue/problem. Now we have migrated it to 8.1.7.2 and put it > into production in a month time... > > Regards > Rafiq > > > > > Reply-To: [EMAIL PROTECTED] > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Date: Wed, 17 Apr 2002 08:53:45 -0800 > > That's not a temp tablespace (TEMP_DATA_A). It's a place to put temporary > load tables. My temporary tablespace is TEMP, which is dictionary. From > the research I did on LMT's before I decided to use them, it looked like > there were several bugs associated with temporary tablespaces being LMT's > so > I left my temporary ts dictionary. > > LK > > > > -Original Message- > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, April 17, 2002 11:34 AM > > To:Multiple recipients of list ORACLE-L > > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > > > What about your locally managed "temporary" > > tablespace? > > > > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > > > What? I was just able to do it. 8.1.7, W2K > > > > > > (INV-SYSTEM)>@ts > > > > > > TS_NAME LMT MB_FREE MB_TOTAL > > > PCT_USED > > > --- -- - - > > > - > > > LOAD_DATA_A LOCAL740 2000 > > > 63 > > > LRG_INDEX_A LOCAL390 2500 > > > 84.4 > > > LRG_INDEX_B LOCAL980 1000 > > > 2 > > > LRG_TABLE_A LOCAL 2440 4000 > > > 39 > > > LRG_TABLE_B LOCAL360 1000 > > > 64 > > > MED_INDEX_A LOCAL480 1000 > > > 52 > > > MED_TABLE_A LOCAL680 1000 > > > 32 > > > RBS DICTIONARY 299 1000 > > > 70.1 > > > SMALL_INDEX_A LOCAL183 200 > > > 8.5 > > > SMALL_TABLE_A LOCAL169 200 > > > 15.5 > > > SYSTEM DICTIONARY 110 200 > > > 45 > > > TEMPDICTIONARY 961 1000 > > > 3.9 > > > TEMP_DATA_A LOCAL900 1000 > > > 10 > > > TOOLS LOCAL 1920 > > > 5 > > > USERS LOCAL 3475 > > > 54.7 > > > > > > 15 rows selected. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > > backup; > > > > > > Tablespace altered. > > > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > > backup; > > > > > > Tablespace altered. > > > > > > > > > > > > > -Original Message- > > > > From: Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > > Sent: Wednesday, April 17, 2002 9:58 AM > > > > To:Multiple recipients of list ORACLE-L > > > > Subject: RE: Locally managed tablespaces/What a > > > DBA can do ? > > > > > > > > Darren, > > > > > > > > If using a hot backup strategy (other than Rman), > > > > make sure to test your backup/recovery if you > > > switch > > > > the temporary tablespace to locally managed. You > > > > can't put a locally managed temporary tablespace > > > in > > > > backup mode. > > > > > > > > Rob Pegram > > > > Oracle Certified DBA > > > > > > > > > > > > > > > > SQL> create tablespace temp_
RE: Locally managed tablespaces/What a DBA can do ?
Lisa, What version you are talking about? I am using locally managed tablesspace with uniform extents for temporary tablespace with tempfile for last one year with oracle version 8.1.6.2 on HP-UX 11 for datawarehouse database without any issue/problem. Now we have migrated it to 8.1.7.2 and put it into production in a month time... Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Wed, 17 Apr 2002 08:53:45 -0800 That's not a temp tablespace (TEMP_DATA_A). It's a place to put temporary load tables. My temporary tablespace is TEMP, which is dictionary. From the research I did on LMT's before I decided to use them, it looked like there were several bugs associated with temporary tablespaces being LMT's so I left my temporary ts dictionary. LK > -Original Message- > From:Robert Pegram [SMTP:[EMAIL PROTECTED]] > Sent:Wednesday, April 17, 2002 11:34 AM > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally managed tablespaces/What a DBA can do ? > > What about your locally managed "temporary" > tablespace? > > > --- "Koivu, Lisa" <[EMAIL PROTECTED]> wrote: > > What? I was just able to do it. 8.1.7, W2K > > > > (INV-SYSTEM)>@ts > > > > TS_NAME LMT MB_FREE MB_TOTAL > > PCT_USED > > --- -- - - > > - > > LOAD_DATA_A LOCAL740 2000 > > 63 > > LRG_INDEX_A LOCAL390 2500 > > 84.4 > > LRG_INDEX_B LOCAL980 1000 > > 2 > > LRG_TABLE_A LOCAL 2440 4000 > > 39 > > LRG_TABLE_B LOCAL360 1000 > > 64 > > MED_INDEX_A LOCAL480 1000 > > 52 > > MED_TABLE_A LOCAL680 1000 > > 32 > > RBS DICTIONARY 299 1000 > > 70.1 > > SMALL_INDEX_A LOCAL183 200 > > 8.5 > > SMALL_TABLE_A LOCAL169 200 > > 15.5 > > SYSTEM DICTIONARY 110 200 > > 45 > > TEMPDICTIONARY 961 1000 > > 3.9 > > TEMP_DATA_A LOCAL900 1000 > > 10 > > TOOLS LOCAL 1920 > > 5 > > USERS LOCAL 3475 > > 54.7 > > > > 15 rows selected. > > > > (INV-SYSTEM)>alter tablespace load_data_a begin > > backup; > > > > Tablespace altered. > > > > (INV-SYSTEM)>alter tablespace load_data_a end > > backup; > > > > Tablespace altered. > > > > > > > > > -Original Message- > > > From:Robert Pegram [SMTP:[EMAIL PROTECTED]] > > > Sent:Wednesday, April 17, 2002 9:58 AM > > > To: Multiple recipients of list ORACLE-L > > > Subject: RE: Locally managed tablespaces/What a > > DBA can do ? > > > > > > Darren, > > > > > > If using a hot backup strategy (other than Rman), > > > make sure to test your backup/recovery if you > > switch > > > the temporary tablespace to locally managed. You > > > can't put a locally managed temporary tablespace > > in > > > backup mode. > > > > > > Rob Pegram > > > Oracle Certified DBA > > > > > > > > > > > > SQL> create tablespace temp_dict > > > 2 datafile 'c:oracleoradataorcl emp_dict.dbf' > > size > > > 10M > > > 3 default storage (initial 1M next 1M > > maxextents > > > unlimited pctincrease 0) > > > 4* temporary > > > SQL> / > > > > > > Tablespace created. > > > > > > SQL> create temporary tablespace temp_local > > > 2 tempfile 'c:oracleoradataorcl emp_local.dbf' > > size > > > 10M > > > 3 extent management local > > > 4 uniform size 1M; > > > > > > Tablespace created. > > > > > > > > > SQL> alter tablespace temp_dict begin backup; > > > > > > Tablespace altered. > > > > > > SQL> alter tablespace temp_local begin backup; > > > alter tablespace temp_local begin backup > > > * > > > ERROR at line 1: > > > ORA-03217: invalid option for alter of TEMPORARY > > > TABLESPACE > &
RE: Locally managed tablespaces/What a DBA can do ?
Okay, maybe re-org would be a little too much, as you say, I would need to know the application better, and with 8 distinctly different apps, including oracle financials, I maybe heading for trouble. But what about simply turning the existing dictionary-managed tablespaces into locally managed tablespaces, other then maintenance, would I gain performance ? >From what I read on this list, the growth of my tables is very small compared to some of the other org's, so maybe staying with dictionary-managed would be best, except for the temporary tablespace. Darren. -Original Message- Sent: April 15, 2002 3:58 PM To: Multiple recipients of list ORACLE-L Darren - Do you have to reorganize the vendor's files now? The objective of LMT's is to make Oracle more self-managing (you know, so the MS SQL people can't say it takes a lot more DBA time to manage the database). To me in your situation, the bottom line is whether you have to spend quite a bit of time reorganizing those files today. If the answer is "no", then LMT's probably aren't going to help you much. If the answer is "yes", then that gives you some opportunity try something with their files, since you are doing that anyway. The key point is whether you know how the vendor's software interfaces with Oracle. If you have to reorg quite a bit, then I am confident you know that interface well (otherwise you are jeopardizing the data). If the vendor has made it pretty automated (management of the data), then you probably aren't that familiar with the details of how the vendor accomplishes that, and shouldn't mess with their stuff. I apologize for being wordy here, but maybe you can see my point. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Monday, April 15, 2002 4:33 PM To: Multiple recipients of list ORACLE-L I am looking into locally managed tablespaces, have done some research, and have a basic understanding of how they work, but I am unsure about the benefits if any for my environment. I have multiple instances running, one for each application. In some cases these apps just have two tablespaces, data and index. If I have a tablespace that is composed of tables that are various sizes and activity, will LMT help or hinder ? I have read the paper about creating tablespaces based on extent size, which is the concept I would follow, but I am unsure how the vendor(s) would feel if I re-org'd their database(s). Thanks Darren -- Darren Browett P.EngThis message was transmitted Data Administrator using 100% recycled electrons Information and Communication Technology City of Coquitlam P:(604)927 - 3614 E:[EMAIL PROTECTED] --- -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Browett, Darren INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Browett, Darren INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces/What a DBA can do ?
Daren, Localy managed tablespaces are good for reducing maintenance. You can limit fragmentation. In our shop we are using locally manged tablespaces and it is working fine for us. As far as Vendors are concerned, you can keep a note of what have you done as far as reorganization is concerned just in case any problem you face while implementing a vendor upgrade or patch. Shaibal Senior Oracle DBA Department of Transportation >From: "Browett, Darren" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Locally managed tablespaces/What a DBA can do ? >Date: Mon, 15 Apr 2002 13:33:19 -0800 > >I am looking into locally managed tablespaces, have done some research, and >have a basic >understanding of how they work, but I am unsure about the benefits if any >for my environment. > >I have multiple instances running, one for each application. In some cases >these apps just have two tablespaces, data and index. > >If I have a tablespace that is composed of tables that are various sizes >and >activity, will LMT help or hinder ? > >I have read the paper about creating tablespaces based on extent size, >which is the concept >I would follow, but I am unsure how the vendor(s) would feel if I re-org'd >their database(s). > >Thanks > >Darren > >-- >Darren Browett P.Eng This message >was transmitted >Data Administrator using 100% >recycled electrons >Information and Communication Technology >City of Coquitlam >P:(604)927 - 3614 >E:[EMAIL PROTECTED] > >--- > > >-- >Please see the official ORACLE-L FAQ: http://www.orafaq.com >-- >Author: Browett, Darren > INET: [EMAIL PROTECTED] > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 >San Diego, California-- Public Internet access / Mailing Lists > >To REMOVE yourself from this mailing list, send an E-Mail message >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >the message BODY, include a line containing: UNSUB ORACLE-L >(or the name of mailing list you want to be removed from). You may >also send the HELP command for other information (like subscribing). _ Join the worlds largest e-mail service with MSN Hotmail. http://www.hotmail.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Shaibal Talukder INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces/What a DBA can do ?
Darren - Do you have to reorganize the vendor's files now? The objective of LMT's is to make Oracle more self-managing (you know, so the MS SQL people can't say it takes a lot more DBA time to manage the database). To me in your situation, the bottom line is whether you have to spend quite a bit of time reorganizing those files today. If the answer is "no", then LMT's probably aren't going to help you much. If the answer is "yes", then that gives you some opportunity try something with their files, since you are doing that anyway. The key point is whether you know how the vendor's software interfaces with Oracle. If you have to reorg quite a bit, then I am confident you know that interface well (otherwise you are jeopardizing the data). If the vendor has made it pretty automated (management of the data), then you probably aren't that familiar with the details of how the vendor accomplishes that, and shouldn't mess with their stuff. I apologize for being wordy here, but maybe you can see my point. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Monday, April 15, 2002 4:33 PM To: Multiple recipients of list ORACLE-L I am looking into locally managed tablespaces, have done some research, and have a basic understanding of how they work, but I am unsure about the benefits if any for my environment. I have multiple instances running, one for each application. In some cases these apps just have two tablespaces, data and index. If I have a tablespace that is composed of tables that are various sizes and activity, will LMT help or hinder ? I have read the paper about creating tablespaces based on extent size, which is the concept I would follow, but I am unsure how the vendor(s) would feel if I re-org'd their database(s). Thanks Darren -- Darren Browett P.EngThis message was transmitted Data Administrator using 100% recycled electrons Information and Communication Technology City of Coquitlam P:(604)927 - 3614 E:[EMAIL PROTECTED] --- -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Browett, Darren INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
And the hot tip is that SYSTEM will be locally managed (by default) from 9i.2, which (I hope) will render dictionary managed tspaces to the dustbin. Cheers Connor --- "Jack C. Applewhite" <[EMAIL PROTECTED]> wrote: > Antonio, > > We use LMTs for all tablespaces - except for System, > of course. No issues, > problems, etc. We're happy. > > 8.1.7.2.5 on Win2k; ~340GB in 29 tablespaces. > > Jack > > > Jack C. Applewhite > Database Administrator/Developer > OCP Oracle8 DBA > iNetProfit, Inc. > Austin, Texas > www.iNetProfit.com > [EMAIL PROTECTED] > (512)327-9068 > > > -Original Message- > [EMAIL PROTECTED] > Sent: Monday, March 18, 2002 7:28 AM > To: Multiple recipients of list ORACLE-L > > > > Hi, > > Anyone using LMT for rollback segments ? Any issues > , suggestions , ... ? > > TIA, > Antonio Belloni > > > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: Jack C. Applewhite > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Connor McDonald http://www.oracledba.co.uk (mirrored at http://www.oradba.freeserve.co.uk) "Some days you're the pigeon, some days you're the statue" __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?Connor=20McDonald?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
Antonio, We use LMTs for all tablespaces - except for System, of course. No issues, problems, etc. We're happy. 8.1.7.2.5 on Win2k; ~340GB in 29 tablespaces. Jack Jack C. Applewhite Database Administrator/Developer OCP Oracle8 DBA iNetProfit, Inc. Austin, Texas www.iNetProfit.com [EMAIL PROTECTED] (512)327-9068 -Original Message- [EMAIL PROTECTED] Sent: Monday, March 18, 2002 7:28 AM To: Multiple recipients of list ORACLE-L Hi, Anyone using LMT for rollback segments ? Any issues , suggestions , ... ? TIA, Antonio Belloni -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jack C. Applewhite INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
Yes - on 8i and 9i. There were a couple of issues under 8i, where you needed to have an additional rollback segment in a non-LMT (ie SYSTEM) in order to create lmt rollback tspaces and segments, but other than that, there have been no problems so far. hth connor --- [EMAIL PROTECTED] wrote: > > Hi, > > Anyone using LMT for rollback segments ? Any issues > , suggestions , ... ? > > TIA, > Antonio Belloni > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Connor McDonald http://www.oracledba.co.uk (mirrored at http://www.oradba.freeserve.co.uk) "Some days you're the pigeon, some days you're the statue" __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?Connor=20McDonald?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Hi I have recently done this for a client and found it to take quite a period of time 3 days actually in this case to do the analysis of the tables to determine to most likely best fit for tables to extent sizes and which extent size to use. We also did use the below mentioned PDF as a guide as to the approach to take for sizing. You may find that your database grows but this will really depend on the size of tables relative to the extent size of the tablespace you put it in. Best of luck. I would have been trying this in a development environment before doing it to a live database as you may need to re-run some loads due to insufficient tablespace area. Timing could be an issue for a live system Cheers Peter McLarty E-mail: [EMAIL PROTECTED] Technical Consultant WWW: http://www.Mincom.com APAC Technical Services Phone: +61 (0)7 3303 3461 Brisbane, Australia Mobile: +61 (0)402 094 238 -- Facsimile: +61 (0)7 3303 3048 "Karniotis, Stephen" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 15/12/2001 07:05 AM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Fax to: Subject: RE: Locally managed tablespaces Heather: Another thing to consider. If the vendor of your student application system has not worked with LMTs, you may encounter support issues should you have problems with database accessibility. I would verify that LMTs are supported before converting. In terms of usage, LMTs are great as they remove all of the ridiculous I/O encountered by the SYSTEM tablespace for monitoring extent performance, allocation, and deallocation. Denise is correct that uniform extents significantly improve the performance of LMTs, however, multiple uniform extent types can be used. However, if your extent sizes are all over the map, you should create some uniform size and then move to LMT. Thank You Stephen P. Karniotis Technical Alliance Manager Compuware Corporation Direct: (248) 865-4350 Mobile: (248) 408-2918 Email: [EMAIL PROTECTED] Web: www.compuware.com -Original Message- Sent: Friday, December 14, 2001 3:26 PM To: Multiple recipients of list ORACLE-L Heather - Is there a particular reason the consultant is doing this other than maybe this is the first opportunity to learn this? Just my cynical side. Mentioning cynical, I was leery of the procedure to convert an existing dictionary-managed tablespace to a locally-managed one, but we production DBAs tend to be a conservative lot. If you go that route, be sure that you end up with uniform extents which I consider the best part of LMT. Be sure to study the paper "How to Stop Defragmenting and Start Living: The Definitive Word on Fragmentation" by Himatsingka and Loaiza. before your consultant comes so that both of you agree on the approach to take. This is available on Oracle's Web site. The worst circumstance (see cynical above) would be for one person to create them and the other person to maintain them, but each with a different philosophy. I think LMT and uniform extents and extensible tablespaces are the greatest features Oracle has added recently. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 8:55 AM To: Multiple recipients of list ORACLE-L I have just heard today that an external consultant, who is coming to upgrade software for our Student Records system next week, wants to unload the live, test and training databases, and recreate them using locally managed tablespaces. I've been reading all the incredibly positive things oracle have to say about this, but has anybody any real experience of using locally managed tablespaces, and if so, are there any major disadvantages or knock-on effects that I should be aware of? Apart from trying to find disk space to unload each database to do this, would it have any additional space implications? Basically, I need to decide if I should let this go ahead. Heather -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Docherty, Heather INET: [EMAIL PROTECTED] Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the off
RE: Locally managed tablespaces
Hello all, FWIW, I use managed in dictionary, no auto-extend, on an HP-UX, OPS 8.1.6.3 system. I considered locally managed (and auto vs. uniform), but as I have extremely fast I/O, I could not justify pulling it out of the dictionary (no problems of excessive $FET and $UET pinging). Now, that was 1 1/2 years ago, so things may have changed. I am upgrading to 8.1.7.2.1 w/i the next month, so I could use that time to switch over, if things have really changed. Thank you, Paul Sherman DBA voice - 781-501-4143 (office) fax- 781-278-8341 (office) email - [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 5:25 PM To: Multiple recipients of list ORACLE-L Hey Stephen - That's DENNIS damnit! And I didn't say that uniform extents increase performance (I like autoextend and not getting awakened in the middle of the night), but if anyone has evidence that they do, please share it. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 3:05 PM To: Multiple recipients of list ORACLE-L Heather: Another thing to consider. If the vendor of your student application system has not worked with LMTs, you may encounter support issues should you have problems with database accessibility. I would verify that LMTs are supported before converting. In terms of usage, LMTs are great as they remove all of the ridiculous I/O encountered by the SYSTEM tablespace for monitoring extent performance, allocation, and deallocation. Denise is correct that uniform extents significantly improve the performance of LMTs, however, multiple uniform extent types can be used. However, if your extent sizes are all over the map, you should create some uniform size and then move to LMT. Thank You Stephen P. Karniotis Technical Alliance Manager Compuware Corporation Direct: (248) 865-4350 Mobile: (248) 408-2918 Email: [EMAIL PROTECTED] Web:www.compuware.com -Original Message- Sent: Friday, December 14, 2001 3:26 PM To: Multiple recipients of list ORACLE-L Subject: RE: Locally managed tablespaces Heather - Is there a particular reason the consultant is doing this other than maybe this is the first opportunity to learn this? Just my cynical side. Mentioning cynical, I was leery of the procedure to convert an existing dictionary-managed tablespace to a locally-managed one, but we production DBAs tend to be a conservative lot. If you go that route, be sure that you end up with uniform extents which I consider the best part of LMT. Be sure to study the paper "How to Stop Defragmenting and Start Living: The Definitive Word on Fragmentation" by Himatsingka and Loaiza. before your consultant comes so that both of you agree on the approach to take. This is available on Oracle's Web site. The worst circumstance (see cynical above) would be for one person to create them and the other person to maintain them, but each with a different philosophy. I think LMT and uniform extents and extensible tablespaces are the greatest features Oracle has added recently. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 8:55 AM To: Multiple recipients of list ORACLE-L I have just heard today that an external consultant, who is coming to upgrade software for our Student Records system next week, wants to unload the live, test and training databases, and recreate them using locally managed tablespaces. I've been reading all the incredibly positive things oracle have to say about this, but has anybody any real experience of using locally managed tablespaces, and if so, are there any major disadvantages or knock-on effects that I should be aware of? Apart from trying to find disk space to unload each database to do this, would it have any additional space implications? Basically, I need to decide if I should let this go ahead. Heather -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Docherty, Heather INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yo
RE: Locally managed tablespaces
Hey Stephen - That's DENNIS damnit! And I didn't say that uniform extents increase performance (I like autoextend and not getting awakened in the middle of the night), but if anyone has evidence that they do, please share it. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 3:05 PM To: Multiple recipients of list ORACLE-L Heather: Another thing to consider. If the vendor of your student application system has not worked with LMTs, you may encounter support issues should you have problems with database accessibility. I would verify that LMTs are supported before converting. In terms of usage, LMTs are great as they remove all of the ridiculous I/O encountered by the SYSTEM tablespace for monitoring extent performance, allocation, and deallocation. Denise is correct that uniform extents significantly improve the performance of LMTs, however, multiple uniform extent types can be used. However, if your extent sizes are all over the map, you should create some uniform size and then move to LMT. Thank You Stephen P. Karniotis Technical Alliance Manager Compuware Corporation Direct: (248) 865-4350 Mobile: (248) 408-2918 Email: [EMAIL PROTECTED] Web:www.compuware.com -Original Message- Sent: Friday, December 14, 2001 3:26 PM To: Multiple recipients of list ORACLE-L Subject: RE: Locally managed tablespaces Heather - Is there a particular reason the consultant is doing this other than maybe this is the first opportunity to learn this? Just my cynical side. Mentioning cynical, I was leery of the procedure to convert an existing dictionary-managed tablespace to a locally-managed one, but we production DBAs tend to be a conservative lot. If you go that route, be sure that you end up with uniform extents which I consider the best part of LMT. Be sure to study the paper "How to Stop Defragmenting and Start Living: The Definitive Word on Fragmentation" by Himatsingka and Loaiza. before your consultant comes so that both of you agree on the approach to take. This is available on Oracle's Web site. The worst circumstance (see cynical above) would be for one person to create them and the other person to maintain them, but each with a different philosophy. I think LMT and uniform extents and extensible tablespaces are the greatest features Oracle has added recently. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 8:55 AM To: Multiple recipients of list ORACLE-L I have just heard today that an external consultant, who is coming to upgrade software for our Student Records system next week, wants to unload the live, test and training databases, and recreate them using locally managed tablespaces. I've been reading all the incredibly positive things oracle have to say about this, but has anybody any real experience of using locally managed tablespaces, and if so, are there any major disadvantages or knock-on effects that I should be aware of? Apart from trying to find disk space to unload each database to do this, would it have any additional space implications? Basically, I need to decide if I should let this go ahead. Heather -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Docherty, Heather INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Karniotis, Stephen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list,
RE: Locally managed tablespaces
Heather: Another thing to consider. If the vendor of your student application system has not worked with LMTs, you may encounter support issues should you have problems with database accessibility. I would verify that LMTs are supported before converting. In terms of usage, LMTs are great as they remove all of the ridiculous I/O encountered by the SYSTEM tablespace for monitoring extent performance, allocation, and deallocation. Denise is correct that uniform extents significantly improve the performance of LMTs, however, multiple uniform extent types can be used. However, if your extent sizes are all over the map, you should create some uniform size and then move to LMT. Thank You Stephen P. Karniotis Technical Alliance Manager Compuware Corporation Direct: (248) 865-4350 Mobile: (248) 408-2918 Email: [EMAIL PROTECTED] Web:www.compuware.com -Original Message- Sent: Friday, December 14, 2001 3:26 PM To: Multiple recipients of list ORACLE-L Subject:RE: Locally managed tablespaces Heather - Is there a particular reason the consultant is doing this other than maybe this is the first opportunity to learn this? Just my cynical side. Mentioning cynical, I was leery of the procedure to convert an existing dictionary-managed tablespace to a locally-managed one, but we production DBAs tend to be a conservative lot. If you go that route, be sure that you end up with uniform extents which I consider the best part of LMT. Be sure to study the paper "How to Stop Defragmenting and Start Living: The Definitive Word on Fragmentation" by Himatsingka and Loaiza. before your consultant comes so that both of you agree on the approach to take. This is available on Oracle's Web site. The worst circumstance (see cynical above) would be for one person to create them and the other person to maintain them, but each with a different philosophy. I think LMT and uniform extents and extensible tablespaces are the greatest features Oracle has added recently. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 8:55 AM To: Multiple recipients of list ORACLE-L I have just heard today that an external consultant, who is coming to upgrade software for our Student Records system next week, wants to unload the live, test and training databases, and recreate them using locally managed tablespaces. I've been reading all the incredibly positive things oracle have to say about this, but has anybody any real experience of using locally managed tablespaces, and if so, are there any major disadvantages or knock-on effects that I should be aware of? Apart from trying to find disk space to unload each database to do this, would it have any additional space implications? Basically, I need to decide if I should let this go ahead. Heather -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Docherty, Heather INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Karniotis, Stephen INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Heather - Is there a particular reason the consultant is doing this other than maybe this is the first opportunity to learn this? Just my cynical side. Mentioning cynical, I was leery of the procedure to convert an existing dictionary-managed tablespace to a locally-managed one, but we production DBAs tend to be a conservative lot. If you go that route, be sure that you end up with uniform extents which I consider the best part of LMT. Be sure to study the paper "How to Stop Defragmenting and Start Living: The Definitive Word on Fragmentation" by Himatsingka and Loaiza. before your consultant comes so that both of you agree on the approach to take. This is available on Oracle's Web site. The worst circumstance (see cynical above) would be for one person to create them and the other person to maintain them, but each with a different philosophy. I think LMT and uniform extents and extensible tablespaces are the greatest features Oracle has added recently. Dennis Williams DBA Lifetouch, Inc. [EMAIL PROTECTED] -Original Message- Sent: Friday, December 14, 2001 8:55 AM To: Multiple recipients of list ORACLE-L I have just heard today that an external consultant, who is coming to upgrade software for our Student Records system next week, wants to unload the live, test and training databases, and recreate them using locally managed tablespaces. I've been reading all the incredibly positive things oracle have to say about this, but has anybody any real experience of using locally managed tablespaces, and if so, are there any major disadvantages or knock-on effects that I should be aware of? Apart from trying to find disk space to unload each database to do this, would it have any additional space implications? Basically, I need to decide if I should let this go ahead. Heather -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Docherty, Heather INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: DENNIS WILLIAMS INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
If you can avoid the downtime, then its a good move. Its really a move toward consistent extent sizes per tablespace - LMT's just enforce that. hth connor --- "Docherty, Heather" <[EMAIL PROTECTED]> wrote: > I have just heard today that an external consultant, > who is coming to > upgrade software for our Student Records system next > week, wants to unload > the live, test and training databases, and recreate > them using locally > managed tablespaces. > > I've been reading all the incredibly positive things > oracle have to say > about this, but has anybody any real experience of > using locally managed > tablespaces, and if so, are there any major > disadvantages or knock-on > effects that I should be aware of? Apart from > trying to find disk space to > unload each database to do this, would it have any > additional space > implications? > > Basically, I need to decide if I should let this go > ahead. > > Heather > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: Docherty, Heather > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Connor McDonald http://www.oracledba.co.uk (mirrored at http://www.oradba.freeserve.co.uk) "Some days you're the pigeon, some days you're the statue" __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?Connor=20McDonald?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
The two main benefit of lmt's are - the enforcement of a consistent extent size. - avoiding issues with FET$ and UET$ Using migrate_to_local achieves the latter but not the former. hth connor --- orantdba <[EMAIL PROTECTED]> wrote: > Hi > > Any reason that this external consultant is not > using the package > > dbms_space_admin.tablespace_migrate_to_local > procedure ?? > > This would seem a much cleaner method of doing this > than the method they > are recommending. > > > From the plsql supplied reference. > > > TABLESPACE_MIGRATE_TO_LOCAL Procedure > > Use this procedure to migrate the tablespace from > dictionary managed > format to locally managed format. Tablespaces > migrated to locally > managed format are user-managed. > > > Syntax > > TABLESPACE_MIGRATE_TO_LOCAL(tablespace_name, > allocation_unit, relative_fno) > > Hope this helps, > John > > > [EMAIL PROTECTED] wrote: > > >I have just heard today that an external > consultant, who is coming to > >upgrade software for our Student Records system > next week, wants to unload > >the live, test and training databases, and recreate > them using locally > >managed tablespaces. > > > >I've been reading all the incredibly positive > things oracle have to say > >about this, but has anybody any real experience of > using locally managed > >tablespaces, and if so, are there any major > disadvantages or knock-on > >effects that I should be aware of? Apart from > trying to find disk space to > >unload each database to do this, would it have any > additional space > >implications? > > > >Basically, I need to decide if I should let this go > ahead. > > > >Heather > > > > = Connor McDonald http://www.oracledba.co.uk (mirrored at http://www.oradba.freeserve.co.uk) "Some days you're the pigeon, some days you're the statue" __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?Connor=20McDonald?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Hi John, Thanks so much for ur advice.never knew about that procedure before. By the way, could u please tell me what do the allocation_unit, relative_fno within the paranthesis mean ?? Or could u just give me a document link where I can read more about this procedure ?? Regards, Samir Samir Sarkar< BR>Oracle DBA - LennonT eam SchlumbergerSema Email : [EMAIL PROTECTED] s [EMAIL PROTECTED] Phone : +44 (0) 115 - 95 76217 EPABX : +44 (0) 115 - 957 6418 Ext. 76217 Fax : +44 (0) 115 - 957 6018 -Original Message-From: orantdba [mailto:[EMAIL PROTECTED]]Sent: 14 December 2001 15:40To: Multiple recipients of list ORACLE-LSubject: Re: Locally managed tablespacesHiAny reason that this external consultant is not using the packagedbms_space_admin.tablespace_migrate_to_local procedure ??This would seem a much cleaner method of doing this than the method they are recommending.From the plsql supplied reference. TABLESPACE_MIGRATE_TO_LOCAL Procedure Use this procedure to migrate the tablespace from dictionary managed format to locally managed format. Tablespaces migrated to locally managed format are user-managed. SyntaxTABLESPACE_MIGRATE_TO_LOCAL(tablespace_name, allocation_unit, relative_fno) Hope this helps,John[EMAIL PROTECTED] wrote: I have just heard today that an external consultant, who is coming toupgrade software for our Student Records system next week, wants to unloadthe live, test and training databases, and recreate them using locallymanaged tablespaces.I've been reading all the incredibly positive things oracle have to sayabout this, but has anybody any real experience of using locally managedtablespaces, and if so, are there any major disadvantages or knock-oneffects that I should be aware of? Apart from trying to find disk space tounload each database to do this, would it have any additional spaceimplications?Basically, I need to decide if I should let this go ahead.Heather ___ This email is confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of SchlumbergerSema. If you are not the intended recipient, be advised that you have received this email in error and that any use, dissemination, forwarding, printing, or copying of this email is strictly prohibited. If you have received this email in error please notify the SchlumbergerSema Helpdesk by telephone on +44 (0) 121 627 5600. ___
Re: Locally managed tablespaces
Hi Any reason that this external consultant is not using the package dbms_space_admin.tablespace_migrate_to_local procedure ?? This would seem a much cleaner method of doing this than the method they are recommending. >From the plsql supplied reference. TABLESPACE_MIGRATE_TO_LOCAL Procedure Use this procedure to migrate the tablespace from dictionary managed format to locally managed format. Tablespaces migrated to locally managed format are user-managed. Syntax TABLESPACE_MIGRATE_TO_LOCAL(tablespace_name, allocation_unit, relative_fno) Hope this helps, John [EMAIL PROTECTED] wrote: I have just heard today that an external consultant, who is coming toupgrade software for our Student Records system next week, wants to unloadthe live, test and training databases, and recreate them using locallymanaged tablespaces.I've been reading all the incredibly positive things oracle have to sayabout this, but has anybody any real experience of using locally managedtablespaces, and if so, are there any major disadvantages or knock-oneffects that I should be aware of? Apart from trying to find disk space tounload each database to do this, would it have any additional spaceimplications?Basically, I need to decide if I should let this go ahead.Heather
RE: Locally Managed Tablespaces and autoextend
Thanks for investigating and sharing this with us - Babette -Original Message- Lewis Sent: Wednesday, August 15, 2001 7:16 AM To: Multiple recipients of list ORACLE-L Quick follow up to the bitmap sizing for larger files: I've quoted this 20-30,000 figure in my book as applying to both 'ordinary' LMTs and 'temporary' LMTs. However following our discussions, and a conversation with Ken Robinson from Oracle, I've run a couple of tests on 8.1.7 and the 2-bytes per extent that led to me quoting these figures applies only to temporary LMTs. In an ordinary LMT, one bit equates to one extent, so for an 8K block size, which gives you 6 blocks (64K - 2 blocks) in the first bitmap you could build ca. 380,000 extents in a single file before adding more bitmap at the end; for a very small file with its special one-block bitmap, you could still at about 63,500 extents without a new chunk of bitmap appearing. Jonathan Lewis Seminars on getting the best out of Oracle Last few places available for Sept 10th/11th See http://www.jlcomp.demon.co.uk/seminar.html | Earlier experiments indicated that for very | large files, with small extents, so that the | total extent count exceeded about 20,000 - | 30,000 (related to block size and therefore | number of blocks actually available from the | 64K for bitmap) - an extra 64K space would | be pre-allocated at the head of file. I did not | test for further extremes - if you have small | extents you should not have very large files. [snipped] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Babette Turner-Underwood INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces and autoextend
Quick follow up to the bitmap sizing for larger files: I've quoted this 20-30,000 figure in my book as applying to both 'ordinary' LMTs and 'temporary' LMTs. However following our discussions, and a conversation with Ken Robinson from Oracle, I've run a couple of tests on 8.1.7 and the 2-bytes per extent that led to me quoting these figures applies only to temporary LMTs. In an ordinary LMT, one bit equates to one extent, so for an 8K block size, which gives you 6 blocks (64K - 2 blocks) in the first bitmap you could build ca. 380,000 extents in a single file before adding more bitmap at the end; for a very small file with its special one-block bitmap, you could still at about 63,500 extents without a new chunk of bitmap appearing. Jonathan Lewis Seminars on getting the best out of Oracle Last few places available for Sept 10th/11th See http://www.jlcomp.demon.co.uk/seminar.html | Earlier experiments indicated that for very | large files, with small extents, so that the | total extent count exceeded about 20,000 - | 30,000 (related to block size and therefore | number of blocks actually available from the | 64K for bitmap) - an extra 64K space would | be pre-allocated at the head of file. I did not | test for further extremes - if you have small | extents you should not have very large files. -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jonathan Lewis INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Considerable overhead? Not really, but I only said "overhead", not "considerable overhead". There are, as you are well aware, potential issues with ST locking on very busy systems with dictionary managed tablespaces. Pre-fragmenting can (not "will") reduce the duration of the ST lock hold. Extent allocation becomes a delete from FET$ and an insert into UET$ rather than an update to FET$ and an insert into UET$. (I hope I got that right!) Its a rather minor tweaker's thing that probably only makes any detectable difference on a handful of systems. -Don Granaman [certifiable OraSaurus] - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Monday, July 23, 2001 10:46 AM > Is there really any considerable overhead involved in dynamically > allocating an extent? By creating free space chunks in a tablespace > of uniform extent size, will you really reduce the amount of time and > resources spent when a segment allocates those extents? > > I doubt it, but statistics from v$sesstat could convince me otherwise. > > -- > Jeremiah Wilton > http://www.speakeasy.net/~jwilton > > On Sun, 22 Jul 2001, Don Granaman wrote: > > > If you are using uniform extents in LMT, you don't want to coalesce > > - ever. Since every extent will be the same size, it is useless > > overhead. This is even more true if you have adopted a "uniform > > extents" policy in any dictionary managed tablespaces. In fact, to > > reduce the overhead of throwing a new extent in the latter, you > > might try "pre-fragmenting" the tablespace by creating a junk table > > in it and manually allocating new extents, then dropping the table - > > during a low activity period of course. > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Jeremiah Wilton > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Don Granaman INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Is there really any considerable overhead involved in dynamically allocating an extent? By creating free space chunks in a tablespace of uniform extent size, will you really reduce the amount of time and resources spent when a segment allocates those extents? I doubt it, but statistics from v$sesstat could convince me otherwise. -- Jeremiah Wilton http://www.speakeasy.net/~jwilton On Sun, 22 Jul 2001, Don Granaman wrote: > If you are using uniform extents in LMT, you don't want to coalesce > - ever. Since every extent will be the same size, it is useless > overhead. This is even more true if you have adopted a "uniform > extents" policy in any dictionary managed tablespaces. In fact, to > reduce the overhead of throwing a new extent in the latter, you > might try "pre-fragmenting" the tablespace by creating a junk table > in it and manually allocating new extents, then dropping the table - > during a low activity period of course. -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jeremiah Wilton INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
If you are using uniform extents in LMT, you don't want to coalesce - ever. Since every extent will be the same size, it is useless overhead. This is even more true if you have adopted a "uniform extents" policy in any dictionary managed tablespaces. In fact, to reduce the overhead of throwing a new extent in the latter, you might try "pre-fragmenting" the tablespace by creating a junk table in it and manually allocating new extents, then dropping the table - during a low activity period of course. -Don Granaman [ceritifiable OraSaurus] - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Saturday, July 21, 2001 3:46 PM > SMON will only automatically coalesce if pctincrease is > 0 but you > can always ask for a coalesce. Its part of the alter tablespace command > and is the method I use. > > However, according to the doco there is no need to coalesce a LMT. > > -Original Message- > Sent: Friday, July 20, 2001 7:01 AM > To: Multiple recipients of list ORACLE-L > > > It does not need to do it. Also SMON will coalesce only if pctincrease>0 and > this is not a good idea. > > Alex Hillman > > -Original Message- > Sent: Friday, July 20, 2001 8:41 AM > To: Multiple recipients of list ORACLE-L > > > consider this also.. > if u make a tablespace as LMT, the SMON process is not going to coalesce it > automatically.. > as it in the case of dictionary managed TS. > > if i'm wrong.. pls correct. > > Saurabh Sharma > > [EMAIL PROTECTED] > http://www.geocities.com/saurabh00pc/stride.html > > - Original Message - > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Sent: Friday, July 20, 2001 5:16 AM > > > > Yes, you can make any tablespace a locally-managed tablespace except > SYSTEM. > > What they're saying, I think, is that you can't set up temporary > tablespaces > > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > > management. > > > > Jon Walthour > > > > - Original Message - > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > > Sent: Thursday, July 19, 2001 4:32 PM > > > > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > > documented? > > > > > > Cheers, > > > > > > Earl > > > > > > --- > > > > > > TheOracleDBA > > > [EMAIL PROTECTED] > > > > > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > > Hillman, Alex wrote: > > > >You canuse any storage parameters you like but oracle will ignore them > > exept > > > >for initial for LMT with autoallocate. I would personally do not use > > > >autoallocate. Also you cannot use autoallocate for temporary tablespace > > and > > > >shouldn't use it for rollback. > > > > > > > >Alex Hillman > > > > > > > >-Original Message- > > > >Sent: Thursday, July 19, 2001 12:43 PM > > > >To: Multiple recipients of list ORACLE-L > > > > > > > > > > > >HPUX 11i 64 bit > > > >Oracle 8.1.7.1 32 bit > > > > > > > >I am creating a new database and decided to go with locally managed > > > >tablespaces. I was going to go with autoallocate because the best I > can > > > >tell the only possible drawback with this is a little wasted space. > > > >However, I was under the impression that you could not specify a next > in > > the > > > >storage clause of a table creation. Yet you can. So what happens if I > > have > > > >a next defined? Do they pretty much just throw that away or should I > > really > > > >not define it? > > > > > > > > > > > > > > > > > > > >Kimberly Smith > > > >Database Administrator > > > >IT Dept. - Fujitsu/GMD > > > >Phone: (503) 669-6050 > > > >Fax: (503) 669-5705 > > > >Email : [EMAIL PROTECTED] > > > > > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Kimberly Smith > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > >the message BODY, include a line containing: UNSUB ORACLE-L > > > >(or the name of mailing list you want to be removed from). You may > > > >also send the HELP command for other information (like subscribing). > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Hillman, Alex > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > >the m
RE: Locally managed tablespaces
SMON will only automatically coalesce if pctincrease is > 0 but you can always ask for a coalesce. Its part of the alter tablespace command and is the method I use. However, according to the doco there is no need to coalesce a LMT. -Original Message- Sent: Friday, July 20, 2001 7:01 AM To: Multiple recipients of list ORACLE-L It does not need to do it. Also SMON will coalesce only if pctincrease>0 and this is not a good idea. Alex Hillman -Original Message- Sent: Friday, July 20, 2001 8:41 AM To: Multiple recipients of list ORACLE-L consider this also.. if u make a tablespace as LMT, the SMON process is not going to coalesce it automatically.. as it in the case of dictionary managed TS. if i'm wrong.. pls correct. Saurabh Sharma [EMAIL PROTECTED] http://www.geocities.com/saurabh00pc/stride.html - Original Message - To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 5:16 AM > Yes, you can make any tablespace a locally-managed tablespace except SYSTEM. > What they're saying, I think, is that you can't set up temporary tablespaces > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > management. > > Jon Walthour > > - Original Message - > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > Sent: Thursday, July 19, 2001 4:32 PM > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > documented? > > > > Cheers, > > > > Earl > > > > --- > > > > TheOracleDBA > > [EMAIL PROTECTED] > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > Hillman, Alex wrote: > > >You canuse any storage parameters you like but oracle will ignore them > exept > > >for initial for LMT with autoallocate. I would personally do not use > > >autoallocate. Also you cannot use autoallocate for temporary tablespace > and > > >shouldn't use it for rollback. > > > > > >Alex Hillman > > > > > >-Original Message- > > >Sent: Thursday, July 19, 2001 12:43 PM > > >To: Multiple recipients of list ORACLE-L > > > > > > > > >HPUX 11i 64 bit > > >Oracle 8.1.7.1 32 bit > > > > > >I am creating a new database and decided to go with locally managed > > >tablespaces. I was going to go with autoallocate because the best I can > > >tell the only possible drawback with this is a little wasted space. > > >However, I was under the impression that you could not specify a next in > the > > >storage clause of a table creation. Yet you can. So what happens if I > have > > >a next defined? Do they pretty much just throw that away or should I > really > > >not define it? > > > > > > > > > > > > > > >Kimberly Smith > > >Database Administrator > > >IT Dept. - Fujitsu/GMD > > >Phone: (503) 669-6050 > > >Fax: (503) 669-5705 > > >Email : [EMAIL PROTECTED] > > > > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Kimberly Smith > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Hillman, Alex > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > > > > > > > > Get 250 color business cards for FREE! > > http://businesscards.lycos.com/vp/fastpath/ > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: The Oracle DBA > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). Y
Re: Locally managed tablespaces
SMON only coalesces tablespaces with a non-zero percent increase. And current philosophy is to make all extents in a tablespace the same size anyway, so coalescing becomes a non-issue. >From: "Saurabh Sharma" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Re: Locally managed tablespaces >Date: Fri, 20 Jul 2001 04:40:49 -0800 > >consider this also.. >if u make a tablespace as LMT, the SMON process is not going to coalesce it >automatically.. >as it in the case of dictionary managed TS. > >if i'm wrong.. pls correct. > >Saurabh Sharma > >[EMAIL PROTECTED] >http://www.geocities.com/saurabh00pc/stride.html > >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Friday, July 20, 2001 5:16 AM > > > > Yes, you can make any tablespace a locally-managed tablespace except >SYSTEM. > > What they're saying, I think, is that you can't set up temporary >tablespaces > > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > > management. > > > > Jon Walthour > > > > - Original Message - > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > > Sent: Thursday, July 19, 2001 4:32 PM > > > > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > > documented? > > > > > > Cheers, > > > > > > Earl > > > > > > --- > > > > > > TheOracleDBA > > > [EMAIL PROTECTED] > > > > > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > > Hillman, Alex wrote: > > > >You canuse any storage parameters you like but oracle will ignore >them > > exept > > > >for initial for LMT with autoallocate. I would personally do not use > > > >autoallocate. Also you cannot use autoallocate for temporary >tablespace > > and > > > >shouldn't use it for rollback. > > > > > > > >Alex Hillman > > > > > > > >-Original Message- > > > >Sent: Thursday, July 19, 2001 12:43 PM > > > >To: Multiple recipients of list ORACLE-L > > > > > > > > > > > >HPUX 11i 64 bit > > > >Oracle 8.1.7.1 32 bit > > > > > > > >I am creating a new database and decided to go with locally managed > > > >tablespaces. I was going to go with autoallocate because the best I >can > > > >tell the only possible drawback with this is a little wasted space. > > > >However, I was under the impression that you could not specify a next >in > > the > > > >storage clause of a table creation. Yet you can. So what happens if >I > > have > > > >a next defined? Do they pretty much just throw that away or should I > > really > > > >not define it? > > > > > > > > > > > > > > > > > > > >Kimberly Smith > > > >Database Administrator > > > >IT Dept. - Fujitsu/GMD > > > >Phone: (503) 669-6050 > > > >Fax: (503) 669-5705 > > > >Email : [EMAIL PROTECTED] > > > > > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Kimberly Smith > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing >Lists > > > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > >the message BODY, include a line containing: UNSUB ORACLE-L > > > >(or the name of mailing list you want to be removed from). You may > > > >also send the HELP command for other information (like subscribing). > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Hillman, Alex > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing >Lists > > > >--
RE: Locally managed tablespaces
It does not need to do it. Also SMON will coalesce only if pctincrease>0 and this is not a good idea. Alex Hillman -Original Message- Sent: Friday, July 20, 2001 8:41 AM To: Multiple recipients of list ORACLE-L consider this also.. if u make a tablespace as LMT, the SMON process is not going to coalesce it automatically.. as it in the case of dictionary managed TS. if i'm wrong.. pls correct. Saurabh Sharma [EMAIL PROTECTED] http://www.geocities.com/saurabh00pc/stride.html - Original Message - To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 5:16 AM > Yes, you can make any tablespace a locally-managed tablespace except SYSTEM. > What they're saying, I think, is that you can't set up temporary tablespaces > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > management. > > Jon Walthour > > - Original Message - > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > Sent: Thursday, July 19, 2001 4:32 PM > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > documented? > > > > Cheers, > > > > Earl > > > > --- > > > > TheOracleDBA > > [EMAIL PROTECTED] > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > Hillman, Alex wrote: > > >You canuse any storage parameters you like but oracle will ignore them > exept > > >for initial for LMT with autoallocate. I would personally do not use > > >autoallocate. Also you cannot use autoallocate for temporary tablespace > and > > >shouldn't use it for rollback. > > > > > >Alex Hillman > > > > > >-Original Message- > > >Sent: Thursday, July 19, 2001 12:43 PM > > >To: Multiple recipients of list ORACLE-L > > > > > > > > >HPUX 11i 64 bit > > >Oracle 8.1.7.1 32 bit > > > > > >I am creating a new database and decided to go with locally managed > > >tablespaces. I was going to go with autoallocate because the best I can > > >tell the only possible drawback with this is a little wasted space. > > >However, I was under the impression that you could not specify a next in > the > > >storage clause of a table creation. Yet you can. So what happens if I > have > > >a next defined? Do they pretty much just throw that away or should I > really > > >not define it? > > > > > > > > > > > > > > >Kimberly Smith > > >Database Administrator > > >IT Dept. - Fujitsu/GMD > > >Phone: (503) 669-6050 > > >Fax: (503) 669-5705 > > >Email : [EMAIL PROTECTED] > > > > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Kimberly Smith > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Hillman, Alex > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > > > > > > > > Get 250 color business cards for FREE! > > http://businesscards.lycos.com/vp/fastpath/ > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: The Oracle DBA > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like subscribing). > > > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Jon Walthour > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access /
Re: Locally managed tablespaces
That's kind of the point -- in an LMT the free space is managed by bitmap. If it's contiguous in the bitmap it's contiguous, so if you free two adjacent blocks then they're already coalesced, nothing for SMON to do. That's their advantage -- no overhead for coalesce and no overhead for creating dictionary rows to manage free space. Saurabh Sharma wrote: > consider this also.. > if u make a tablespace as LMT, the SMON process is not going to coalesce it > automatically.. > as it in the case of dictionary managed TS. > > if i'm wrong.. pls correct. > > Saurabh Sharma > > [EMAIL PROTECTED] > http://www.geocities.com/saurabh00pc/stride.html > > - Original Message - > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Sent: Friday, July 20, 2001 5:16 AM > > > Yes, you can make any tablespace a locally-managed tablespace except > SYSTEM. > > What they're saying, I think, is that you can't set up temporary > tablespaces > > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > > management. > > > > Jon Walthour > > > > - Original Message - > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > > Sent: Thursday, July 19, 2001 4:32 PM > > > > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > > documented? > > > > > > Cheers, > > > > > > Earl > > > > > > --- > > > > > > TheOracleDBA > > > [EMAIL PROTECTED] > > > > > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > > Hillman, Alex wrote: > > > >You canuse any storage parameters you like but oracle will ignore them > > exept > > > >for initial for LMT with autoallocate. I would personally do not use > > > >autoallocate. Also you cannot use autoallocate for temporary tablespace > > and > > > >shouldn't use it for rollback. > > > > > > > >Alex Hillman > > > > > > > >-Original Message- > > > >Sent: Thursday, July 19, 2001 12:43 PM > > > >To: Multiple recipients of list ORACLE-L > > > > > > > > > > > >HPUX 11i 64 bit > > > >Oracle 8.1.7.1 32 bit > > > > > > > >I am creating a new database and decided to go with locally managed > > > >tablespaces. I was going to go with autoallocate because the best I > can > > > >tell the only possible drawback with this is a little wasted space. > > > >However, I was under the impression that you could not specify a next > in > > the > > > >storage clause of a table creation. Yet you can. So what happens if I > > have > > > >a next defined? Do they pretty much just throw that away or should I > > really > > > >not define it? > > > > > > > > > > > > > > > > > > > >Kimberly Smith > > > >Database Administrator > > > >IT Dept. - Fujitsu/GMD > > > >Phone: (503) 669-6050 > > > >Fax: (503) 669-5705 > > > >Email : [EMAIL PROTECTED] > > > > > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Kimberly Smith > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > >the message BODY, include a line containing: UNSUB ORACLE-L > > > >(or the name of mailing list you want to be removed from). You may > > > >also send the HELP command for other information (like subscribing). > > > >-- > > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > >-- > > > >Author: Hillman, Alex > > > > INET: [EMAIL PROTECTED] > > > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > >the message BODY, include a line containing: UNSUB ORACLE-L > > > >(or the name of mailing list you want to be removed from). You may > > > >also send the HELP command for other information (like subscribing). > > > > > > > > > > > > > Get 250 color business cards for FREE! > > > http://businesscards.lycos.com/vp/fastpath/ > > > -- > > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > > -- > > > Author: The Oracle DBA > > > INET: [EMAIL PROTECTED] > > > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > > San Diego, California-- Public Internet access / Mailing Lists > > > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > > the message BODY, include a line containing: UNSUB ORACLE-L > > > (or the
Re: Locally managed tablespaces
consider this also.. if u make a tablespace as LMT, the SMON process is not going to coalesce it automatically.. as it in the case of dictionary managed TS. if i'm wrong.. pls correct. Saurabh Sharma [EMAIL PROTECTED] http://www.geocities.com/saurabh00pc/stride.html - Original Message - To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 5:16 AM > Yes, you can make any tablespace a locally-managed tablespace except SYSTEM. > What they're saying, I think, is that you can't set up temporary tablespaces > and shouldn't set up rollback segments with the AUTOALLOCATE allocation > management. > > Jon Walthour > > - Original Message - > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> > Sent: Thursday, July 19, 2001 4:32 PM > > > > I was pretty sure you could use it for any TS but SYSTEM. Is this > documented? > > > > Cheers, > > > > Earl > > > > --- > > > > TheOracleDBA > > [EMAIL PROTECTED] > > > > > > > > On Thu, 19 Jul 2001 09:32:27 > > Hillman, Alex wrote: > > >You canuse any storage parameters you like but oracle will ignore them > exept > > >for initial for LMT with autoallocate. I would personally do not use > > >autoallocate. Also you cannot use autoallocate for temporary tablespace > and > > >shouldn't use it for rollback. > > > > > >Alex Hillman > > > > > >-Original Message- > > >Sent: Thursday, July 19, 2001 12:43 PM > > >To: Multiple recipients of list ORACLE-L > > > > > > > > >HPUX 11i 64 bit > > >Oracle 8.1.7.1 32 bit > > > > > >I am creating a new database and decided to go with locally managed > > >tablespaces. I was going to go with autoallocate because the best I can > > >tell the only possible drawback with this is a little wasted space. > > >However, I was under the impression that you could not specify a next in > the > > >storage clause of a table creation. Yet you can. So what happens if I > have > > >a next defined? Do they pretty much just throw that away or should I > really > > >not define it? > > > > > > > > > > > > > > >Kimberly Smith > > >Database Administrator > > >IT Dept. - Fujitsu/GMD > > >Phone: (503) 669-6050 > > >Fax: (503) 669-5705 > > >Email : [EMAIL PROTECTED] > > > > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Kimberly Smith > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > >-- > > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > > >-- > > >Author: Hillman, Alex > > > INET: [EMAIL PROTECTED] > > > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > >San Diego, California-- Public Internet access / Mailing Lists > > > > > >To REMOVE yourself from this mailing list, send an E-Mail message > > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > >the message BODY, include a line containing: UNSUB ORACLE-L > > >(or the name of mailing list you want to be removed from). You may > > >also send the HELP command for other information (like subscribing). > > > > > > > > > Get 250 color business cards for FREE! > > http://businesscards.lycos.com/vp/fastpath/ > > -- > > Please see the official ORACLE-L FAQ: http://www.orafaq.com > > -- > > Author: The Oracle DBA > > INET: [EMAIL PROTECTED] > > > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > > San Diego, California-- Public Internet access / Mailing Lists > > > > To REMOVE yourself from this mailing list, send an E-Mail message > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > > the message BODY, include a line containing: UNSUB ORACLE-L > > (or the name of mailing list you want to be removed from). You may > > also send the HELP command for other information (like subscribing). > > > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Jon Walthour > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >
Re: Locally managed tablespaces
Yes, you can make any tablespace a locally-managed tablespace except SYSTEM. What they're saying, I think, is that you can't set up temporary tablespaces and shouldn't set up rollback segments with the AUTOALLOCATE allocation management. Jon Walthour - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Thursday, July 19, 2001 4:32 PM > I was pretty sure you could use it for any TS but SYSTEM. Is this documented? > > Cheers, > > Earl > > --- > > TheOracleDBA > [EMAIL PROTECTED] > > > > On Thu, 19 Jul 2001 09:32:27 > Hillman, Alex wrote: > >You canuse any storage parameters you like but oracle will ignore them exept > >for initial for LMT with autoallocate. I would personally do not use > >autoallocate. Also you cannot use autoallocate for temporary tablespace and > >shouldn't use it for rollback. > > > >Alex Hillman > > > >-Original Message- > >Sent: Thursday, July 19, 2001 12:43 PM > >To: Multiple recipients of list ORACLE-L > > > > > >HPUX 11i 64 bit > >Oracle 8.1.7.1 32 bit > > > >I am creating a new database and decided to go with locally managed > >tablespaces. I was going to go with autoallocate because the best I can > >tell the only possible drawback with this is a little wasted space. > >However, I was under the impression that you could not specify a next in the > >storage clause of a table creation. Yet you can. So what happens if I have > >a next defined? Do they pretty much just throw that away or should I really > >not define it? > > > > > > > > > >Kimberly Smith > >Database Administrator > >IT Dept. - Fujitsu/GMD > >Phone: (503) 669-6050 > >Fax: (503) 669-5705 > >Email : [EMAIL PROTECTED] > > > >-- > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > >-- > >Author: Kimberly Smith > > INET: [EMAIL PROTECTED] > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > >San Diego, California-- Public Internet access / Mailing Lists > > > >To REMOVE yourself from this mailing list, send an E-Mail message > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > >the message BODY, include a line containing: UNSUB ORACLE-L > >(or the name of mailing list you want to be removed from). You may > >also send the HELP command for other information (like subscribing). > >-- > >Please see the official ORACLE-L FAQ: http://www.orafaq.com > >-- > >Author: Hillman, Alex > > INET: [EMAIL PROTECTED] > > > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > >San Diego, California-- Public Internet access / Mailing Lists > > > >To REMOVE yourself from this mailing list, send an E-Mail message > >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > >the message BODY, include a line containing: UNSUB ORACLE-L > >(or the name of mailing list you want to be removed from). You may > >also send the HELP command for other information (like subscribing). > > > > > Get 250 color business cards for FREE! > http://businesscards.lycos.com/vp/fastpath/ > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: The Oracle DBA > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jon Walthour INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
I was pretty sure you could use it for any TS but SYSTEM. Is this documented? Cheers, Earl --- TheOracleDBA [EMAIL PROTECTED] On Thu, 19 Jul 2001 09:32:27 Hillman, Alex wrote: >You canuse any storage parameters you like but oracle will ignore them exept >for initial for LMT with autoallocate. I would personally do not use >autoallocate. Also you cannot use autoallocate for temporary tablespace and >shouldn't use it for rollback. > >Alex Hillman > >-Original Message- >Sent: Thursday, July 19, 2001 12:43 PM >To: Multiple recipients of list ORACLE-L > > >HPUX 11i 64 bit >Oracle 8.1.7.1 32 bit > >I am creating a new database and decided to go with locally managed >tablespaces. I was going to go with autoallocate because the best I can >tell the only possible drawback with this is a little wasted space. >However, I was under the impression that you could not specify a next in the >storage clause of a table creation. Yet you can. So what happens if I have >a next defined? Do they pretty much just throw that away or should I really >not define it? > > > > >Kimberly Smith >Database Administrator >IT Dept. - Fujitsu/GMD >Phone: (503) 669-6050 >Fax: (503) 669-5705 >Email : [EMAIL PROTECTED] > >-- >Please see the official ORACLE-L FAQ: http://www.orafaq.com >-- >Author: Kimberly Smith > INET: [EMAIL PROTECTED] > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 >San Diego, California-- Public Internet access / Mailing Lists > >To REMOVE yourself from this mailing list, send an E-Mail message >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >the message BODY, include a line containing: UNSUB ORACLE-L >(or the name of mailing list you want to be removed from). You may >also send the HELP command for other information (like subscribing). >-- >Please see the official ORACLE-L FAQ: http://www.orafaq.com >-- >Author: Hillman, Alex > INET: [EMAIL PROTECTED] > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 >San Diego, California-- Public Internet access / Mailing Lists > >To REMOVE yourself from this mailing list, send an E-Mail message >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >the message BODY, include a line containing: UNSUB ORACLE-L >(or the name of mailing list you want to be removed from). You may >also send the HELP command for other information (like subscribing). > Get 250 color business cards for FREE! http://businesscards.lycos.com/vp/fastpath/ -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: The Oracle DBA INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Guess I really have to learn to write in full sentences, which will be hard since I don't even talk that way. Its the autoallocate you can't use. I created it just fine with the uniform size. Sorry for the confusion everyone. -Original Message- Sent: Thursday, July 19, 2001 10:59 AM To: [EMAIL PROTECTED]; Kimberly Smith On Thursday 19 July 2001 10:56, Kimberly Smith wrote: > Actually, I discovered that you cannot use it for the rollback tablespace > either. Oh, you can create the tablespace no problem but then you cannot > create the rollback segments in it. Something that the doco failed to > mention. Kimberly, Maybe it's a version/platform dependent bug? 10:51:26 jkstill@ts01 SQL> create tablespace RBS2 datafile 10:51:36 2 '/u01/oradata/ts01/ts01_rbs02.dbf' size 20m 10:51:48 3 extent management local uniform size 1m 10:52:09 4 / Tablespace created. 10:52:17 jkstill@ts01 SQL> create rollback segment rbl01 tablespace rbs2; Rollback segment created. 10:52:32 jkstill@ts01 SQL> alter rollback segment rbl01 online; Rollback segment altered. 10:54:27 jkstill@ts01 SQL> create table test2 ( td date ); Table created. 10:55:39 jkstill@ts01 SQL> set transaction use rollback segment rbl01; Transaction set. 10:56:42 jkstill@ts01 SQL> insert into test2 (td) values(sysdate); 1 row created. 10:56:57 jkstill@ts01 SQL> commit; Commit complete. 10:56:58 jkstill@ts01 SQL> -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
On Thursday 19 July 2001 10:56, Kimberly Smith wrote: > Actually, I discovered that you cannot use it for the rollback tablespace > either. Oh, you can create the tablespace no problem but then you cannot > create the rollback segments in it. Something that the doco failed to > mention. Ah, never mind the previous post. I see you were talking about the 'autoallocate'. Jared -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jared Still INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
It is the autoallocate that it complains about. Not even sure why I would have wanted to use autoallocate anyway but you have to give it the uniform size parameter. -Original Message- Sent: Thursday, July 19, 2001 11:47 AM To: Multiple recipients of list ORACLE-L But I am having rollback segments using LMT.. I am on 8.1.5... -Original Message- Sent: 19 July 2001 18:57 To: Multiple recipients of list ORACLE-L Actually, I discovered that you cannot use it for the rollback tablespace either. Oh, you can create the tablespace no problem but then you cannot create the rollback segments in it. Something that the doco failed to mention. I did catch the temporary one in the doco though. -Original Message- Sent: Thursday, July 19, 2001 10:32 AM To: Multiple recipients of list ORACLE-L You canuse any storage parameters you like but oracle will ignore them exept for initial for LMT with autoallocate. I would personally do not use autoallocate. Also you cannot use autoallocate for temporary tablespace and shouldn't use it for rollback. Alex Hillman -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Raj Gopalan INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or t
Re: Locally managed tablespaces
On Thursday 19 July 2001 10:56, Kimberly Smith wrote: > Actually, I discovered that you cannot use it for the rollback tablespace > either. Oh, you can create the tablespace no problem but then you cannot > create the rollback segments in it. Something that the doco failed to > mention. Kimberly, Maybe it's a version/platform dependent bug? 10:51:26 jkstill@ts01 SQL> create tablespace RBS2 datafile 10:51:36 2 '/u01/oradata/ts01/ts01_rbs02.dbf' size 20m 10:51:48 3 extent management local uniform size 1m 10:52:09 4 / Tablespace created. 10:52:17 jkstill@ts01 SQL> create rollback segment rbl01 tablespace rbs2; Rollback segment created. 10:52:32 jkstill@ts01 SQL> alter rollback segment rbl01 online; Rollback segment altered. 10:54:27 jkstill@ts01 SQL> create table test2 ( td date ); Table created. 10:55:39 jkstill@ts01 SQL> set transaction use rollback segment rbl01; Transaction set. 10:56:42 jkstill@ts01 SQL> insert into test2 (td) values(sysdate); 1 row created. 10:56:57 jkstill@ts01 SQL> commit; Commit complete. 10:56:58 jkstill@ts01 SQL> -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jared Still INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
But I am having rollback segments using LMT.. I am on 8.1.5... -Original Message- Sent: 19 July 2001 18:57 To: Multiple recipients of list ORACLE-L Actually, I discovered that you cannot use it for the rollback tablespace either. Oh, you can create the tablespace no problem but then you cannot create the rollback segments in it. Something that the doco failed to mention. I did catch the temporary one in the doco though. -Original Message- Sent: Thursday, July 19, 2001 10:32 AM To: Multiple recipients of list ORACLE-L You canuse any storage parameters you like but oracle will ignore them exept for initial for LMT with autoallocate. I would personally do not use autoallocate. Also you cannot use autoallocate for temporary tablespace and shouldn't use it for rollback. Alex Hillman -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Raj Gopalan INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Kimberly, Keep in mind that when you use LMT autoallocate option that the extents can grow at a different sizes. "The Autuallocate option allows Oracle to take control of the extent allocation. Oracle will use extent sizes of 64KB, 1MB, 8MB, and 64MB to manage space in the tablespace." The table created in the tablespace will adapt the auto extent policy of the tablespace and use increasingly larger extents as the table grows in size. see http://www.oracle.com/oramag/oracle/00-nov/o60o8i.html for the explaination. ROR mª¿ªm >>> [EMAIL PROTECTED] 07/19/01 01:56PM >>> Actually, I discovered that you cannot use it for the rollback tablespace either. Oh, you can create the tablespace no problem but then you cannot create the rollback segments in it. Something that the doco failed to mention. I did catch the temporary one in the doco though. -Original Message- Sent: Thursday, July 19, 2001 10:32 AM To: Multiple recipients of list ORACLE-L You canuse any storage parameters you like but oracle will ignore them exept for initial for LMT with autoallocate. I would personally do not use autoallocate. Also you cannot use autoallocate for temporary tablespace and shouldn't use it for rollback. Alex Hillman -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ron Rogers INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Actually, I discovered that you cannot use it for the rollback tablespace either. Oh, you can create the tablespace no problem but then you cannot create the rollback segments in it. Something that the doco failed to mention. I did catch the temporary one in the doco though. -Original Message- Sent: Thursday, July 19, 2001 10:32 AM To: Multiple recipients of list ORACLE-L You canuse any storage parameters you like but oracle will ignore them exept for initial for LMT with autoallocate. I would personally do not use autoallocate. Also you cannot use autoallocate for temporary tablespace and shouldn't use it for rollback. Alex Hillman -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
The size of extents that are managed locally are determined by the system. The LOCAL clause of the extent management specifies this menthod in create statement. Sunil Nookala Dell Computer Corp. Austin, TX -Original Message- Sent: Thursday, July 19, 2001 11:43 AM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
With LMT, Oracle allocates extents the way the tablespace was created even if you specify storage at the table level. --- Kimberly Smith <[EMAIL PROTECTED]> a écrit : > HPUX 11i 64 bit > Oracle 8.1.7.1 32 bit > > I am creating a new database and decided to go with > locally managed > tablespaces. I was going to go with autoallocate > because the best I can > tell the only possible drawback with this is a > little wasted space. > However, I was under the impression that you could > not specify a next in the > storage clause of a table creation. Yet you can. > So what happens if I have > a next defined? Do they pretty much just throw that > away or should I really > not define it? > > > > > Kimberly Smith > Database Administrator > IT Dept. - Fujitsu/GMD > Phone: (503) 669-6050 > Fax: (503) 669-5705 > Email : [EMAIL PROTECTED] > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: Kimberly Smith > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Stéphane Paquette DBA Oracle, consultant entrepôt de données Oracle DBA, datawarehouse consultant [EMAIL PROTECTED] ___ Do You Yahoo!? -- Vos albums photos en ligne, Yahoo! Photos : http://fr.photos.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?paquette=20stephane?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
You canuse any storage parameters you like but oracle will ignore them exept for initial for LMT with autoallocate. I would personally do not use autoallocate. Also you cannot use autoallocate for temporary tablespace and shouldn't use it for rollback. Alex Hillman -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Not positive but I would think Oracle just ignores the NEXT parameter in locally managed tablespaces Rick -Original Message- Sent: Thursday, July 19, 2001 12:43 PM To: Multiple recipients of list ORACLE-L HPUX 11i 64 bit Oracle 8.1.7.1 32 bit I am creating a new database and decided to go with locally managed tablespaces. I was going to go with autoallocate because the best I can tell the only possible drawback with this is a little wasted space. However, I was under the impression that you could not specify a next in the storage clause of a table creation. Yet you can. So what happens if I have a next defined? Do they pretty much just throw that away or should I really not define it? Kimberly Smith Database Administrator IT Dept. - Fujitsu/GMD Phone: (503) 669-6050 Fax: (503) 669-5705 Email : [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kimberly Smith INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Cale, Rick T (Richard) INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Thursday, July 19, 2001, 12:42:33 PM, Kimberly Smith wrote: KS> However, I was under the impression that you could not specify a next in the KS> storage clause of a table creation. Yet you can. So what happens if I have KS> a next defined? Do they pretty much just throw that away or should I really KS> not define it? It's been awhile since I've tested any of this, but I believe Oracle just ignores whatever you specify for NEXT. I do recall for sure the behavior with INITIAL. You can specify INITIAL, but the autoallocate algorithm then takes over to give you multiple extents that add up to whatever size you requested for your initial extent. So with autoallocate, you can use INITIAL to request a certain amount of space, but you may get it in multiple extents. Best regards, Jonathan Gennick mailto:[EMAIL PROTECTED] * 906.387.1698 http://Gennick.com * http://MichiganWaterfalls.com * http://MetalDrums.org -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jonathan Gennick INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
We are using LMTs with several of our databases. No problems. With these databases we are also running large file systems. Although our OS imposes a theoretical limit of 31.G, we have kept our datafiles to 20G or less. Again, no problems. Pete Barnett Oracle Database Administrator Regence BlueCross BlueShield [EMAIL PROTECTED] On Tue, 17 Apr 2001, Patricia Ashe wrote: > > I am interested in some statistics on Oracle locally managed tablespaces. I > have been looking for any bugs or negative info about them. Are they in use > at alot of sites? Seems like all the information I have come across is > positive. Which is great! But maybe they aren't being used at alot of > sites. Can I hear about experiences from others on this list? how many > sites are actually using them? > I have several databases that I am getting ready to go production soon and > would like to create the tablespaces as locally managed, but need more > statistics. > > PA > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Patricia Ashe > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Peter Barnett INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
I remember ssing somebody suggestion to create normal file in advance and then create temporary tablespace with reuse. Alex Hillman -Original Message- [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 2:56 PM To: Multiple recipients of list ORACLE-L I'm using LMTs with the UNIFORM EXTENT option on 8.1.6[.2], with great results. Two caveats I've noticed: 1) If you want to use LMTs for rollback segments, you MUST create at least one rollback segment in a dictionary managed tablespace first (in addition to the ever-present "system" RBS). This is bug#1176609, which you can lookup on Metalink... assuming that the palm pilot they're using as a webserver is up, of course. (-: 2) If you want to make your TEMP tablespace locally managed (i.e. created using TEMPFILE instead of DATAFILE), it will be created sparse on Unix systems. This means that (for example) you *won't* get an error if you inadvertently attempt to create a file larger than it's host filesystem... not up front, anyway. If that non-existent tempfile space is ever needed, you'll certainly get errors at that point (especially nasty if one of your control files is in the same filesystem). So make absolutely certain that the file size is entered correctly. According to Oracle Support, #2 is a documentation error which will be corrected in 9i. I've been meaning to submit an enhancement request, asking that file > filesystem be treated as an error, but haven't actually done it yet. Cheers! > -Original Message- > From: pashe [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 17, 2001 6:36 PM > To: ORACLE-L > Cc: pashe > Subject: Locally Managed Tablespaces > > > > I am interested in some statistics on Oracle locally managed > tablespaces. I > have been looking for any bugs or negative info about them. > Are they in use > at alot of sites? Seems like all the information I have come > across is > positive. Which is great! But maybe they aren't being used at alot of > sites. Can I hear about experiences from others on this > list? how many > sites are actually using them? > I have several databases that I am getting ready to go > production soon and > would like to create the tablespaces as locally managed, but need more > statistics. -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hillman, Alex INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
I'm using LMTs with the UNIFORM EXTENT option on 8.1.6[.2], with great results. Two caveats I've noticed: 1) If you want to use LMTs for rollback segments, you MUST create at least one rollback segment in a dictionary managed tablespace first (in addition to the ever-present "system" RBS). This is bug#1176609, which you can lookup on Metalink... assuming that the palm pilot they're using as a webserver is up, of course. (-: 2) If you want to make your TEMP tablespace locally managed (i.e. created using TEMPFILE instead of DATAFILE), it will be created sparse on Unix systems. This means that (for example) you *won't* get an error if you inadvertently attempt to create a file larger than it's host filesystem... not up front, anyway. If that non-existent tempfile space is ever needed, you'll certainly get errors at that point (especially nasty if one of your control files is in the same filesystem). So make absolutely certain that the file size is entered correctly. According to Oracle Support, #2 is a documentation error which will be corrected in 9i. I've been meaning to submit an enhancement request, asking that file > filesystem be treated as an error, but haven't actually done it yet. Cheers! > -Original Message- > From: pashe [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 17, 2001 6:36 PM > To: ORACLE-L > Cc: pashe > Subject: Locally Managed Tablespaces > > > > I am interested in some statistics on Oracle locally managed > tablespaces. I > have been looking for any bugs or negative info about them. > Are they in use > at alot of sites? Seems like all the information I have come > across is > positive. Which is great! But maybe they aren't being used at alot of > sites. Can I hear about experiences from others on this > list? how many > sites are actually using them? > I have several databases that I am getting ready to go > production soon and > would like to create the tablespaces as locally managed, but need more > statistics.
Re: Locally Managed Tablespaces
We've been using them here for about 8 months now with no problems. Solaris 2.7, Oracle 8.1.6.3. Patricia Ashe <[EMAIL PROTECTED]>@fatcity.com on 04/17/2001 07:35:49 PM Please respond to [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: I am interested in some statistics on Oracle locally managed tablespaces. I have been looking for any bugs or negative info about them. Are they in use at alot of sites? Seems like all the information I have come across is positive. Which is great! But maybe they aren't being used at alot of sites. Can I hear about experiences from others on this list? how many sites are actually using them? I have several databases that I am getting ready to go production soon and would like to create the tablespaces as locally managed, but need more statistics. PA -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Patricia Ashe INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally Managed Tablespaces
FOR YOUR INFORMATION ESIS and EPFAL are now part of Logica. The Internet email addresses of the staff has changed to the following - [EMAIL PROTECTED] eg [EMAIL PROTECTED] Emails using the old format will continue to be delivered until 30th June 2001. I have noted a very minor issue on our AIX 4.3 systems running 8.1.6.0.0 when creating a LMT. We get the error message ORA-01543 tablespace XXX already exists but it then goes on to create the tablespace. This is repeatable on several systems all at the same version. On an 8.1.6.3 system it does not happen. There is nothing on Metalink. The command I am using is create tablespace john datafile '' size 100M extent management local uniform size 1M; Anybody getting this on an 8.1.6.0 system? John -Original Message- From: Stephen Andert [mailto:[EMAIL PROTECTED]] Sent: 18 April 2001 01:03 To: Multiple recipients of list ORACLE-L Subject: Re: Locally Managed Tablespaces Patricia, FWIW, We have been using them for several months now and have not seen anything negative as a result. We decided to start using them for all new tablespaces and we add a new set of tablespaces every month to accomodate our partitioning strategy. Our biggest databases that we are doing this with are over 200MB on Compaq Tru64. Database version was 8.1.6.0 and we have moved to 8.1.6.2 with no noted problems. Good luck. Stephen >>> [EMAIL PROTECTED] 04/17 4:35 PM >>> I am interested in some statistics on Oracle locally managed tablespaces. I have been looking for any bugs or negative info about them. Are they in use at alot of sites? Seems like all the information I have come across is positive. Which is great! But maybe they aren't being used at alot of sites. Can I hear about experiences from others on this list? how many sites are actually using them? I have several databases that I am getting ready to go production soon and would like to create the tablespaces as locally managed, but need more statistics. PA -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Patricia Ashe INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Stephen Andert INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). This e-mail and any files transmitted with it, are confidential to Logica and are intended solely for the use of the individual or entity to whom they are addressed. -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hallas, John INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally Managed Tablespaces
Patricia, FWIW, We have been using them for several months now and have not seen anything negative as a result. We decided to start using them for all new tablespaces and we add a new set of tablespaces every month to accomodate our partitioning strategy. Our biggest databases that we are doing this with are over 200MB on Compaq Tru64. Database version was 8.1.6.0 and we have moved to 8.1.6.2 with no noted problems. Good luck. Stephen >>> [EMAIL PROTECTED] 04/17 4:35 PM >>> I am interested in some statistics on Oracle locally managed tablespaces. I have been looking for any bugs or negative info about them. Are they in use at alot of sites? Seems like all the information I have come across is positive. Which is great! But maybe they aren't being used at alot of sites. Can I hear about experiences from others on this list? how many sites are actually using them? I have several databases that I am getting ready to go production soon and would like to create the tablespaces as locally managed, but need more statistics. PA -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Patricia Ashe INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Stephen Andert INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
The 505 extents for an 8K block size is not the maximum total extents . It's the maximum performance wise, in order to read only one block to know where all extents are. It is obtain by (db_block_size/16 -7) So ((8192/16) -7) =505. This is how many extents location can be store in 1 block in the segment header. My sources are the document following the document "How to stop defragmenting and start living" and Steve Adams web site. --- Mark Leith <[EMAIL PROTECTED]> a écrit : > I have an 8k block size on 8.1.6 Win2K system, with > LMT - UNIFORM extent > size of 516k and a DEFAULT MAXEXTENTS of 2147483645 > ! This I take it was the > default, as I didn't specify that on creation.. A > little more than 505... > > Regards > > Mark > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Chuck > Hamilton > Sent: Wednesday, January 31, 2001 05:28 > To: Multiple recipients of list ORACLE-L > Subject: RE: Locally managed tablespaces > > > Where did you get the number 505 from? I read > somewhere that 64k is > allocated at the beginning of each datafile in a LMT > for a bitmap yielding > approximately 256k bits for the bitmap per datafile. > If each bit represents > one extent, I'd expect to be able to have a lot more > than 505 extents. > > paquette stephane <[EMAIL PROTECTED]> > wrote: > > > When using locally managed tablespace, you > should not > have more extents than the number of extents > that the > segment header can hold in 1 block. > > For a 8K block you should not have more than 505 > extents. > > The main drawback I see with lmt using uniform > extent > is if you want to change the extent size. You > must > drop/recreate the tablespace or migrate it to > dictionnary managed ,make the change than > migrate it > back to locally managed. > > Also, If all your tbs are locally managed you > must > have an online rollback segment in the system > tablespace before putting all the other rbs > offline > (like in Oracle 7.1) . > > > --- "Malkuns, Skip" a > icrit : > Is anyone using LMTSs? What is the > largest > number of > > extents that an object > > has? > > Notice any performance difference between LMTS > and > >! ! ; Locally managed > > tablespaces?? > > Had any problems with LMTS? > > Skip > > > > > -Original Message- > > > From: The Oracle DBA > [SMTP:[EMAIL PROTECTED]] > > > Sent: Tuesday, January 30, 2001 2:11 PM > > > To: Multiple recipients of list ORACLE-L > > > Subject: Re: Locally managed tablespaces > > > > > > Has anyone taken a PROD DB and changed it to > using > > LMTSs and then noticed > > > a perf change + or -? > > > > > > --- > > > > > > TheOracleDBA > > > [EMAIL PROTECTED] > > > > > > > > > > > > On Tue, 30 Jan 2001 10:30:29 > > > Bunyamin K.Karadeniz wrote: > > > > But some had claimed that Locally managed > > tablespaces are slower. I > > > do > > > >not know if it is correct but you must > consider > > it . > > > > And I wonder the performance results too. > ! ! > > >- Original Message - > > > >To: Multiple recipients of list ORACLE-L > > > > > >Sent: Tuesday, January 30, 2001 3:35 PM > > > > > > > > > > > >> I have always been concerned with > fragmentation > > of tablespaces, whether > > > it > > > >> be lots of extents, honeycomb or > > > >> bubble fragmentation. Now I am reading > that in > > Oracle 8i with the use > > > of > > > >> locally-managed table spaces, > > > >> these concerns are a thing of the past as > > Oracle now uses bit maps > > > within > > > >> the tablespaces themselves to > > > >> do space management. This seems foreign > to me > > that even though Oracle > > > will > > > >> use up all the space in > > > >> the tablespaces with no coalescing, it is > OK > > that extents will! ! go into > > > >the >
Re: Locally managed tablespaces
You cannot migrate a dictionary managed to local uniform. The best note on MetaLink that describes this is 120061.1. - Brian --- yong huang <[EMAIL PROTECTED]> wrote: > Hi, All, > > I can't figure out how to migrate my dictionary controlled tablespace > to a > locally managed with uniform size. > sys.dbms_space_admin.tablespace_migrate_to_local seems only to allow > you to > migrate to auto allocated LMT. So I emailed Jonathan Lewis and (hope > he won't > mind) says: > > begin quote** > What you are seeing is expected behaviour, the > allocation_type stays as USER, and you cannot > convert a dictionary managed tablespace into a > UNIFORM one (unless it happens to be completely > empty, I think, although there may be one other > special condition which I want to test). You only > get the benefit of the bitmap technology. > end quote > > in response to my question to him: > > |Question: I can't seem to migrate a dictionary-controlled TS to > local TS with > |uniform size. I can only migrate it to default, i.e. autoallocate. > Could you > |show me a simple screen dump to migrate to a uniform sized? Thanks a > lot. > > Therefore there's not much benefit you gain by migrating your > traditional > tablespace to LMT except through dropping and re-creating it. Who's > using the > autoallocate instead of uniform size option of LMT out there? > > Yong Huang > [EMAIL PROTECTED] > > > __ > Get personalized email addresses from Yahoo! Mail - only $35 > a year! http://personal.mail.yahoo.com/ > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: yong huang > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing > Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). __ Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Brian Wisniewski INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Hi, All, I can't figure out how to migrate my dictionary controlled tablespace to a locally managed with uniform size. sys.dbms_space_admin.tablespace_migrate_to_local seems only to allow you to migrate to auto allocated LMT. So I emailed Jonathan Lewis and (hope he won't mind) says: begin quote** What you are seeing is expected behaviour, the allocation_type stays as USER, and you cannot convert a dictionary managed tablespace into a UNIFORM one (unless it happens to be completely empty, I think, although there may be one other special condition which I want to test). You only get the benefit of the bitmap technology. end quote in response to my question to him: |Question: I can't seem to migrate a dictionary-controlled TS to local TS with |uniform size. I can only migrate it to default, i.e. autoallocate. Could you |show me a simple screen dump to migrate to a uniform sized? Thanks a lot. Therefore there's not much benefit you gain by migrating your traditional tablespace to LMT except through dropping and re-creating it. Who's using the autoallocate instead of uniform size option of LMT out there? Yong Huang [EMAIL PROTECTED] __ Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: yong huang INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
505 was the old limit for 8k databases, before the advent of unlimited extents which we have now. for 4k it was 249, 2k was 127 >>> [EMAIL PROTECTED] 01/31/01 12:27PM >>> Where did you get the number 505 from? I read somewhere that 64k is allocated at the beginning of each datafile in a LMT for a bitmap yielding approximately 256k bits for the bitmap per datafile. If each bit represents one extent, I'd expect to be able to have a lot more than 505 extents. paquette stephane <[EMAIL PROTECTED]> wrote: When using locally managed tablespace, you should not have more extents than the number of extents that the segment header can hold in 1 block. For a 8K block you should not have more than 505 extents. The main drawback I see with lmt using uniform extent is if you want to change the extent size. You must drop/recreate the tablespace or migrate it to dictionnary managed ,make the change than migrate it back to locally managed. Also, If all your tbs are locally managed you must have an online rollback segment in the system tablespace before putting all the other rbs offline (like in Oracle 7.1) . --- "Malkuns, Skip" a écrit : > Is anyone using LMTSs? What is the largest number of > extents that an object > has? > Notice any performance difference between LMTS and > Locally managed > tablespaces?? > Had any problems with LMTS? > Skip > > > -Original Message- > > From: The Oracle DBA [SMTP:[EMAIL PROTECTED]] > > Sent: Tuesday, January 30, 2001 2:11 PM > > To: Multiple recipients of list ORACLE-L > > Subject: Re: Locally managed tablespaces > > > > Has anyone taken a PROD DB and changed it to using > LMTSs and then noticed > > a perf change + or -? > > > > --- > > > > TheOracleDBA > > [EMAIL PROTECTED] > > > > > > > > On Tue, 30 Jan 2001 10:30:29 > > Bunyamin K.Karadeniz wrote: > > > But some had claimed that Locally managed > tablespaces are slower. I > > do > > >not know if it is correct but you must consider > it . > > > And I wonder the performance results too. > > >- Original Message - > > >To: Multiple recipients of list ORACLE-L > > > >Sent: Tuesday, January 30, 2001 3:35 PM > > > > > > > > >> I have always been concerned with fragmentation > of tablespaces, whether > > it > > >> be lots of extents, honeycomb or > > >> bubble fragmentation. Now I am reading that in > Oracle 8i with the use > > of > > >> locally-managed table spaces, > > >> these concerns are a thing of the past as > Oracle now uses bit maps > > within > > >> the tablespaces themselves to > > >> do space management. This seems foreign to me > that even though Oracle > > will > > >> use up all the space in > > >> the tablespaces with no coalescing, it is OK > that extents will go into > > >the > > >> thousands with no performance degradation. > > >> Could folks who are currently using locally > managed tablespaces please > > >> comment on how well it > > >> is working for them and if they have > experienced any problems in using > > >them. > > >> Thanks > > >> Skip > > >> Here is a good white paper on the subject. > > >> > http://www.embarcadero.com/news/white_papers.htm > > >> -- > > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: Malkuns, Skip > INET: [EMAIL PROTECTED] > > Fat City Network Services -- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California -- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Stephane Paquette DBA Oracle [EMAIL PROTECTED] __ Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?paquette=20stephane?= INET: [EMAIL PROTECTED] Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -
RE: Locally managed tablespaces
I have an 8k block size on 8.1.6 Win2K system, with LMT - UNIFORM extent size of 516k and a DEFAULT MAXEXTENTS of 2147483645 ! This I take it was the default, as I didn't specify that on creation.. A little more than 505... Regards Mark -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chuck HamiltonSent: Wednesday, January 31, 2001 05:28To: Multiple recipients of list ORACLE-LSubject: RE: Locally managed tablespaces Where did you get the number 505 from? I read somewhere that 64k is allocated at the beginning of each datafile in a LMT for a bitmap yielding approximately 256k bits for the bitmap per datafile. If each bit represents one extent, I'd expect to be able to have a lot more than 505 extents. paquette stephane <[EMAIL PROTECTED]> wrote: When using locally managed tablespace, you should nothave more extents than the number of extents that thesegment header can hold in 1 block.For a 8K block you should not have more than 505extents.The main drawback I see with lmt using uniform extentis if you want to change the extent size. You mustdrop/recreate the tablespace or migrate it todictionnary managed ,make the change than migrate itback to locally managed.Also, If all your tbs are locally managed you musthave an online rollback segment in the systemtablespace before putting all the other rbs offline(like in Oracle 7.1) .--- "Malkuns, Skip" <[EMAIL PROTECTED]>aicrit : > Is anyone using LMTSs? What is the largestnumber of> extents that an object> has?> Notice any performance difference between LMTS and>! ! ; Locally managed> tablespaces??> Had any problems with LMTS?> Skip> > > -Original Message-> > From: The Oracle DBA [SMTP:[EMAIL PROTECTED]]> > Sent: Tuesday, January 30, 2001 2:11 PM> > To: Multiple recipients of list ORACLE-L> > Subject: Re: Locally managed tablespaces> > > > Has anyone taken a PROD DB and changed it to using> LMTSs and then noticed> > a perf change + or -?> > > > ---> > > > TheOracleDBA> > [EMAIL PROTECTED]> > > > > > > > On Tue, 30 Jan 2001 10:30:29 > > Bunyamin K.Karadeniz wrote:> > > But some had claimed that Locally managed> tablespaces are slower. I> > do> > >not know if it is correct but you must consider> it .> > > And I wonder the performance results too.! ! > > >- Original Message -> > >To: Multiple recipients of list ORACLE-L> <[EMAIL PROTECTED]>> > >Sent: Tuesday, January 30, 2001 3:35 PM> > >> > >> > >> I have always been concerned with fragmentation> of tablespaces, whether> > it> > >> be lots of extents, honeycomb or> > >> bubble fragmentation. Now I am reading that in> Oracle 8i with the use> > of> > >> locally-managed table spaces,> > >> these concerns are a thing of the past as> Oracle now uses bit maps> > within> > >> the tablespaces themselves to> > >> do space management. This seems foreign to me> that even though Oracle> > will> > >> use up all the space in> > >> the tablespaces with no coalescing, it is OK> that extents will! ! go into> > >the> > >> thousands with no performance degradation.> > >> Could folks who are currently using locally> managed tablespaces please> > >> comment on how well it> > >> is working for them and if they have> experienced any problems in using> > >them.> > >> Thanks> > >> Skip> > >> Here is a good white paper on the subject.> > >>> http://www.embarcadero.com/news/white_papers.htm> > >> --> > > -- > Please see the official ORACLE-L FAQ:> http://www.orafaq.com> -- > Author: Malkuns, Skip> INET: [EMAIL PROTECTED]> > Fat City Network Services -- (858) 538-5051 FAX:> (858) 538-5051> San Diego, California -- Public Internet> access / Mailing Lists>--! ! --> To REMOVE yourself from this mailing list, send an> E-Mail message> to: [EMAIL PROTECTED] (note EXACT spelling of> 'ListGuru') and in> the message BODY, include a line containing: UNSUB> ORACLE-L> (or the name of mailing list you want to be removed> from). You may> also send the HELP command for other i
RE: Locally managed tablespaces
Hi Ross, The 2% was elapsed wall clock time for the batch process that we were tuning. Of course, "your mileage may vary" because it depends so heavily on how bad the problem that you are fixing is. In this case we had a 2% problem and fixed it. You may have a 5% problem with the ST enqueue, in which case the gain would be 5%. However, if you don't have an ST enqueue problem, then there will be no such gain from migrating to local. @ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/ -Original Message- Sent: Thursday, 1 February 2001 1:41 To: Multiple recipients of list ORACLE-L "The gain from that change was about 2%." Steve, What metric did you use? Did you use a task or customer-specific metric (in which case the 2% gain does not necessarily map over to anyone else's site) or a generic "benchmark" you picked up in your travels ( in which case it might be of general use to us listers ) - Ross -Original Message- Sent: Tuesday, January 30, 2001 6:10 PM To: Multiple recipients of list ORACLE-L Hi All, I was working on a tuning assignment last week where one of the more minor changes made was to migrate their "scratch" tablespace to locally managed. The gain from that change was about 2%. That saving was due to the elimination of ST enqueue contention associated with multiple processes trying to create scratch tables at the same time. It is only certain data dictionary queries that are slower with locally managed tablespaces, and that's only really bad if you have too many extents per segment. See http://www.ixora.com.au/tips/creation/extents.htm for why. The performance of SELECT and DML statements against user data is unchanged. The performance of space management transactions is slightly improved, and greatly if ST enqueue contention was otherwise a problem. @ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/ -Original Message- Sent: Wednesday, 31 January 2001 5:11 To: Multiple recipients of list ORACLE-L Has anyone taken a PROD DB and changed it to using LMTSs and then noticed a perf change + or -? --- TheOracleDBA [EMAIL PROTECTED] On Tue, 30 Jan 2001 10:30:29 Bunyamin K.Karadeniz wrote: > But some had claimed that Locally managed tablespaces are slower. I do >not know if it is correct but you must consider it . > And I wonder the performance results too. > >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Tuesday, January 30, 2001 3:35 PM > > >> I have always been concerned with fragmentation of tablespaces, whether it >> be lots of extents, honeycomb or >> bubble fragmentation. Now I am reading that in Oracle 8i with the use of >> locally-managed table spaces, >> these concerns are a thing of the past as Oracle now uses bit maps within >> the tablespaces themselves to >> do space management. This seems foreign to me that even though Oracle will >> use up all the space in >> the tablespaces with no coalescing, it is OK that extents will go into >the >> thousands with no performance degradation. >> Could folks who are currently using locally managed tablespaces please >> comment on how well it >> is working for them and if they have experienced any problems in using >them. >> Thanks >> Skip -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steve Adams INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Where did you get the number 505 from? I read somewhere that 64k is allocated at the beginning of each datafile in a LMT for a bitmap yielding approximately 256k bits for the bitmap per datafile. If each bit represents one extent, I'd expect to be able to have a lot more than 505 extents. paquette stephane <[EMAIL PROTECTED]> wrote: When using locally managed tablespace, you should nothave more extents than the number of extents that thesegment header can hold in 1 block.For a 8K block you should not have more than 505extents.The main drawback I see with lmt using uniform extentis if you want to change the extent size. You mustdrop/recreate the tablespace or migrate it todictionnary managed ,make the change than migrate itback to locally managed.Also, If all your tbs are locally managed you musthave an online rollback segment in the systemtablespace before putting all the other rbs offline(like in Oracle 7.1) .--- "Malkuns, Skip" <[EMAIL PROTECTED]>aécrit : > Is anyone using LMTSs? What is the largestnumber of> extents that an object> has?> Notice any performance difference between LMTS and>! ; Locally managed> tablespaces??> Had any problems with LMTS?> Skip> > > -Original Message-> > From: The Oracle DBA [SMTP:[EMAIL PROTECTED]]> > Sent: Tuesday, Januaryy 30, 2001 2:11 PM> > To: Multiple recipients of list ORACLE-L> > Subject: Re: Locally managed tablespaces> > > > Has anyone taken a PROD DB and changed it to using> LMTSs and then noticed> > a perf change + or -?> > > > ---> > > > TheOracleDBA> > [EMAIL PROTECTED]> > > > > > > > On Tue, 30 Jan 2001 10:30:29 > > Bunyamin K.Karadeniz wrote:> > > But some had claimed that Locally managed> tablespaces are slower. I> > do> > >not know if it is correct but you must consider> it .> > > And I wonder the performance results too.! > > >- Original Message -> > >To: Multiple recipients of list ORACLE-L> <[EMAIL PROTECTED]>> > >Sent: Tuesday, January 30, 2001 3:35 PM> > >> > >> > >> I have always been concerned with fragmentation> of tablespaces, whether> > it> > >> be lots of extents, honeycomb or> > >> bubble fragmentation. Now I am reading that in> Oracle 8i with the use> > of> > >> locally-managed table spaces,> > >> these concerns are a thing of the past as> Oracle now uses bit maps> > within> > >> the tablespaces themselves to> > >> do space management. This seems foreign to me> that even though Oracle> > will> > >> use up all the space in> > >> the tablespaces with no coalescing, it is OK> that extents will! go into> > >the> > >> thousands with no performance degradation.> > >> Could folks who are currently using locally> managed tablespaces please> > >> comment on how well it> > >> is working for them and if they have> experienced any problems in using> > >them.> > >> Thanks> > >> Skip> > >> Here is a good white paper on the subject.> > >>> http://www.embarcadero.com/news/white_papers.htm> > >> --> > > -- > Please see the official ORACLE-L FAQ:> http://www.orafaq.com> -- > AAuthor: Malkuns, Skip> INET: [EMAIL PROTECTED]> > Fat City Network Services -- (858) 538-5051 FAX:> (858) 538-5051> San Diego, California -- Public Internet> access / Mailing Lists>--! --> To REMOVE yourself from this mailing list, send an> E-Mail message> to: [EMAIL PROTECTED] (note EXACT spelling of> 'ListGuru') and in> the message BODY, include a line containing: UNSUB> ORACLE-L> (or the name of mailing list you want to be removed> from). You may> also send the HELP command for other information> (like subscribing).=Stephane PaquetteDBA Oracle[EMAIL PROTECTED]__Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/-- Please see the official ORACLE-L FAQ: http://www.orafaq.com-- Author: =?iso-8859-1?q?paquette=20stephane?=INET: [EMAIL PROTECTED]Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051San Diego, California -- Public Internet access / Mailing Lis! tsTo REMOVE yourself from this mailing list, send an E-MMail messageto: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and inthe message BODY, include a line containing: UNSUB ORACLE-L(or the name of mailing list you want to be removed from). You mayalso send the HELP command for other information (like subscribing).Do You Yahoo!? - Get personalized email addresses from Yahoo! Mail Personal Address - only $35 a year!
RE: Locally managed tablespaces
Title: RE: Locally managed tablespaces "The gain from that change was about 2%." Steve, What metric did you use? Did you use a task or customer-specific metric (in which case the 2% gain does not necessarily map over to anyone else's site) or a generic "benchmark" you picked up in your travels ( in which case it might be of general use to us listers ) - Ross -Original Message- From: Steve Adams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 6:10 PM To: Multiple recipients of list ORACLE-L Subject: RE: Locally managed tablespaces Hi All, I was working on a tuning assignment last week where one of the more minor changes made was to migrate their "scratch" tablespace to locally managed. The gain from that change was about 2%. That saving was due to the elimination of ST enqueue contention associated with multiple processes trying to create scratch tables at the same time. It is only certain data dictionary queries that are slower with locally managed tablespaces, and that's only really bad if you have too many extents per segment. See http://www.ixora.com.au/tips/creation/extents.htm for why. The performance of SELECT and DML statements against user data is unchanged. The performance of space management transactions is slightly improved, and greatly if ST enqueue contention was otherwise a problem. @ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/ -Original Message- Sent: Wednesday, 31 January 2001 5:11 To: Multiple recipients of list ORACLE-L Has anyone taken a PROD DB and changed it to using LMTSs and then noticed a perf change + or -? --- TheOracleDBA [EMAIL PROTECTED] On Tue, 30 Jan 2001 10:30:29 Bunyamin K.Karadeniz wrote: > But some had claimed that Locally managed tablespaces are slower. I do >not know if it is correct but you must consider it . > And I wonder the performance results too. > >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Tuesday, January 30, 2001 3:35 PM > > >> I have always been concerned with fragmentation of tablespaces, whether it >> be lots of extents, honeycomb or >> bubble fragmentation. Now I am reading that in Oracle 8i with the use of >> locally-managed table spaces, >> these concerns are a thing of the past as Oracle now uses bit maps within >> the tablespaces themselves to >> do space management. This seems foreign to me that even though Oracle will >> use up all the space in >> the tablespaces with no coalescing, it is OK that extents will go into >the >> thousands with no performance degradation. >> Could folks who are currently using locally managed tablespaces please >> comment on how well it >> is working for them and if they have experienced any problems in using >them. >> Thanks >> Skip -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steve Adams INET: [EMAIL PROTECTED] Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
I have had a look at http://www.ixora.com.au/tips/creation/extents.htm but I am at a loss as to why the AUTOALLOCATE is "less efficient in terms of both space and algorithmic complexity than the UNIFORM SIZE policy". Anyone care to comment. I am using LMTS is a Production envirnment without any probs at all. Mart -Original Message- Sent: 30 January 2001 23:10 To: Multiple recipients of list ORACLE-L Hi All, I was working on a tuning assignment last week where one of the more minor changes made was to migrate their "scratch" tablespace to locally managed. The gain from that change was about 2%. That saving was due to the elimination of ST enqueue contention associated with multiple processes trying to create scratch tables at the same time. It is only certain data dictionary queries that are slower with locally managed tablespaces, and that's only really bad if you have too many extents per segment. See http://www.ixora.com.au/tips/creation/extents.htm for why. The performance of SELECT and DML statements against user data is unchanged. The performance of space management transactions is slightly improved, and greatly if ST enqueue contention was otherwise a problem. @ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/ -Original Message- Sent: Wednesday, 31 January 2001 5:11 To: Multiple recipients of list ORACLE-L Has anyone taken a PROD DB and changed it to using LMTSs and then noticed a perf change + or -? --- TheOracleDBA [EMAIL PROTECTED] On Tue, 30 Jan 2001 10:30:29 Bunyamin K.Karadeniz wrote: > But some had claimed that Locally managed tablespaces are slower. I do >not know if it is correct but you must consider it . > And I wonder the performance results too. > >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Tuesday, January 30, 2001 3:35 PM > > >> I have always been concerned with fragmentation of tablespaces, whether it >> be lots of extents, honeycomb or >> bubble fragmentation. Now I am reading that in Oracle 8i with the use of >> locally-managed table spaces, >> these concerns are a thing of the past as Oracle now uses bit maps within >> the tablespaces themselves to >> do space management. This seems foreign to me that even though Oracle will >> use up all the space in >> the tablespaces with no coalescing, it is OK that extents will go into >the >> thousands with no performance degradation. >> Could folks who are currently using locally managed tablespaces please >> comment on how well it >> is working for them and if they have experienced any problems in using >them. >> Thanks >> Skip -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steve Adams INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Martin Kendall INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
When using locally managed tablespace, you should not have more extents than the number of extents that the segment header can hold in 1 block. For a 8K block you should not have more than 505 extents. The main drawback I see with lmt using uniform extent is if you want to change the extent size. You must drop/recreate the tablespace or migrate it to dictionnary managed ,make the change than migrate it back to locally managed. Also, If all your tbs are locally managed you must have an online rollback segment in the system tablespace before putting all the other rbs offline (like in Oracle 7.1) . --- "Malkuns, Skip" <[EMAIL PROTECTED]> a écrit : > Is anyone using LMTSs? What is the largest number of > extents that an object > has? > Notice any performance difference between LMTS and > Locally managed > tablespaces?? > Had any problems with LMTS? > Skip > > > -Original Message- > > From: The Oracle DBA [SMTP:[EMAIL PROTECTED]] > > Sent: Tuesday, January 30, 2001 2:11 PM > > To: Multiple recipients of list ORACLE-L > > Subject:Re: Locally managed tablespaces > > > > Has anyone taken a PROD DB and changed it to using > LMTSs and then noticed > > a perf change + or -? > > > > --- > > > > TheOracleDBA > > [EMAIL PROTECTED] > > > > > > > > On Tue, 30 Jan 2001 10:30:29 > > Bunyamin K.Karadeniz wrote: > > > But some had claimed that Locally managed > tablespaces are slower. I > > do > > >not know if it is correct but you must consider > it . > > > And I wonder the performance results too. > > >- Original Message - > > >To: Multiple recipients of list ORACLE-L > <[EMAIL PROTECTED]> > > >Sent: Tuesday, January 30, 2001 3:35 PM > > > > > > > > >> I have always been concerned with fragmentation > of tablespaces, whether > > it > > >> be lots of extents, honeycomb or > > >> bubble fragmentation. Now I am reading that in > Oracle 8i with the use > > of > > >> locally-managed table spaces, > > >> these concerns are a thing of the past as > Oracle now uses bit maps > > within > > >> the tablespaces themselves to > > >> do space management. This seems foreign to me > that even though Oracle > > will > > >> use up all the space in > > >> the tablespaces with no coalescing, it is OK > that extents will go into > > >the > > >> thousands with no performance degradation. > > >> Could folks who are currently using locally > managed tablespaces please > > >> comment on how well it > > >> is working for them and if they have > experienced any problems in using > > >them. > > >> Thanks > > >> Skip > > >> Here is a good white paper on the subject. > > >> > http://www.embarcadero.com/news/white_papers.htm > > >> -- > > > -- > Please see the official ORACLE-L FAQ: > http://www.orafaq.com > -- > Author: Malkuns, Skip > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: > (858) 538-5051 > San Diego, California-- Public Internet > access / Mailing Lists > > To REMOVE yourself from this mailing list, send an > E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of > 'ListGuru') and in > the message BODY, include a line containing: UNSUB > ORACLE-L > (or the name of mailing list you want to be removed > from). You may > also send the HELP command for other information > (like subscribing). = Stephane Paquette DBA Oracle [EMAIL PROTECTED] __ Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: =?iso-8859-1?q?paquette=20stephane?= INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Is anyone using LMTSs? What is the largest number of extents that an object has? Notice any performance difference between LMTS and Locally managed tablespaces?? Had any problems with LMTS? Skip > -Original Message- > From: The Oracle DBA [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, January 30, 2001 2:11 PM > To: Multiple recipients of list ORACLE-L > Subject: Re: Locally managed tablespaces > > Has anyone taken a PROD DB and changed it to using LMTSs and then noticed > a perf change + or -? > > --- > > TheOracleDBA > [EMAIL PROTECTED] > > > > On Tue, 30 Jan 2001 10:30:29 > Bunyamin K.Karadeniz wrote: > > But some had claimed that Locally managed tablespaces are slower. I > do > >not know if it is correct but you must consider it . > > And I wonder the performance results too. > >- Original Message - > >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > >Sent: Tuesday, January 30, 2001 3:35 PM > > > > > >> I have always been concerned with fragmentation of tablespaces, whether > it > >> be lots of extents, honeycomb or > >> bubble fragmentation. Now I am reading that in Oracle 8i with the use > of > >> locally-managed table spaces, > >> these concerns are a thing of the past as Oracle now uses bit maps > within > >> the tablespaces themselves to > >> do space management. This seems foreign to me that even though Oracle > will > >> use up all the space in > >> the tablespaces with no coalescing, it is OK that extents will go into > >the > >> thousands with no performance degradation. > >> Could folks who are currently using locally managed tablespaces please > >> comment on how well it > >> is working for them and if they have experienced any problems in using > >them. > >> Thanks > >> Skip > >> Here is a good white paper on the subject. > >> http://www.embarcadero.com/news/white_papers.htm > >> -- > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Malkuns, Skip INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
RE: Locally managed tablespaces
Hi All, I was working on a tuning assignment last week where one of the more minor changes made was to migrate their "scratch" tablespace to locally managed. The gain from that change was about 2%. That saving was due to the elimination of ST enqueue contention associated with multiple processes trying to create scratch tables at the same time. It is only certain data dictionary queries that are slower with locally managed tablespaces, and that's only really bad if you have too many extents per segment. See http://www.ixora.com.au/tips/creation/extents.htm for why. The performance of SELECT and DML statements against user data is unchanged. The performance of space management transactions is slightly improved, and greatly if ST enqueue contention was otherwise a problem. @ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/ -Original Message- Sent: Wednesday, 31 January 2001 5:11 To: Multiple recipients of list ORACLE-L Has anyone taken a PROD DB and changed it to using LMTSs and then noticed a perf change + or -? --- TheOracleDBA [EMAIL PROTECTED] On Tue, 30 Jan 2001 10:30:29 Bunyamin K.Karadeniz wrote: > But some had claimed that Locally managed tablespaces are slower. I do >not know if it is correct but you must consider it . > And I wonder the performance results too. > >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Tuesday, January 30, 2001 3:35 PM > > >> I have always been concerned with fragmentation of tablespaces, whether it >> be lots of extents, honeycomb or >> bubble fragmentation. Now I am reading that in Oracle 8i with the use of >> locally-managed table spaces, >> these concerns are a thing of the past as Oracle now uses bit maps within >> the tablespaces themselves to >> do space management. This seems foreign to me that even though Oracle will >> use up all the space in >> the tablespaces with no coalescing, it is OK that extents will go into >the >> thousands with no performance degradation. >> Could folks who are currently using locally managed tablespaces please >> comment on how well it >> is working for them and if they have experienced any problems in using >them. >> Thanks >> Skip -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steve Adams INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Has anyone taken a PROD DB and changed it to using LMTSs and then noticed a perf change + or -? --- TheOracleDBA [EMAIL PROTECTED] On Tue, 30 Jan 2001 10:30:29 Bunyamin K.Karadeniz wrote: > But some had claimed that Locally managed tablespaces are slower. I do >not know if it is correct but you must consider it . > And I wonder the performance results too. >- Original Message - >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Sent: Tuesday, January 30, 2001 3:35 PM > > >> I have always been concerned with fragmentation of tablespaces, whether it >> be lots of extents, honeycomb or >> bubble fragmentation. Now I am reading that in Oracle 8i with the use of >> locally-managed table spaces, >> these concerns are a thing of the past as Oracle now uses bit maps within >> the tablespaces themselves to >> do space management. This seems foreign to me that even though Oracle will >> use up all the space in >> the tablespaces with no coalescing, it is OK that extents will go into >the >> thousands with no performance degradation. >> Could folks who are currently using locally managed tablespaces please >> comment on how well it >> is working for them and if they have experienced any problems in using >them. >> Thanks >> Skip >> Here is a good white paper on the subject. >> http://www.embarcadero.com/news/white_papers.htm >> -- >> Please see the official ORACLE-L FAQ: http://www.orafaq.com >> -- >> Author: Malkuns, Skip >> INET: [EMAIL PROTECTED] >> >> Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 >> San Diego, California-- Public Internet access / Mailing Lists >> >> To REMOVE yourself from this mailing list, send an E-Mail message >> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >> the message BODY, include a line containing: UNSUB ORACLE-L >> (or the name of mailing list you want to be removed from). You may >> also send the HELP command for other information (like subscribing). > >-- >Please see the official ORACLE-L FAQ: http://www.orafaq.com >-- >Author: Bunyamin K.Karadeniz > INET: [EMAIL PROTECTED] > >Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 >San Diego, California-- Public Internet access / Mailing Lists > >To REMOVE yourself from this mailing list, send an E-Mail message >to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in >the message BODY, include a line containing: UNSUB ORACLE-L >(or the name of mailing list you want to be removed from). You may >also send the HELP command for other information (like subscribing). > Get your small business started at Lycos Small Business at http://www.lycos.com/business/mail.html -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: The Oracle DBA INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
There is a .pdf out on technet that speaks to uniform extents management guidelines. There are recommendations as to how many extents you should really have, extent sizes based on table sizes, etc. Go to technet.oracle.com and select the "Internet DBA" tag on the left. Then select "Performance and Scalability" - Finally select the topic labeled "How to Stop Defragmenting and Start Living" Hope you find this helpful - Susan McClain Director, Data Management marchFIRST - Columbus Original Message Follows From: "Bunyamin K.Karadeniz" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Subject: Re: Locally managed tablespaces Date: Tue, 30 Jan 2001 10:30:29 -0800 But some had claimed that Locally managed tablespaces are slower. I do not know if it is correct but you must consider it . And I wonder the performance results too. - Original Message - To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 3:35 PM > I have always been concerned with fragmentation of tablespaces, whether it > be lots of extents, honeycomb or > bubble fragmentation. Now I am reading that in Oracle 8i with the use of > locally-managed table spaces, > these concerns are a thing of the past as Oracle now uses bit maps within > the tablespaces themselves to > do space management. This seems foreign to me that even though Oracle will > use up all the space in > the tablespaces with no coalescing, it is OK that extents will go into the > thousands with no performance degradation. > Could folks who are currently using locally managed tablespaces please > comment on how well it > is working for them and if they have experienced any problems in using them. > Thanks > Skip > Here is a good white paper on the subject. > http://www.embarcadero.com/news/white_papers.htm > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Malkuns, Skip > INET: [EMAIL PROTECTED] > > Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California -- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bunyamin K.Karadeniz INET: [EMAIL PROTECTED] Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Get your FREE download of MSN Explorer at http://explorer.msn.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: susan mcclain INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
But some had claimed that Locally managed tablespaces are slower. I do not know if it is correct but you must consider it . And I wonder the performance results too. - Original Message - To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 3:35 PM > I have always been concerned with fragmentation of tablespaces, whether it > be lots of extents, honeycomb or > bubble fragmentation. Now I am reading that in Oracle 8i with the use of > locally-managed table spaces, > these concerns are a thing of the past as Oracle now uses bit maps within > the tablespaces themselves to > do space management. This seems foreign to me that even though Oracle will > use up all the space in > the tablespaces with no coalescing, it is OK that extents will go into the > thousands with no performance degradation. > Could folks who are currently using locally managed tablespaces please > comment on how well it > is working for them and if they have experienced any problems in using them. > Thanks > Skip > Here is a good white paper on the subject. > http://www.embarcadero.com/news/white_papers.htm > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Malkuns, Skip > INET: [EMAIL PROTECTED] > > Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California-- Public Internet access / Mailing Lists > > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bunyamin K.Karadeniz INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Re: Locally managed tablespaces
Well you can STILL choose the initial/next values for a locally managed tablespace, so choose a reasonable one. >>> [EMAIL PROTECTED] 01/30/01 07:35AM >>> I have always been concerned with fragmentation of tablespaces, whether it be lots of extents, honeycomb or bubble fragmentation. Now I am reading that in Oracle 8i with the use of locally-managed table spaces, these concerns are a thing of the past as Oracle now uses bit maps within the tablespaces themselves to do space management. This seems foreign to me that even though Oracle will use up all the space in the tablespaces with no coalescing, it is OK that extents will go into the thousands with no performance degradation. Could folks who are currently using locally managed tablespaces please comment on how well it is working for them and if they have experienced any problems in using them. Thanks Skip Here is a good white paper on the subject. http://www.embarcadero.com/news/white_papers.htm -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Malkuns, Skip INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Tim Sawmiller INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).