ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25.153 Pagaidu Tablespace ir tukšs Kļūda Oracle

When executing SQL query, the following Oracle error may appears: Izpildot SQL vaicājumu, pēc Oracle kļūda parādās:

ORA-25153: Temporary Tablespace is Empty ORA-25.153: Pagaidu Tablespace ir tukšs

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). Iemeslu ORA-25.153 kļūda, jo mēģināja izmantot telpas pagaidu tablespace bez failus (ne datafiles noteikts).

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. Lai atrisinātu problēmu, risinājums ir tikai pievienojot failus (datafiles), lai TEMP tablespace izmantojot ADD TEMPFILE komandu, vai izmantojot "Pievienot Datafiles" in 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. Ja jūs pārbaudīt un konstatēja, ka TEMP tablespace jau ir datu faili, pārbaudiet default pagaidu tablespace visiem lietotājiem un datu bāzes un iestatiet noklusējuma pagaidu tablespace ar derīgu temporarary tablespace.

To check the default temporary tablespace of the database: Lai pārbaudītu default pagaidu tablespace of datu bāzē:

SQL> select property_name, property_value from database_properties; SQL> Izvēlieties property_name, property_value no database_properties;

The SQL will return the following results, look for DEFAULT_TEMP_TABLESPACE for the setting: SQL atgriezīsies šādiem rezultātiem, meklējiet DEFAULT_TEMP_TABLESPACE par iestatījums:

PROPERTY_NAME PROPERTY_NAME PROPERTY_VALUE PROPERTY_VALUE
—————————— ---------- —————————— ----------
DICT.BASE DICT.BASE 2 2
DEFAULT_TEMP_TABLESPACE DEFAULT_TEMP_TABLESPACE TEMP TEMP
DBTIMEZONE DBTIMEZONE +01:00 +01:00
NLS_NCHAR_CHARACTERSET NLS_NCHAR_CHARACTERSET AL16UTF16 AL16UTF16
GLOBAL_DB_NAME GLOBAL_DB_NAME ARON.GENERALI.CH ARON.GENERALI.CH
EXPORT_VIEWS_VERSION EXPORT_VIEWS_VERSION 8 8
NLS_LANGUAGE NLS_LANGUAGE AMERICAN AMERICAN
NLS_TERRITORY NLS_TERRITORY AMERICA AMERICA
NLS_CURRENCY NLS_CURRENCY $ $
NLS_ISO_CURRENCY NLS_ISO_CURRENCY AMERICA AMERICA
NLS_NUMERIC_CHARACTERS NLS_NUMERIC_CHARACTERS ., .,
NLS_CHARACTERSET NLS_CHARACTERSET WE8ISO8859P1 WE8ISO8859P1
NLS_CALENDAR NLS_CALENDAR GREGORIAN Gregora
NLS_DATE_FORMAT NLS_DATE_FORMAT DD-MON-RR DD-MON-RR
NLS_DATE_LANGUAGE NLS_DATE_LANGUAGE AMERICAN AMERICAN
NLS_SORT NLS_SORT BINARY BINARY
NLS_TIME_FORMAT NLS_TIME_FORMAT HH.MI.SSXFF AM HH.MI.SSXFF AM
NLS_TIMESTAMP_FORMAT NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM DD-MON-RR HH.MI.SSXFF AM
NLS_TIME_TZ_FORMAT NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR HH.MI.SSXFF AM TZR
NLS_TIMESTAMP_TZ_FORMAT NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR DD-MON-RR HH.MI.SSXFF AM TZR
NLS_DUAL_CURRENCY NLS_DUAL_CURRENCY $ $
NLS_COMP NLS_COMP BINARY BINARY
NLS_LENGTH_SEMANTICS NLS_LENGTH_SEMANTICS BYTE BYTE
NLS_NCHAR_CONV_EXCP NLS_NCHAR_CONV_EXCP FALSE FALSE
NLS_RDBMS_VERSION NLS_RDBMS_VERSION 9.2.0.6.0 9.2.0.6.0

If default temporary tablespace is wrong the alter it with the following command: Ja default pagaidu tablespace ir nepareizi to mainīt ar komandu:

SQL> alter database default temporary tablespace temp; SQL> izmainīt datubāzi default pagaidu tablespace temperatūra;

To check default temporary tablespace for all users of the database: Lai pārbaudītu default pagaidu tablespace visiem datu bāzes lietotājiem:

