How to get record number of dataset using row_number window function with over(). SELECT row_number() over(), t.* FROM test t Example of record number of dataset with even and odd column sorting. SELECT row_number() over(), (CASE WHEN mod(row_number() over(),2) = 0 THEN ‘even’ ELSE ‘odd’ END) AS my_column, custom.* FROM ( SELECT t.* FROM test…
Leggi tutto
With bash you can more and more… In linux you can use the “find” command from terminal and execute a command for each result simply. To change all subfolder permission from a folder recursively you can type: find /home/xtr/Desktop/myFolder -type d -print0 |xargs -0 chmod 755 now all falders have the execution permission. To change…
Leggi tutto
Per poter eseguire automaticamente un’applicazione alla partenza della sessione gnome esiste un software presente nella distribuzione di Ubuntu. Può essere richiamato a riga di comando: $ gnome-session-properties oppure da interfaccia cercando tra le applicazione e filtrando per “start” e poi è possibile creare un elemento nuovo per lo startup…
Leggi tutto
To be able to automatically run an application at the start of the gnome session there is a software present in the Ubuntu distribution. It can be invoked on the command line: $ gnome-session-properties or from the interface by searching among the applications and filtering by “start” and then…
Leggi tutto
E’ facile comprendere che la gestione dello stato di attività delle applicazioni per dispositivi mobili (iOS / Android ) sia molto più prioritaria rispetto a una qualsiasi applicazione desktop o server che sia. I motivi di questa sottile ma sostanziale differenza derivano da due fattori non trascurabili : 1° la privacy dell’utente 2° la gestione…
Leggi tutto
Da oggi la piattaforma Xtumble si arricchisce di due nuove applicazioni per essere sempre piu’ smart e offrire un esperienza di utilizzo facile e senza vincoli: Magazzino e Comande. Nello specifico la app Magazzino (disponibile al momento solo per Android su play store qui ), che ti permette di classificare e ricercare i tuoi articoli…
Leggi tutto