Re: ** temp tablespace

2003-10-24 Thread Tanel Poder
Hi!   How much free space you have in your file system, you might be hitting the sparse files issue...   Tanel.   - Original Message - From: A Joshi To: Multiple recipients of list ORACLE-L Sent: Thursday, October 23, 2003 10:49 PM Subject: ** temp tablespace

RE: ** temp tablespace

2003-10-23 Thread Stephen.Lee
4GB isn't all that huge. A couple of questions I can think of are: 1. How many users are simultaneously trying to sort stuff? 2. How often does some dufus fire up a Cartesian join? -Original Message- Hi, I have a huge temp tablespace (4GB) and not much usage (current usage is 50MB

RE: Temp Tablespace

2003-10-09 Thread M Rafiq
Under the senario rely on v$sort_usage view. Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Thu, 09 Oct 2003 09:24:24 -0800 I think you are right Jack. With a Temporary Temp tablespace, there is nothing I can do to lower the HWM. An

RE: Temp Tablespace

2003-10-09 Thread Mercadante, Thomas F
I think you are right Jack. With a Temporary Temp tablespace, there is nothing I can do to lower the HWM. And I don;t really think it's full - just the HWM shows it filled up. Tom Mercadante Oracle Certified Professional -Original Message- Sent: Thursday, October 09, 2003 11:19 AM To:

RE: Temp Tablespace

2003-10-09 Thread Guang Mei
Title: RE: SAME and separating disk and index tablespaces Hi:   I had this situation last month and I finally bounced the db. "drop tablespace temp INCLUDING CONTENTS"   might work if you want to wait long enough. I tried this and the db just hang for 30 min before I killed it. My temp ts

Re: Temp Tablespace

2003-10-09 Thread M Rafiq
Tom, What type of temporary? Dictionery managed or LMT. If dictionary managed then 2 solutions. a)make it offline and online again during offpeak period. 2)Make it permanent tablespace to avoid this situation. If LMT based (temp_datafiles) then check v$sort_usage instead of header table. If head

Re: Temp Tablespace

2003-10-09 Thread Hemant K Chitale
If it is a TABLESPACE TEMPORARY,   query on v$SORT_SEGMENT to get the current size of the sort segment. Then issue an ALTER TABLESPACE   DEFAULT STORAGE (PCTINCREASE 0). Re-query V$SORT_SEGMENT and the segment would have been released.  If there were current users in the segment, you would still

RE: Temp Tablespace

2003-10-09 Thread Jack van Zanen
Hi A.F.A.I.K the space is free for use by new queries. Oracle just does not release the extents to save resources on extent management. Just that your monitoring scripts keep yelling 100% used :-) Jack -Original Message- Sent: Thursday, October 09, 2003 4:14 PM To: Multiple recipient

Re: TEMP Tablespace problem

