Pular para conteúdo

Home

Montar HD externo no orange pi

Localizar e montar HD externo

Localizar e montar HD externo
# Try to see if there is an entry in the disk list with

sudo fdisk -l  

# Then try mounting it with

sudo mount -t ntfs /dev/sdb1 /media

# ao executar .sh e apresentar erro pq arquivo veio do linux

sed -i -e 's/\r$//' scriptname.sh

Buscar colunas no DB2

Buscar nomes das colunas no DB2
--for DB2/z
    select * from sysibm.systables
    where owner = 'SCHEMA'
    and name like '%CUR%'
    and type = 'T';

--for DB2/LUW
    select * from sysibm.systables
    where CREATOR = 'SCHEMA'
    and name like '%CUR%'
    and type = 'T';