ORA-25153 Temporary Tablespace is Empty Error in Oracle Ora-25153 Privremene Tablespace je Prazan Greška u Oracle
When executing SQL query, the following Oracle error may appears: Pri izvršavanju SQL upit, u nastavku Oracle svibanj pojavi pogreška:
ORA-25153: Temporary Tablespace is Empty Ora-25153: Privremeni Tablespace je prazna
The cause for the ORA-25153 error is because attempt was made to use space in a temporary tablespace with no files (no datafiles defined). Uzrok za Ora-25153 pogreška jer je atentat je napravljen za korištenje prostora u privremenu tablespace bez slika (ne datafiles definirano).
To solve the problem, the solution is just by adding files (datafiles) to the TEMP tablespace by using ADD TEMPFILE command, or by using “Add Datafiles” in Oracle Enterprise Manager. Za riješiti problem, rješenje je jednostavno dodavanjem slika (datafiles) na temp tablespace koristeći OGLAS TEMPFILE, ili pomoću "Dodaj Datafiles" u Oracle Enterprise Manager.
If you check and found that TEMP tablespace already has data files, check the default temporary tablespace for all users and your database and set the default temporary tablespace to a valid temporarary tablespace. Ako ste provjerili i utvrdili da se temp tablespace već ima podatkovne datoteke, provjeriti zadane privremenog tablespace za sve korisnike i vaše baze podataka i postavite zadanu privremenog tablespace da važeći temporarary tablespace.
To check the default temporary tablespace of the database: Za provjeru zadane privremenog tablespace u bazu podataka:
SQL> select property_name, property_value from database_properties; SQL> select property_name, property_value iz database_properties;
The SQL will return the following results, look for DEFAULT_TEMP_TABLESPACE for the setting: SQL će se vratiti sljedeće rezultate, pogledajte DEFAULT_TEMP_TABLESPACE za postavljanje:
| PROPERTY_NAME | PROPERTY_VALUE |
| —————————— ---------- | —————————— ---------- |
| DICT.BASE | 2 |
| DEFAULT_TEMP_TABLESPACE | TEMP Temp |
| DBTIMEZONE | +01:00 |
| NLS_NCHAR_CHARACTERSET | AL16UTF16 |
| GLOBAL_DB_NAME | ARON.GENERALI.CH |
| EXPORT_VIEWS_VERSION | 8 |
| NLS_LANGUAGE | AMERICAN American |
| NLS_TERRITORY | AMERICA |
| NLS_CURRENCY | $ |
| NLS_ISO_CURRENCY | AMERICA |
| NLS_NUMERIC_CHARACTERS | ., |
| NLS_CHARACTERSET | WE8ISO8859P1 |
| NLS_CALENDAR | GREGORIAN Gregorijanski |
| NLS_DATE_FORMAT | DD-MON-RR DD-PON-RR |
| NLS_DATE_LANGUAGE | AMERICAN American |
| NLS_SORT | BINARY Binarni |
| NLS_TIME_FORMAT | HH.MI.SSXFF AM HH.MI.SSXFF AM |
| NLS_TIMESTAMP_FORMAT | DD-MON-RR HH.MI.SSXFF AM Dd-PON-RR HH.MI.SSXFF am |
| NLS_TIME_TZ_FORMAT | HH.MI.SSXFF AM TZR HH.MI.SSXFF AM TZR |
| NLS_TIMESTAMP_TZ_FORMAT | DD-MON-RR HH.MI.SSXFF AM TZR Dd-PON-RR HH.MI.SSXFF AM TZR |
| NLS_DUAL_CURRENCY | $ |
| NLS_COMP | BINARY Binarni |
| NLS_LENGTH_SEMANTICS | BYTE Byte |
| NLS_NCHAR_CONV_EXCP | FALSE NETOČNO |
| NLS_RDBMS_VERSION | 9.2.0.6.0 |
If default temporary tablespace is wrong the alter it with the following command: Ako zadana tablespace privremeno nije u redu je to promijeniti s sljedeću naredbu:
SQL> alter database default temporary tablespace temp; SQL> alter zadana baza podataka privremeno tablespace temp;
To check default temporary tablespace for all users of the database: Za provjeru zadane privremenog tablespace za sve korisnike iz baze podataka:
SQL> select username, temporary_tablespace, account_status from dba_users; SQL> select username, temporary_tablespace, account_status iz dba_users;
will return the following result, check if all users TEMPORARY_TABLESPACE is set to correct settings: će se vratiti sljedeće rezultata, provjerite je li sve korisnike TEMPORARY_TABLESPACE je postavljen na ispravne postavke:
| USERNAME | TEMPORARY_TABLESPACE | ACCOUNT_STATUS |
| —————————— ---------- | —————————— ---------- | ——————————– ----------- |
| SYS Sys | TEMPRY | OPEN |
| SYSTEM SUSTAV | TEMP Temp | OPEN |
| OUTLN | TEMP Temp | OPEN |
| DBSNMP | TEMP Temp | OPEN |
| DBMONITOR | TEMP Temp | OPEN |
| TEST | TEMP Temp | OPEN |
| WMSYS | TEMP Temp | EXPIRED & LOCKED Istekao & ZAROBLJEN |
If wrong temporary tablespace is found, alter it with the correct tablespace name (for example, sys) with the following SQL: Ako krivo privremenog tablespace je naći, mijenjati se s točnim tablespace ime (na primjer, sys) sa slijedećim SQL:
SQL> alter user sys temporary tablespace temp; SQL> alter korisnik sys privremen tablespace temp;
Alternatively, recreate or add a datafile to your temporary tablespace and change the default temporary tablespace for your database; Alternativno, vraćanja ili dodavanje datafile na svoj privremeni tablespace i promjenu zadane privremenog tablespace za svoju bazu podataka;
SQL> drop tablespace temp including contents and datafiles; SQL> drop tablespace temp uključujući sadržaj i datafiles;
SQL> create temporary tablespace temp tempfile ‘/db/temp01.dbf’ size 100m autoextend off extent management local uniform size 1m; SQL> stvoriti privremen tablespace temp tempfile '/ db/temp01.dbf' size 100m autoextend off mjeri upravljanje lokalnim uniformi veličine 1m;
SQL> alter database default temporary tablespace temp; SQL> alter zadana baza podataka privremeno tablespace temp;
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. VAŽNO: Ovaj je stroj prevedeno stranica što je određeno "kako jest" bez jamstava. Machine translation may be difficult to understand. Strojno prevođenje svibanj biti teško za razumjeti. Please refer to Molimo pogledajte original English article original English članak whenever possible. kad god je to moguće.
Share and contribute or get technical support and help at Dionički i doprinose ili dobiti tehničku podršku i pomoć u My Digital Life Forums Moj digitalni život forumi .
Related Articles Povezani članci
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle Ora-01658 Nije moguće napraviti početno mjeri za segment u Tablespace Pogreška
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Kako ukloniti i ispustite Datafiles iz Tablespace u Oracle baza podataka
- How to Rename or Move Oracle Tablespace Datafile to Another Location Kako da biste preimenovali ili premjestili Oracle Tablespace Datafile na drugo mjesto
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Kako drop Tablespace oporaviti i Oracle baza podataka kada slučajno izbrisati Datafile
- IMP-00013 Oracle Import Error IMP-00013 Oracle Uvoz Greška
- Oracle PL/SQL ORA-00947 Not Enough Values Error Oracle PL / SQL Ora-00947 nije dovoljno vrijednosti pogreška
- Oracle EXP-00091 Error When Export Database Oracle EXP-error 00091 kada je izvoz baze podataka
- ORA-02449 Oracle Drop Table Error Ora-02449 Oracle drop stol o pogrešci
- Oracle Database Import Error 3113/3114 Oracle baza podataka Uvoz Greška pri 3113/3114
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle Ora-14074 stvoriti ili dodavanje novih particija ne pogreška


























January 28th, 2008 17:52 28. sječnja 2008 17:52
very good informative articale. vrlo dobar informativan articale.
thanks hvala
srinivas
May 7th, 2008 13:28 7. svibanj, 2008 13:28
Hi, Bok,
Thank you for such clear details. Hvala Vam za takve jasne detalje.
It helped me solve a problem in SAP BW system. To mi je pomogao riješiti problem bw u SAP sustav.
Regards Pozdravi
Sharath
September 19th, 2008 16:15 19. rujan 2008 16:15
very informative vrlo informativan
helps to find out pomaže da saznate
why wrong and what to do to overcome zašto u krivu i što da radimo na tome da prevladaju