2003-10-01 Thread Tanel Poder
I don't think that you can reduce temp datafile much below bytes_used value in v$temp_space_header. I could reduce the file few kilobytes, but not much compared to it's size. In order to reduce bytes_used, you need to bounce instance (if there isn't any nifty tricks for releasing temp segment other

Re: TEMP Tablespace problem

2003-10-01 Thread Mladen Gogala
Yes you can. On Wed, 2003-10-01 at 11:29, Teresita Castro wrote: > I have Oracle 9.2i > I already run the query and the tablespace TEMP have > CONTENTS=TEMPORARY AND EXTENT_MAN=LOCAL > Can I run this line to fix the size of my tablespace? > > SQL> alter database tempfile '/data/oradata/system/te

Re: TEMP Tablespace problem

2003-10-01 Thread Teresita Castro
I have Oracle 9.2i I already run the query and the tablespace TEMP have CONTENTS=TEMPORARY AND EXTENT_MAN=LOCAL Can I run this line to fix the size of my tablespace?   SQL> alter database tempfile '/data/oradata/system/temp01.dbf' resize 128M;   I mean is the same or I have to change someth

Re: TEMP Tablespace problem

2003-10-01 Thread Tanel Poder
er 01, 2003 5:39 PM Subject: Re: TEMP Tablespace problem This table do not have any file, how I understood this is the table space that the queries uses. They tell me that if I run a query that need mode that the actual space it will be made that the TEMP tablespace grow. >&

Re: TEMP Tablespace problem

2003-10-01 Thread Yechiel Adar
AdarMehish - Original Message - From: Teresita Castro To: Multiple recipients of list ORACLE-L Sent: Wednesday, October 01, 2003 4:19 PM Subject: Re: TEMP Tablespace problem 9.2i>>> [EMAIL PROTECTED] 09/30/03 08:54PM >>>What is the Oracle versio

Re: TEMP Tablespace problem

2003-10-01 Thread Teresita Castro
This table do not have any file, how I understood this is the table space that the queries uses. They tell me that if I run a query that need mode that the actual space it will be made that the TEMP tablespace grow. >>> [EMAIL PROTECTED] 09/30/03 10:09PM >>>If the TEMP tablespace is a tempora

Re: TEMP Tablespace problem

2003-10-01 Thread Teresita Castro
9.2i>>> [EMAIL PROTECTED] 09/30/03 08:54PM >>>What is the Oracle version?At 06:24 PM 9/30/2003 -0800, you wrote:>Hi!!>I am trying to change the size of my tablespace TEMP, I am not an >Administrator but we really need to make this tablespace smaller.>Already the size is 13214 Mgs, and this ta

Re: TEMP Tablespace problem

2003-10-01 Thread Tanel Poder
In 9i you could issue an "drop tablespace temp including contents and datafiles". (First make sure that this tablespace is not a default temporary tablespace). Tanel. - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Wednesday, October 01, 2003 5

Re: TEMP Tablespace problem

2003-09-30 Thread Wolfgang Breitling
If the TEMP tablespace is a temporary tablespace, i.e. made of temp files rather than datafiles, then you can't offline it. It would have to be dropped and rebuilt. At 07:34 PM 9/30/2003 -0800, you wrote: Maybe you can create another temp tablespace (called temp_new) on another disk, assign all

Re: TEMP Tablespace problem

2003-09-30 Thread Mladen Gogala
Teresita, spelling the word "administrator" with the capital letter is a good thing. Furthermore, if you have version 9i, you can do the following, little known, thing: SQL> alter database tempfile '/data/oradata/system/temp01.dbf' resize 128M; Database altered. If it's Oracle 8i, you can actual

Re: TEMP Tablespace problem

2003-09-30 Thread Guang Mei
Maybe you can create another temp tablespace (called temp_new) on another disk, assign all users to temp_new, then offline the old temp tablespace, drop the old temp tablespace, and finally remove the old temp datafiles from OS. HTH. Guang On Tue, 30 Sep 2003, Teresita Castro wrote: > Hi!! > I

Re: TEMP Tablespace problem

2003-09-30 Thread Wolfgang Breitling
What is the Oracle version? At 06:24 PM 9/30/2003 -0800, you wrote: Hi!! I am trying to change the size of my tablespace TEMP, I am not an Administrator but we really need to make this tablespace smaller. Already the size is 13214 Mgs, and this tablaspace is on a disk that is full, so if we can

RE: TEMP TABLESPACE

2002-05-20 Thread Sherman, Paul R.
Hamid, 1) Do not let TEMP tablespace have autoextend set to on - my .02 is to never have this set to on for any tablespace, but to monitor and expand as necessary. Other DBAs like autoextend, so you may want that for other tablespaces, but not for TEMP. 2) A nice trick to get TEMP cleared of all

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread DENNIS WILLIAMS
Simon - My apologies. Tim's response was for the other problem that is getting a lot of responses. In trying to read the postings as well as get some work done here, I confused the two. I was thinking that the response said that the loader first loads into the TEMPORARY segment, then merge

RE: TEMP tablespace growing abnormally

2002-05-14 Thread Rodrigues, Bryan
Simon, If auto extend is on the tablespace and there is a runaway or resource intensive process that is using up a great amount of temp space, Oracle will keep expanding the size of the tablespace until you have run out of space on the disk. Bryan -Original Message- Sent: Tuesday, May

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread Simon Waibale
Dennis, I haven't seen Tim's posting !!? as regards my woos -Original Message- Sent: Tuesday, May 14, 2002 10:13 PM To: Multiple recipients of list ORACLE-L Simon - I think Tim has given you a good answer to your TEMP tablespace growth. I just wanted to warn you to be cautious about ext

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread Simon Waibale
TEMPORARY -Original Message- Sent: Tuesday, May 14, 2002 9:39 PM To: Multiple recipients of list ORACLE-L Is your TEMP tablespace set to TEMPORARY or PERMANENT? -Original Message- Sent: Tuesday, May 14, 2002 11:14 AM To: Multiple recipients of list ORACLE-L Forgot to tell y

