In Oracle there are two usefull function to format a timestamp to string and vceversa…. To format a date to string you can use TO_CHAR function like this:
1 |
SELECT TO_CHAR(sysdate, 'DD-MON-YYYY HH24:MI:SSxFF') from dual; |
For viceversa To format a string to date you can use TO_ function like this:
1 |
SELECT TO_DATE('2003/07/09', 'yyyy/mm/dd') from dual; |
The format mask list: Parameter Explanation YEAR Year, spelled out…
Leggi tutto
Per ottenere le informazioni di versione da una console Oracle o da plsql è sufficiente utilizzare il seguente predicato select * from v$version where banner like ‘Oracle%’;
http://android-developers.blogspot.it/2008/03/linkify-your-text.html
[Lang_It] per poter disegnare in SVG sono disponibili sul web dei pratici strumenti, ovviamente tra i più belli non poteva mancare anche quello di google dispnibile al seguente indirizzo http://svg-edit.googlecode.com/svn/branches/2.5.1/editor/svg-editor.html e quello di una nuova e stilossissima società che si chiama “Method of Action” al seguente link : http://editor.method.ac/ ….. Il secondo editor è orientato…
Leggi tutto
Why you should need to restart a VM ubuntu 12.04 server on your KVM remote server? Simple: just miss an apparently innocuous command (in my case I needed to add a user to a group). Then I typed the command:
1 |
sudo usermod -G mygroup myuser |
Unfortunately I forgot the “-a” option thus erasing all user groups including the group…
Leggi tutto
Con FastReport 4 esportare un report in PDF su stream è semplicissimo, bastano 5 minuti … peccato che non è spiegato nella documentazione, quindi per capire come funzionava l’arcano ci ho perso due ore… di seguito una porzione di codice come esempio: procedure TForm1.Button3Click(Sender: TObject); var st : TMemoryStream; begin st := TMemoryStream.Create; Try TBlobField(csReports.FieldByName(‘Report’)).SaveToStream(st);…
Leggi tutto