Get tablespace temporary file
get
                    /database/storage/tablespaces/{tablespace_name}/tempfiles/{file_id}/
Returns data from DBA_TEMP_FILES for a specific tablespace and file. A client requires SQL Administrator role to invoke this service.
                
                Request
Path Parameters
                - 
                    file_id(required):  string
                    
                    File identifier.
 - 
                    tablespace_name(required):  string
                    
                    Name of the tablespace.
 
There's no request body for this operation.
Back to TopResponse
Supported Media Types
                - application/json
 
200 Response
Information about the specified temporary file.
                            
                            
                                Root Schema : DatabaseTablespaceTempfilesItem
    
    	Type: 
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectDescribes a temporary file in the database.
    
    
    
    
        Show Source
        - 
                
                    
                    autoextensible: string
                    
                    
                     
                    
                
                
                Indicates whether the file is autoextensible (YES) or not (NO).
 - 
                
                    
                    blocks: integer
                    
                    
                     
                    
                
                
                Size of the file (in Oracle blocks).
 - 
                
                    
                    bytes: integer
                    
                    
                     
                    
                
                
                Size of the file (in bytes).
 - 
                
                    
                    file_id: integer
                    
                    
                     
                    
                
                
                File identifier number of the database temp file.
 - 
                
                    
                    file_name: string
                    
                    
                     
                    
                
                
                Name of the database file.
 - 
                
                    
                    increment_by: integer
                    
                    
                     
                    
                
                
                Default increment for autoextension (in Oracle blocks).
 - 
                
                    
                    inst_id: integer
                    
                    
                     
                    
                
                
                Instance ID of the instance to which the temp file belongs. This column has a NULL value for temp files that belong to shared tablespaces.
 - 
                
                    
                    links: array
                    
                    
                
                
                    links
                
                
                
 - 
                
                    
                    maxblocks: integer
                    
                    
                     
                    
                
                
                Maximum size of the file (in Oracle blocks).
 - 
                
                    
                    maxbytes: integer
                    
                    
                     
                    
                
                
                Maximum size of the file (in bytes).
 - 
                
                    
                    relative_fno: integer
                    
                    
                     
                    
                
                
                Tablespace-relative file number.
 - shared: string
 - 
                
                    
                    status: string
                    
                    
                     
                    
                
                
                File status.
 - 
                
                    
                    tablespace_name: string
                    
                    
                     
                    
                
                
                Name of the tablespace.
 - 
                
                    
                    user_blocks: integer
                    
                    
                     
                    
                
                
                Size of the useful portion of the file (in Oracle blocks).
 - 
                
                    
                    user_bytes: integer
                    
                    
                     
                    
                
                
                The size of the file available for user data. The actual size of the file minus the USER_BYTES value is used to store file related metadata.