RE: TEMP tablespace growing abnormally

2002-05-14 Thread Simon Waibale
Yes, But this shouldn't warrant 'indefinite extension' of the TB ?!? -Original Message- Sent: Tuesday, May 14, 2002 9:39 PM To: Multiple recipients of list ORACLE-L Do you have auto extend on the temp tablespace? Bryan -Original Message- Sent: Tuesday, May 14, 2002 2:10 PM To:

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread Khedr, Waleed
I think you meant 8MB not 8GB, right? Take a look at v$sort_usage and find these sessions that are filling the TEMP TS. >From there find the sql behind this temp space and try to figure out if it's normal to allocate this space or there is a CARTESIAN join for example that is giving you this prob

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread DENNIS WILLIAMS
Simon - I think Tim has given you a good answer to your TEMP tablespace growth. I just wanted to warn you to be cautious about extremely large sizes of SORT_AREA_SIZE. This is a per-process setting, which means that if you have several processes, each process may acquire a lot of memory and the ov

RE: TEMP tablespace growing abnormally

2002-05-14 Thread Rodrigues, Bryan
Do you have auto extend on the temp tablespace? Bryan -Original Message- Sent: Tuesday, May 14, 2002 2:10 PM To: Multiple recipients of list ORACLE-L Hi all, Having a bad start of week. My temp tablespace is growing abnormally -from 3GB -> 32 GB (Filled up disk). DB is 81700 on Tru64 U

RE: TEMP tablespace growing abnormally -Sort Area

2002-05-14 Thread Wong, Bing
Is your TEMP tablespace set to TEMPORARY or PERMANENT? -Original Message- Sent: Tuesday, May 14, 2002 11:14 AM To: Multiple recipients of list ORACLE-L Forgot to tell you that myparameter for sort_area_size= apx. 8GB -Original Message- Sent: Tuesday, May 14, 2002 8:02 PM To:

RE: TEMP Tablespace Problem

2001-12-11 Thread DENNIS WILLIAMS
Ken - I assume you dropped the TEMP tablespace, which doesn't delete the datafile. I'm assuming you are on Unix. Just remove the data file and recreate the TEMP tablespace the same way as you originally did. I believe that the temp tablespace settings for all users will be unaffected, but you migh

Re: TEMP Tablespace Problem

2001-12-11 Thread tday6
Use the REUSE option on the CREATE TABLESPACE command. Ken Janusz <[EMAIL PROTECTED]>

Re: TEMP Tablespace Problem

2001-12-11 Thread Stefan Jahnke
Hi Assuming that you actually use the TEMP tablespace as a real "temp" tablespace and didn't put any actual data in it, you can just go ahead recreate it by reusing the old datafile. Ken Janusz schrieb: > > Somehow I deleted the TEMP tablespace but not the datafile. How do I go > about recr

RE: TEMP Tablespace

2001-09-25 Thread Jacques Kilchoer
Title: RE: TEMP Tablespace > -Original Message- > From: Connie Milliken [mailto:[EMAIL PROTECTED]] > > TEMP tablespace is not listed when I query dba_segments.  However, it > does show up in OEM and > through OEM it does appear to be online.  Yesterday, I > br

RE: TEMP Tablespace

2001-09-25 Thread Koivu, Lisa
Title: RE: TEMP Tablespace Hi Connie, Because there isn't anything stored in there (a segment) permanently.   But when I look at my db (well, my horsing-around-and-breaking-stuff db) I see this.  My temp tablespace is not permanent.   1  select segment_name from dba_segments   2*

Re: TEMP Tablespace

2001-09-25 Thread Ruth Gramolini
What tablespace are the temp segments showing up in? It may not be in TEMP. HTH, Ruth - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Tuesday, September 25, 2001 11:10 AM > TEMP tablespace is not listed when I query dba_segments. However, it

