Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Tag: oracle 10g

Digital Innovation Partner

Oracle tip #9 [Oracle Create Table Space]

I Tablespace in Oracle sono definizioni di spazio fisico sul disco , la loro gestione è molto comoda dato che ad esempio per un database è possibile creare più tablespace anche su unità disco diverse. Il codice per creare un nuovo file e allocarlo su un server oracle è semplicissimo : CREATE TABLESPACE LOGGING DATAFILE…
Leggi tutto

Oracle Tips #1 [Common Functions]

I just starting on using Oracle 10g …. how to 1 : how retrive a guid from Oracle select sys_guid() from dual; how to 2 : how retrive next value from a Sequence select [your sequence name].nextval into from dual ; how to 3 : Oracle db Link , how to manage sql between multiple…
Leggi tutto

Oracle 10g and XML

PLSQL is a world …. and Oracle an incredible RDBMS, so if you want to produce XML from query or manage XML inside your PLSQL Trigger or Procedure you can in different ways …. One of the most simple way is using the Oracle function to do that, like : SELECT sys_xmlgen(pk_id) from sellers; SELECT…
Leggi tutto