Here is a better sample of the output:
cd0 10-68-00-3,0 16 Bit SCSI Multimedia CD-ROM Drive
(650 MB)
Manufacturer................IBM
Machine Type and Model......CDRM00203
ROS Level and ID............1_06...
The following will work for lscfg -v. It does not work if you add the platform specific data (the -p option), since that is output in a hierarchical format.
lscfg -v |
tail +7 | # Skip first six lines of output
egrep "^ [^ ][^ ]*|Serial Number" | # Get only lines with device and...
From the command line, you should be able to use control-v followed by a tab to generate a literal tab. This should not be necessary in Bourne shell or ksh, but is necessary if you are using bash, since tab is the command completion key. If you substitute this for your current [\t], it will...
The sysmaster table is generated by the database at runtime. It is used by Informix to keep track of system statistics as well as provide information about tables, columns, chunks, dbspaces, etc. You should not be able to cause any problems to the database by playing with the sysmaster...
There is no way from AIX to determine the free space in a raw logical volume. Since AIX does not manage the space other than how large the total available space is, it does not know what is used and what is not used. The amount of used/free space should be determined in oracle. You should be...
It seems as though the script is using the stty command to check or alter terminal characteristics. Since the script is running from cron, there is not a real or pseudo-terminal associated with it, only stdin, stdout, and stderr filehandles, which cannot be altered in the same ways as...
The following query will list the columns of a table named 'table':
SELECT sc.colname
FROM syscolumns sc, systables st
WHERE st.tabid=sc.tabid AND st.tabname='table'
ORDER BY sc.colno
There are more columns in the syscolumns table that define data type, column length, minimum value, and...
Piloria,
As root, run smitty tcpip and select the following menu options:
Further Configuration
Name Resolution
Domain Nameserver (/etc/resolv.conf)
Add a Nameserver
You can then type in the IP Address for the name server.
This should give you at least part of the information you are looking for. Use onstat -g sql to get a list of sessions, current query type that is executing, and the database the session is connected to. To show the sql that was last executed for a particular session, use onstat -g sql...
From what I understand, ext2/ext3 only has support for files larger than 2Gb on systems with 64-bit processors, due to the overhead in converting 32-bit to 64-bit necessary for larger files.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.