Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

ORA-25139: invalid option for CREATE TEMPORARY TABLESPACE

I am following the procedure from interactive upgrade guide from CLM 4.0.4 to 5.0.                                                         
While creating temporary table space in Oracle DB 11G Release 11.2.0.3.0 for RM with provided command in                                    

https://jazz.net/help-dev/clm/index.jsp?re=1&topic=/com.ibm.jazz.install.doc/topics/c_upgrade_overview.html&scope=null                  

sqlplus throws an syntax error.  

"ERROR at line 1: ORA-25139: invalid option for CREATE TEMPORARY TABLESPACE"                    

-->                                        

Command that is suggested by interactive upgrade guide:                       

 CREATE TEMPORARY TABLESPACE RM_TEMP                                           
 DATAFILE 'ORACLE_BASE/oradata/CLMDB/RM_TEMP.DBF'                              
 SIZE 1G AUTOEXTEND ON EXTENT MANAGEMENT LOCAL AUTOALLOCATE;                   

This doesn't seem to be right. Is this the correct command?                                                      

0 votes



2 answers

Permanent link
--> Here is what I have currently for the JTS Tablespace in Oracle (on Windows):                                                                          
                                                                                          
*****                                                                                     
                                                                                          
CREATE TABLESPACE jts                                                                     
DATAFILE 'C:\OPT\Oracle\oradata\orcl\jts.dbf'                                             
SIZE 1G AUTOEXTEND ON EXTENT MANAGEMENT LOCAL AUTOALLOCATE;                                                                                         
                                                                                          
CREATE TEMPORARY TABLESPACE jts_t                                                         
TEMPFILE 'C:\OPT\Oracle\oradata\orcl\jts_t.dbf file'                                      
SIZE 20M AUTOEXTEND ON EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M                            
                                                                                          
*****                                                                                     
                                                                                          
--> So one can use for RM tablespace in Oracle (Linux), the below entry:
                                                                                          
***                                                                                       
                                                                                          
CREATE TEMPORARY TABLESPACE RM_TEMP                                                       
TEMPFILE 'ORACLE_BASE/oradata/CLMDB/RM_TEMP.DBF                                           
SIZE 1G AUTOEXTEND ON EXTENT MANAGEMENT LOCAL AUTOALLOCATE;                                            
                                                                                          
***                                                                                       
                                                                                          
This above command works, doesn't throw error and looks we have a wrong documentation here for this step. 

0 votes


Permanent link
Hi Sumant,
Try following command:

CREATE TEMPORARY TABLESPACE RM_TEMP                                                       
TEMPFILE 'C:\OPT\Oracle\oradata\CLMDB\RM_TEMP.DBF                                           
SIZE 1G AUTOEXTEND ON EXTENT MANAGEMENT LOCAL AUTOALLOCATE;

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 7,499
× 6,126
× 1,381

Question asked: Jun 24 '14, 5:54 a.m.

Question was seen: 9,942 times

Last updated: Sep 10 '14, 7:37 p.m.

Confirmation Cancel Confirm