/usr/bin/dbs_dumptabstruct is in libdbix-easy-perl 0.17-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | #!/usr/bin/perl -w
eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
if 0; # not running under some shell
# dbs_dumptabstruct - creates file set with SQL table schemas
# This script queries a SQL database and creates one file for each
# table in the database containing the schema of the table.
# Copyright (C) 1999,2000,2001,2002,2007 Stefan Hornburg
# Author: Stefan Hornburg (Racke) <racke@linuxia.de>
# Maintainer: Stefan Hornburg (Racke) <racke@linuxia.de>
# Version: 0.17
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version.
# This file is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this file; see the file COPYING. If not, write to the Free
# Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
use strict;
use DBIx::Easy;
use Getopt::Long;
use Term::ReadKey;
# process commandline parameters
my %opts;
my $whandler = $SIG{__WARN__};
$SIG{__WARN__} = sub {print STDERR "$0: @_";};
unless (GetOptions (\%opts, 'dump-options|d|o=s', 'exclude-matching-tables=s',
'filter', 'pipe|p', 'tables|t=s')) {
exit 1;
}
$SIG{__WARN__} = $whandler;
# sanity check on commandline parameters
if (exists $opts{'exclude-matching-tables'}) {
eval {'' =~ /$opts{'exclude-matching-tables'}/;};
if ($@) {
$@ =~ s%at /.*$%%;
die "$0: $@";
}
}
my $dbif;
my $pwdused = 0;
my $pwd;
my @tables;
my ($driver, $database, $user) = @ARGV;
$dbif = new DBIx::Easy ($driver, $database, $user);
# handler for DBI error messages and missing password
$dbif -> install_handler (\&fatal);
# we need to explicitly establish the connection
# for the case that a password is needed
$dbif -> connect;
# dump procedures for the different drivers
my $dumpproc;
if ($driver eq 'mysql') {
if ($opts{filter}) {
$dumpproc = \&kvfilter;
} else {
$dumpproc = sub {
my ($database, $table) = @_;
my $header;
my $optstr = '';
if ($dbif -> {USER}) {
$optstr = " -u " . $dbif -> {USER};
}
if ($dbif -> {HOST}) {
$optstr .= " -h " . $dbif -> {HOST};
}
if (defined $pwd) {
$optstr .= " -p";
}
if ($opts{'dump-options'}) {
$optstr .= " $opts{'dump-options'}";
}
open (DUMP, qq{mysqldump -d $optstr "$database" "$table" |})
|| die ("$0: Couldn't launch mysqldump: $!\n");
while (<DUMP>) {
if ($header) {
print;
next;
}
# skip header
$header = 1 unless (/\S/);
}
close (DUMP)
|| die ("$0: mysqldump execution errors\n");
}
}
} elsif ($driver eq 'Pg') {
if ($opts{filter}) {
die "$0: --filter option not supported for PostgreSQL databases\n";
} else {
$dumpproc = sub {
my ($database, $table) = @_;
my $optstr = '';
if ($opts{'dump-options'}) {
$optstr = " $opts{'dump-options'}";
}
open (DUMP, qq{pg_dump "$database" -x -s $optstr -t "$table" |})
|| die ("$0: Couldn't launch pg_dump: $!\n");
while (<DUMP>) {
print;
}
close (DUMP)
|| die ("$0: pg_dump execution errors\n");
}
}
}
if ($opts{'tables'}) {
@tables = split (/,/, $opts{'tables'});
} else {
@tables = ($dbif->tables(), $dbif->sequences());
}
foreach my $table (@tables) {
my $outfile = lc($table) . '.sql';
my $regexp;
# skip tables unwanted by user
if (exists $opts{'exclude-matching-tables'}) {
next if $table =~ /$opts{'exclude-matching-tables'}/;
}
# call driver dependent dump procedure and fill
# output file with the results
unless ($opts{'pipe'}) {
open (OUT, ">$outfile") || die ("$0: Couldn't open $outfile: $!\n");
select (OUT);
}
&$dumpproc ($database, $table);
unless ($opts{'pipe'}) {
close (OUT);
}
select (STDOUT);
}
# Destroy Database object as written in manpage
undef $dbif;
# -----------------------------------
# FUNCTION: fatal
#
# Error handler called by DBIx::Easy.
# -----------------------------------
sub fatal {
my ($statement, $err, $msg) = @_;
if ($dbif->is_auth_error ($err)) {
unless ($pwdused) {
print "We need a password.\n";
$pwd = querypwd();
$pwdused = 1;
# retry the connection
if (length ($pwd)) {
$dbif = new DBIx::Easy ($driver, $database, $user, $pwd);
$dbif -> install_handler (\&fatal);
$dbif -> connect ();
return;
} else {
die ("$statement.\n");
}
}
}
die ("$statement.\n");
}
# ----------------------------
# FUNCTION: querypwd
#
# Queries user for a password.
# ----------------------------
sub querypwd () {
my $pwd;
print "Password: ";
ReadMode ('noecho'); # turn echo off
$pwd = ReadLine (0);
ReadMode ('restore'); # restore terminal
print "\n";
chomp ($pwd);
$pwd;
}
# FUNCTION: kvfilter
sub kvfilter {
my ($database, $table) = @_;
my $dbif = new DBIx::Easy ('mysql', $database);
my $sth = $dbif->process("describe $table");
my $row;
print join ("\t", @{$sth->{NAME}}), "\n";
while ($row = $sth->fetch()) {
print join("\t", map {$_ || ''} @$row), "\n";
}
}
=head1 NAME
dbs_dumptabstruct - Creates file set with SQL table schemas
=head1 DESCRIPTION
dbs_dumptabstruct is an utility to create a file set with SQL table schemas.
For each table in the database dbs_dumptabstruct calls the appropriate dumper
utility with the output directed to a file named I<table>.sql in the
current directory. dbs_dumptabstruct asks for a password if necessary.
=head1 COMMAND LINE PARAMETERS
Required command line parameters are the DBI driver
(C<Pg> for Postgres or C<mysql> for MySQL)
and the database name. The third parameter is optionally
and specifies the database user and/or the host where the
database resides (C<racke>, C<racke@linuxia.de> or C<@linuxia.de>).
=head1 COMMAND LINE OPTIONS
=head2 B<-d>=OPTIONS, B<-o>=OPTIONS, B<--dump-options>=OPTIONS
Pass options to the dumper utility, e.g. C<--compatible=mysql40>.
=head2 B<-p>, B<--pipe>
Prints the table dumps to standard output.
=head2 B<-t> TABLE[,TABLE,...], B<--tables>=TABLE[,TABLE,...]
Comma-separated list of tables to dump.
=head2 B<--exclude-matching-tables>=REGEXP
Excludes any table matching the regular expression REGEXP from dumping.
=head1 BUGS
Only mysql and Pg drivers are supported.
=head1 AUTHOR
Stefan Hornburg (Racke), racke@linuxia.de
=head1 VERSION
0.17
=head1 SEE ALSO
perl(1), DBIx::Easy(3)
=cut
|