Tags: check

How to check Solaris kernel is 32bit or 64 bit

Solaris Send feedback »
How to Check Solaris Kernel bit (32 bit/64 bit) To check if Solaris kernel is running in 32 bit mode or 64 bit from command line run the following:# /usr/bin/isainfo –kv64-bit sparcv9 kernel modulesThe output "64 bit sparcv9" indicates that Solaris k… more »

HP-UX: How to check hpux block size

HP-UX Send feedback »
The "df -g" command shows it, but apparently not if you are using Veritas file-system; Veritas says they do not support "df -g" So, instead, for VxFS on HPUX, use "/usr/sbin/fstyp -v <special>", where "<special>" is the block-special devi… more »

How to check and install missing perl modules

Technology Send feedback »
Check if module is installed. Errors mean missing module.# perl -MModule::Name -e 1 See documentation of the module if installed. # perldoc Module::NameOpen CPAN shell: # perl -MCPAN -e shellTo reconfigure the shell if needed. cpan&gt… more »

Oracle: Usefull Commands

Technology, Oracle Send feedback »
1.EXPORT: exp system@test owner=test123 file=d:\oracle\user.dmp log=d:\oracle\userdump.log rows=y statistics=none feedback=100 indexes=y consistent=y compress=n; (for individual tables=table1,table2,.....) 2.IMPORT: imp system@test fromu… more »

Oracle: HOW TO SELECT USERNAME AND CHECK THERE STATUS

Technology, Oracle Send feedback »
select username,created,account_status from dba_users where username like '-----%' order by created more »