RE: TEMP Tablespace

2001-09-25 Thread Kimberly Smith
How was your TEMP tablespace created? Was it created using a temp datafile? Not all information that is normally available with tablespaces are valid when using a temporary tablespace with a temporary datafile. -Original Message- Sent: Tuesday, September 25, 2001 8:10 AM To: Multiple r

RE: TEMP Tablespace

2001-09-25 Thread Nicoll, Iain (Calanais)
Wouldn't it need to have something in it? -Original Message- Sent: 25 September 2001 16:10 To: Multiple recipients of list ORACLE-L TEMP tablespace is not listed when I query dba_segments. However, it does show up in OEM and through OEM it does appear to be online. Yesterday, I briefl

RE: Temp tablespace issue

2001-07-24 Thread Kimberly Smith
quot; <[EMAIL PROTECTED]> >To: "LazyDBA.com Discussion" <[EMAIL PROTECTED]> >Subject: RE: Temp tablespace issue >Date: Tue, 24 Jul 2001 08:52:53 -0500 > >If your are getting ORA-600 error for seemingly simple operations, I think >it is time to get Oracle

RE: Temp tablespace issue

2001-07-24 Thread Raghu Kota
Additional information: 134552 Thanks Raghu. >From: "Deshpande, Kirti" <[EMAIL PROTECTED]> >To: "LazyDBA.com Discussion" <[EMAIL PROTECTED]> >Subject: RE: Temp tablespace issue >Date: Tue, 24 Jul 2001 08:52:53 -0500 > >If your are getting ORA-600 error

Re: temp tablespace is permanent tablespace

2001-07-05 Thread Gregory Conron
On July 5, 2001 07:55 pm, [EMAIL PROTECTED] wrote: > Hi, > One of the generic users (multiple people use the same > logon/password) on one of my db's has been assigned temporary > tablespace which is a permanent tablespace type, i.e. > (select contents from dba_tablespaces where > tablespace_name

RE: temp tablespace is permanent tablespace

2001-07-05 Thread Reardon, Bruce (CALBBAY)
Hi Lyuda, What platform and what version? If on 815 and using global temporary tables (GTTs) then perhaps the temp tablespace was set to permanent to avoid some of the errors associated with GTTs. That said, by having the tablespace with permanent contents, the performance is probably worse. Al

RE: TEMP tablespace segment management

2001-02-27 Thread Joan Hsieh
sunto: RE: TEMP tablespace segment management > > or take it offline and online again. > Joan > > -Original Message- > Lee Robertson > Sent: Monday, February 26, 2001 10:52 AM > To: Multiple recipients of list ORACLE-L > > > find out from dba_tablespace

RE: TEMP tablespace segment management

2001-02-26 Thread Trassens, Christian
Since 8 you can issue an alter session set events 'immediate trace name DROP_SEGMENTS level ';. Given that the ts# is the number of tablespace. And you can know that from the table sys.ts$. You have temporary tablespace since 8i. I mean the ones you create with create temporary tablespace.The

RE: TEMP tablespace segment management

2001-02-26 Thread Trassens, Christian
sunto: RE: TEMP tablespace segment management > > or take it offline and online again. > Joan > > -Original Message- > Lee Robertson > Sent: Monday, February 26, 2001 10:52 AM > To: Multiple recipients of list ORACLE-L > > > find out from dba_table

RE: TEMP tablespace segment management

2001-02-26 Thread Shantanu Talukder
Srini, Answer to your question is NO, as far as I know. Why don't you define your temporary tablespace as 'TEMPORARY' assuming your database is at least 7.3 ! Example: alter tablespace temp temporary; If you do so, the tablespace cannot be used to hold any permanent segments, only for tempor

Re: TEMP tablespace segment management

2001-02-26 Thread nlzanen1
Hi, If it is set to temporary, why bother. If you don't have enough increase the size. Because oracle will reuse the extents in a temporary tablespace freeing it up won't solve a "cannot allocate extent" problem. Otherwise you could do an alter tablespace default storage (pctincrease 1) and th

Re: TEMP tablespace segment management

