ORA-25153 Temporary Tablespace is Empty Error in OracleメールORA - 25153テンポラリテーブルスペースが空にエラーが発生オラクル

When executing SQL query, the following Oracle error may appears: SQLクエリを実行するときは、次のOracleのエラーが表示されます:

ORA-25153: Temporary Tablespace is EmptyメールORA - 25153 :テンポラリテーブルスペースが空に

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).その原因は、メールORA - 25153エラーはスペースを使用するための試みが行われたテーブルスペースをテンポラリファイルがない(未定義データファイル) 。

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.この問題を解決するために、追加するだけで、解決策はファイル(データファイル)を追加tempfileコマンドを使用してテーブルスペースの気温か、またはを使用して"追加データファイル"とOracleのエンタープライズマネージャを起動します。

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.気温を確認することを発見した場合にはすでにテーブルスペースデータファイルは、デフォルトのテンポラリテーブルスペースを確認してすべてのユーザーのためのデフォルトの設定と、データベースとテーブルスペースをテンポラリテーブルスペースの有効なtemporararyです。

To check the default temporary tablespace of the database:デフォルトのテンポラリテーブルを確認するには、データベース:

SQL> select property_name, property_value from database_properties;のSQL > " property_name 、 property_valueからdatabase_properties ;

The SQL will return the following results, look for DEFAULT_TEMP_TABLESPACE for the setting:次のような結果は、 SQLに返送するか、 default_temp_tablespaceを探すの設定:

PROPERTY_NAME property_name PROPERTY_VALUE property_value
—————————— ---------- —————————— ----------
DICT.BASE dict.base 2
DEFAULT_TEMP_TABLESPACE default_temp_tablespace TEMP気温
DBTIMEZONE dbtimezone +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
NLS_LANGUAGE nls_language AMERICANアメリカン
NLS_TERRITORY nls_territory AMERICAアメリカ
NLS_CURRENCY nls_currency $
NLS_ISO_CURRENCY nls_iso_currency AMERICAアメリカ
NLS_NUMERIC_CHARACTERS nls_numeric_characters .,です。 、
NLS_CHARACTERSET nls_characterset WE8ISO8859P1 we8iso8859p1
NLS_CALENDAR nls_calendar GREGORIANグレゴリオ
NLS_DATE_FORMAT nls_date_format DD-MON-RR DDの-月- RRで
NLS_DATE_LANGUAGE nls_date_language AMERICANアメリカン
NLS_SORT nls_sort BINARYバイナリ
NLS_TIME_FORMAT nls_time_format HH.MI.SSXFF AM hh.mi.ssxffアム
NLS_TIMESTAMP_FORMAT nls_timestamp_format DD-MON-RR HH.MI.SSXFF AM DDの-月- RRをhh.mi.ssxffアム
NLS_TIME_TZ_FORMAT nls_time_tz_format HH.MI.SSXFF AM TZR hh.mi.ssxffアムtzr
NLS_TIMESTAMP_TZ_FORMAT nls_timestamp_tz_format DD-MON-RR HH.MI.SSXFF AM TZR DDの-月- RRをhh.mi.ssxffアムtzr
NLS_DUAL_CURRENCY nls_dual_currency $
NLS_COMP nls_comp BINARYバイナリ
NLS_LENGTH_SEMANTICS nls_length_semantics BYTEバイト
NLS_NCHAR_CONV_EXCP nls_nchar_conv_excp FALSE
NLS_RDBMS_VERSION nls_rdbms_version 9.2.0.6.0

If default temporary tablespace is wrong the alter it with the following command:デフォルトのテンポラリテーブルスペースが間違っている場合には、 ALTERしては、以下のコマンド:

SQL> alter database default temporary tablespace temp;のSQL > 変更データベースのデフォルトのテンポラリテーブルスペースの気温;

To check default temporary tablespace for all users of the database:デフォルトのテンポラリテーブルをチェックするすべてのユーザーのためのデータベース:

SQL> select username, temporary_tablespace, account_status from dba_users;のSQL > "ユーザー名、 temporary_tablespace 、 account_statusからdba_users ;

will return the following result, check if all users TEMPORARY_TABLESPACE is set to correct settings:は、次の結果が返さ、 temporary_tablespaceに設定するかどうかを確認を修正するすべてのユーザーの設定:

USERNAMEユーザー名 TEMPORARY_TABLESPACE temporary_tablespace ACCOUNT_STATUS account_status
—————————— ---------- —————————— ---------- ——————————– -----------
SYSシステム TEMPRY tempry OPEN開く
SYSTEMシステム TEMP気温 OPEN開く
OUTLN outln TEMP気温 OPEN開く
DBSNMP dbsnmp TEMP気温 OPEN開く
DBMONITOR dbmonitor TEMP気温 OPEN開く
TEST試験 TEMP気温 OPEN開く
WMSYS wmsys TEMP気温 EXPIRED & LOCKED期限が切れて&ロック

If wrong temporary tablespace is found, alter it with the correct tablespace name (for example, sys) with the following SQL:もし間違ってテンポラリテーブルスペースが見つかった場合は、変更して、正しいテーブル名(たとえば、システム)は、次のSQLとの違い:

SQL> alter user sys temporary tablespace temp;のSQL > ユーザーのシステムを変更テンポラリテーブルスペースの気温;

Alternatively, recreate or add a datafile to your temporary tablespace and change the default temporary tablespace for your database;また、お客様のDATAFILEを再現またはテンポラリテーブルスペースを追加すると、デフォルトのテンポラリテーブルを変更してデータベース;