SQL> select username, temporary_tablespace, account_status from dba_users; SQL> Izvēlieties lietotājvārdu, temporary_tablespace, account_status no dba_users;

will return the following result, check if all users TEMPORARY_TABLESPACE is set to correct settings: atgriezīsies sekojošu rezultātu, pārbaudiet, vai visiem lietotājiem TEMPORARY_TABLESPACE ir iestatīts pareizi iestatījumi:

USERNAME LIETOTĀJVĀRDS TEMPORARY_TABLESPACE TEMPORARY_TABLESPACE ACCOUNT_STATUS ACCOUNT_STATUS
—————————— ---------- —————————— ---------- ——————————– -----------
SYS SYS TEMPRY TEMPRY OPEN OPEN
SYSTEM SYSTEM TEMP TEMP OPEN OPEN
OUTLN OUTLN TEMP TEMP OPEN OPEN
DBSNMP DBSNMP TEMP TEMP OPEN OPEN
DBMONITOR DBMONITOR TEMP TEMP OPEN OPEN
TEST TEST TEMP TEMP OPEN OPEN
WMSYS WMSYS TEMP TEMP EXPIRED & LOCKED Expired & bloķēt

If wrong temporary tablespace is found, alter it with the correct tablespace name (for example, sys) with the following SQL: Ja nepareizs pagaidu tablespace ir atrasta, mainīt to ar pareizo tablespace nosaukumu (piemēram, sys) ar šādu SQL:

SQL> alter user sys temporary tablespace temp; SQL> ALTER USER sys pagaidu tablespace temperatūra;

Alternatively, recreate or add a datafile to your temporary tablespace and change the default temporary tablespace for your database; Alternatīvi, atjaunotu vai pievienot datni savā pagaidu tablespace un mainīt noklusēto pagaidu tablespace jūsu datu bāzē;

SQL> drop tablespace temp including contents and datafiles; SQL> piliens tablespace temp ieskaitot saturu un datafiles;

SQL> create temporary tablespace temp tempfile '/db/temp01.dbf' size 100m autoextend off extent management local uniform size 1m; SQL> izveidot pagaidu tablespace temp tempfile "/ db/temp01.dbf 'size 100m autoextend off mērā vadība vietējos vienādu izmēru 1m;

SQL> alter database default temporary tablespace temp; SQL> izmainīt datubāzi default pagaidu tablespace temperatūra;

IMPORTANT : The page is machine translated and provided "as is" without warranty. SVARĪGI: lapa mašīna iztulkot un pasniegts tàds, "kàds tas ir" bez garantijas. Machine translation may be difficult to understand. Mašīntulkošanas var būt grūti saprast. Please refer to Lūdzu, skatiet original English article oriģināls angļu rakstu whenever possible. kad vien iespējams.


3 Responses to “ORA-25153 Temporary Tablespace is Empty Error in Oracle” 3 atbildes uz "ORA-25.153 Pagaidu Tablespace ir tukšs Kļūda Oracle"

  1. atanu atanu
    September 19th, 2008 16:15 19 septembris 2008 16:15
    3 3

    very informative ļoti informatīvs
    helps to find out palīdz noskaidrot
    why wrong and what to do to overcome kāpēc nepareizi un ko darīt, lai pārvarētu

  2. Sharath Sharath
    May 7th, 2008 13:28 7 maijs 2008 13:28
    2 2

    Hi, Čau,

    Thank you for such clear details. Paldies par šādu skaidru informāciju.
    It helped me solve a problem in SAP BW system. Tas palīdzēja man atrisināt problēmu, SAP BW sistēmā.

    Regards Sveicieni
    Sharath Sharath

  3. srinivas Srinivas
    January 28th, 2008 17:52 Janvāris 28, 2008 17:52
    1 1

    very good informative articale. Ļoti labs informatīvs articale.
    thanks pateicība
    srinivas Srinivas

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Jūs varat izmantot šos tagus: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Parakstīties uz komentāriem iezīme ir atspējota. To receive notification of latest comments posted, subscribe to Saņemt informāciju par jaunāko komentārus, parakstīties uz My Digital Life Comments RSS feed Mana Digital Life Comments RSS feed or vai register to receive reģistrēties, lai saņemtu new comments in daily email digest. jauni komentāri ikdienas e-pasta sagremot.
Custom Search

