Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:oracle [2024/02/26 09:25] – [Oracle PDB] darrontools:oracle [2024/07/28 19:32] (current) – [PHP] darron
Line 701: Line 701:
 ===Miscellaneous=== ===Miscellaneous===
  
-==Tablespaces==+==Path==
  
-Not specifying a file path will create a tablespace file in this directory for 23c.+Not specifying a file path will create a tablespace file and archive logs in this directory for 23c.
  
 <code> <code>
Line 709: Line 709:
 </code> </code>
  
-To remove the tablespace file various options are required when dropping a tablespace.+==Tablespace== 
 + 
 +__Drop__ 
 + 
 +To remove tablespace file various options are required when dropping it.
  
 <code> <code>
Line 750: Line 754:
 You should add "extension=oci8.so" to php.ini You should add "extension=oci8.so" to php.ini
 </code> </code>
 +==Config==
  
 +Add extension=oci8.so to "/etc/php/8.2/cli/php.ini" and "/etc/php/8.2/apache2/php.ini"
 +
 +Add instant client to library path
 +
 +<code>
 +echo "/opt/instantclient_21_13" >> /etc/ld.so.conf
 +ldconfig
 +</code>
 ==TEST== ==TEST==
  
Line 838: Line 851:
 </code> </code>
  
-==Config== 
  
-Add extension=oci8.so to "/etc/php/8.2/cli/php.ini" and "/etc/php/8.2/apache2/php.ini" 
- 
-Add instant client to library path 
- 
-<code> 
-echo "/opt/instantclient_21_13" >> /etc/ld.so.conf 
-ldconfig 
-</code> 
 ===Resources=== ===Resources===