2001-02-26 Thread Mohammad Rafiq
Make it offline and online. Do it at off-peak time. Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Mon, 26 Feb 2001 07:25:27 -0800 Hi: Could someone let me know if there is a way to free up temporary segments in a temporary tablespa

RE: TEMP tablespace segment management

2001-02-26 Thread Trassens, Christian
Since 8 you can issue an alter session set events 'immediate trace name DROP_SEGMENTS level ';. Given that the ts# is the number of tablespace. And you can know that from the table sys.ts$. You have temporary tablespace since 8i. I mean the ones you create with create temporary tablespace.The

RE: TEMP tablespace segment management

2001-02-26 Thread Joan Hsieh
or take it offline and online again. Joan -Original Message- Lee Robertson Sent: Monday, February 26, 2001 10:52 AM To: Multiple recipients of list ORACLE-L find out from dba_tablespaces what the current pctincrease value is set to. Then alter the storage for that tablespace to be what

RE: TEMP tablespace segment management

2001-02-26 Thread lerobe - Lee Robertson
find out from dba_tablespaces what the current pctincrease value is set to. Then alter the storage for that tablespace to be what it was previously. Regards Lee -Original Message- Sent: 26 February 2001 15:25 To: Multiple recipients of list ORACLE-L Hi: Could someone let me know if

Re: temp tablespace

2001-02-03 Thread Mohammad Rafiq
Mitchell, It depends on your situtation. You can check your tempspace is in use by querying dba_segment segment_type ='TEMPORARY'. If it returns no rows then you can safely offline and online.Otherwise you haveto create another tempspace and altering all your user who are assigned your old temp

Re: temp tablespace

2001-02-02 Thread Mitchell
Rafiq I think I means not 'PERMANENT' but 'TEMPORARY'. in my case. After I alter tablespace mytemptablespace coalesce; it is still the same. No any extent released. I am not sure I can take temp tablespace offline or should I add another one and off./on the old one since we operate at 7/24. Mit

RE: temp tablespace

2001-02-02 Thread Mohammad Rafiq
Alex, Yes you are right if temp tablespace is 'TEMPORARY'. The situation he has described is pointing that temp tablespace is 'PERMANENT' and thats why his extents were not released/coalesced. Besides , with temp TEMPORARY tablespace , there are problems that space is not completely released ev

RE: temp tablespace

2001-02-02 Thread Trassens, Christian
You can also issue since 8.X: alter session set events 'immediate trace name DROP_SEGMENTS level '; > -Mensaje original- > De: Joan Hsieh [SMTP:[EMAIL PROTECTED]] > Enviado el: jueves 1 de febrero de 2001 21:28 > Para: Multiple recipients of list ORACLE-L &g

RE: temp tablespace

2001-02-01 Thread Alex Hillman
Title: RE: temp tablespace I disagree. pctincrease should be 0, you do not need to coalesce tablespace if it is temporary. Segments in temporary tablespace are not dropped after SQL statement execution ends. But if you want to drop all segments from temporary tablespace the easiest way is

RE: temp tablespace

2001-02-01 Thread Joan Hsieh
or take temp offline and online again. Joan -Original Message- Rafiq Sent: Thursday, February 01, 2001 2:12 PM To: Multiple recipients of list ORACLE-L To resolve it now: alter tablespace temp coalesce; for all the time set pctincrease to 1 (if 0) of temp tablespace alter tablespace

Re: temp tablespace

2001-02-01 Thread Mohammad Rafiq
To resolve it now: alter tablespace temp coalesce; for all the time set pctincrease to 1 (if 0) of temp tablespace alter tablespace temp default storage(pctincrease 1); Regards Rafiq Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> Date: Thu, 01 Feb 200

Réf. : Re: temp tablespace

2001-02-01 Thread Sofiane-Ennaifar
"Mitchell" net.ca> cc :(ccc : Sofiane Ennaifar/DIR/GIECB) Objet : Re: te

Re: temp tablespace

2001-02-01 Thread Mitchell
Hi. I have my daily routine to check segmetn whose next extent will not fit in the single largest free extent in the tablespace. This morning I found the my temporary tablespace is on the list . We have 1624M assigned for the temp tablespace. As my understatd temp tablespace will extend itself a