SQL> drop tablespace temp including contents and datafiles;のSQL > ドロップの内容とデータファイルを含むテーブルスペースの気温;

SQL> create temporary tablespace temp tempfile ‘/db/temp01.dbf’ size 100m autoextend off extent management local uniform size 1m;のSQL > テンポラリテーブルスペースの作成気温tempfile ' / db/temp01.dbf 'サイズの100メートルの範囲managementローカルユニフォームサイズautoextendオフ1分;

SQL> alter database default temporary tablespace temp;のSQL > 変更データベースのデフォルトのテンポラリテーブルスペースの気温;

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。

Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。



2 Responses to “ORA-25153 Temporary Tablespace is Empty Error in Oracle” 2つの応答を"のOra - 25153テンポラリテーブルスペースが空にエラーが発生Oracleの"

  1. srinivas
    January 28th, 2008 17:52 2008年1月28日17:52
    1

    very good informative articale.非常に良いarticale有益です。
    thanksありがとう
    srinivas

  2. Sharath sharath
    May 7th, 2008 13:28 2008年5月7日13:28
    2

    Hi,やあ、

    Thank you for such clear details.このような明確な詳細いただきありがとうございます。
    It helped me solve a problem in SAP BW system.助けてくれたの問題を解決することSAP BWシステムです。

    Regardsよろしく
    Sharath sharath

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> これらのタグを使用することができます: <aのhref=のtitle= <abbrのtitle= <blockquote cite=""> <cite> <acronymのtitle= <b>ダウンロードの<code> <デル日時= " " >の<em> <i>て<strike> <strong> <q cite="">

Subscribe without commenting登録なしのコメント


Custom Search

New Articles新しい記事

Incoming Search Terms for the Article検索用語を受信するには

ORA-25153 のOra - 25153 - - ORA-25153: Temporary Tablespace is Empty メールORA - 25153 :テンポラリテーブルスペースが空に - - ora 25153 メールORA 25153 - - Temporary Tablespace is Empty テンポラリテーブルスペースが空に - - ORA-25153: Temporary Tablespace is Empty メールORA - 25153 :テンポラリテーブルスペースが空に - - ORA-25153: メールORA - 25153 : - - ORA-25153 Temporary Tablespace is Empty メールORA - 25153テンポラリテーブルスペースが空に - - java.sql.SQLException: ORA-25153: Temporary Tablespace is Empty java.sql.sqlexception : 502個- 25153 :テンポラリテーブルスペースが空に - - ORA-25153 のOra - 25153 - - oracle temporary tablespace is empty Oracleのテンポラリテーブルスペースが空に - - oracle ora-25153 オラクルのOra - 25153 - - "ORA-25153: Temporary Tablespace is Empty" "メールORA - 25153 :テンポラリテーブルスペースが空に" - - oracle problem dropping temporary tablespace Oracleの問題は一時的なテーブルスペースのドロップ - - "temporary tablespace is empty" "テンポラリテーブルスペースが空に" - - temporary tablespace empty テンポラリテーブルスペースの空 - - ORA-25153: tablespace temporaire vide メールORA - 25153 :表temporaireビデ - - SQL error 3114 SQLエラー3114 - - "ora-25153" "のOra - 25153 " - - check temporary tablespace 空テンポラリテーブルスペース - - check default temporary tablespace デフォルトのテンポラリテーブルスペースの空 - - ora-25153 temporary tablespace テンポラリテーブルスペースのOra - 25153 - - ORA-25153 のOra - 25153 - - ORA - 25153 メールORA -2 5153 - - oracle error 25153 Oracleのエラーが発生25153 - - Tempory Tablespace is empty テーブルスペースが空にtempory - - how to check temp tablespace テーブルスペースの温度を確認する方法 - - how to check default temp tablespace テーブルスペースのデフォルトの気温を確認する方法 - - oracle ORA-25153: Temporary Tablespace is Empty オラクルのOra - 25153 :テンポラリテーブルスペースが空に - - Temporary Tablespace is Empty テンポラリテーブルスペースが空に - - ORA-25153: メールORA - 25153 : - - ORA-25153: Temporary Tablespace is Empty メールORA - 25153 :テンポラリテーブルスペースが空に - - ora-25153:Temporary Tablespace is Empty メールORA - 25153 :テンポラリテーブルスペースが空に - - oracle 25153 オラクル25153 - - SQL Error 25153 SQLエラー25153 - - ora 25153 temporary tablespace is empty メールORA 25153テンポラリテーブルスペースが空に - - check default tablespace 空のデフォルトのテーブルスペース - - ORA-25153: Temporary Tablespace is Empty. メールORA - 25153 :テンポラリテーブルスペースは空になります。 - - temporary table space is empty テンポラリテーブルスペースが空に - - temporary table space empty 空のテンポラリテーブルスペース - - ORA-25153: Temporary Tablespace is Empty メールORA - 25153 :テンポラリテーブルスペースが空に - - ORA 25153 メールORA 25153 - - tablespace is empty テーブルスペースが空に - - ORA-25153: El tablespace temporal está vacío メールORA - 25153 :エルテーブルスペースの時間estáバシオ - - ora:25153 メールORA : 25153 - - Oracle "Temporary tablespace is empty" Oracleの"テンポラリテーブルスペースが空に" - - 25153 25153 - - TABLESPACE.JAVA tablespace.java - - ORA-25153: Temporary Tablespace メールORA - 25153 :テンポラリテーブルスペース - - oracle ora 25153 OracleのメールORA 25153 - - temporary tablespace empty テンポラリテーブルスペースの空 - -