New Articles Jauns pants

Incoming Search Terms for the Article Ienākošo Meklēt noteikumi pants

ora-25153 ora-25.153 - -- ORA-25153: Temporary Tablespace is Empty ORA-25.153: Pagaidu Tablespace ir tukšs - -- ora-25153 temporary tablespace is empty ORA-25.153 pagaidu tablespace ir tukšs - -- temporary tablespace is empty pagaidu tablespace ir tukšs - -- ora 25153 ora 25.153 - -- ORA-25153: Temporary Tablespace is Empty ORA-25.153: Pagaidu Tablespace ir tukšs - -- ora 25153 temporary tablespace is empty ora 25.153 pagaidu tablespace ir tukšs - -- ora-25153 temporary tablespace is empty oracle ORA-25.153 pagaidu tablespace ir tukšs Oracle - -- ORA25153 ORA25153 - -- "ORA-25153: Temporary Tablespace is Empty" "ORA-25.153: Pagaidu Tablespace ir tukšas" - -- error ora-25153 temporary tablespace is empty kļūda ORA-25.153 pagaidu tablespace ir tukšs - -- ORA-25153 ORA-25.153 - -- ora-25153 solution ORA-25.153 šķīdums - -- oracle 25153 Oracle 25.153 - -- ORA-25153: ORA-25.153: - -- tablespace empty tablespace tukšs - -- java.sql.SQLException: ORA-25153: Temporary Tablespace is Empty java.sql.SQLException: ORA-25.153: Pagaidu Tablespace ir tukšs - -- how to check temporary tablespace kā pārbaudīt pagaidu tablespace - -- how to check temp tablespace usage kā pārbaudīt temp tablespace pielietojumam - -- oracle ora-25153 Oracle ora-25.153 - -- ORA- 25153 ORA-25.153 - -- 25153 25153 - -- check default temporary tablespace pārbaudīt default pagaidu tablespace - -- Database error 25153 Database error 25.153 - -- ORA-25153- Temporary Tablespace is Empty ORA-25.153-Pagaidu Tablespace ir tukšs - -- tempory table space is empty oracle tempory tabula telpa ir tukša Oracle - -- ORA-25153: Temporary Tablespace is Empty, ORA-25.153: Pagaidu Tablespace ir tukša, - -- oracle ORA-25153: Temporary Tablespace is Empty Oracle ORA-25.153: Pagaidu Tablespace ir tukšs - -- oracle temporary tablespace is empty pareģojums pagaidu tablespace ir tukšs - -- ORA-25153 ORA-25.153 - -- oracle "Temporary Tablespace is Empty" Oracle "Pagaidu Tablespace ir tukšas" - -- problem dropt temporary tablespace problēma dropt pagaidu tablespace - -- Error - ORA-25153: Temporary Tablespace is Empty Kļūda - ORA-25.153: Pagaidu Tablespace ir tukšs - -- ORA-25153: Temporary Tablespace is Empty ORA-25.153: Pagaidu Tablespace ir tukšs - -- all viss - -- clear + temporary + oracle + 9i skaidrs + laiku + Oracle + 9.i - -- how to check oracle temp tablespace kā pārbaudīt Oracle temp tablespace - -- ora-25153 temporary tablespace ORA-25.153 pagaidu tablespace - -- temporary tablespace empty emca pagaidu tablespace tukšs emca - -- (Bridge ODBC-JDBC)(ORA-25153: Temporary Tablespace is Empty ) (Bridge ODBC, JDBC) (ORA-25.153: Pagaidu Tablespace ir tukša) - -- 0ra-25153: temporary tablespace empty 0ra-25.153: pagaidu tablespace tukšs - -- 25153 oracle 25.153 Oracle - -- check the default temporary tablespace for the database pārbaudīt noklusējuma pagaidu tablespace par datu bāzi - -- drop temporary tablespace oracle 9i piliens pagaidu tablespace Oracle 9i - -- HOW CLEAR DATA FROM TEMP TABLESPACE KĀ Dzēst datus no TEMP TABLESPACE - -- ora 25153 upgrade ora 25.153 jauninājums - -- ORA-25153: Temporar ORA-25.153: temporar - -- oracle drop temporary tablespace Oracle piliens pagaidu tablespace - -- oracle add temp file Oracle pievienot temp failu - -- oracle temporary tablespace empty pareģojums pagaidu tablespace tukšs - --