0390f0da07
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@557 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
=head1 NAME
|
|
|
|
B<tabdump> - display a database table in CSV format.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
I<tabdump [-d] [table]>
|
|
|
|
I<tabdump [? | -h | --help]>
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
The tabdump command displays the header and all the rows of the specified table in CSV (comma separated values) format.
|
|
Only one table can be specified. If no table is specified, the list of existing
|
|
tables will be displayed.
|
|
|
|
=head1 OPTIONS
|
|
|
|
B<-?|-h|--help> Display usage message.
|
|
|
|
B<-d> Show descriptions of the tables, instead of the contents of the tables. If a table name is also specified, descriptions of the columns (attributes) of the table will be displayed. Otherwise, a summary of each table will be displayed.
|
|
|
|
=head1 RETURN VALUE
|
|
|
|
0 The command completed successfully.
|
|
|
|
1 An error has occurred.
|
|
|
|
=head1 EXAMPLES
|
|
|
|
1. To display the contents of the site table:
|
|
|
|
tabdump site
|
|
|
|
2. To see what tables exist in the xCAT database:
|
|
|
|
tabdump
|
|
|
|
3. To back up all the xCAT database tables:
|
|
|
|
mkdir -p /tmp/xcatdb.backup
|
|
for i in `tabdump`;do echo "Dumping $i..."; tabdump $i > /tmp/xcatdb.backup/$i.csv; done
|
|
|
|
4. To display a summary description of each table:
|
|
|
|
tabdump -d
|
|
|
|
5. To display a description of each column in the nodehm table:
|
|
|
|
tabdump -d nodehm
|
|
|
|
=head1 FILES
|
|
|
|
/opt/xcat/sbin/tabdump
|
|
|
|
=head1 NOTES
|
|
|
|
This command is part of the xCAT software product. |