Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
3d5b4aa4
Commit
3d5b4aa4
authored
18 years ago
by
Patrick Meidl
Browse files
Options
Downloads
Patches
Plain Diff
script to interactively delete temporary and backup tables from a database
parent
d00e1c2b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc-scripts/cleanup_tmp_tables.pl
+128
-0
128 additions, 0 deletions
misc-scripts/cleanup_tmp_tables.pl
with
128 additions
and
0 deletions
misc-scripts/cleanup_tmp_tables.pl
0 → 100755
+
128
−
0
View file @
3d5b4aa4
#!/usr/local/bin/perl
=head1 NAME
cleanup_tmp_tables.pl - delete temporary and backup tables from a database
=head1 SYNOPSIS
cleanup_tmp_tables.pl [arguments]
Required arguments:
--dbname, db_name=NAME database name NAME
--host, --dbhost, --db_host=HOST database host HOST
--port, --dbport, --db_port=PORT database port PORT
--user, --dbuser, --db_user=USER database username USER
--pass, --dbpass, --db_pass=PASS database passwort PASS
Optional arguments:
--conffile, --conf=FILE read parameters from FILE
(default: conf/Conversion.ini)
--logfile, --log=FILE log to FILE (default: *STDOUT)
--logpath=PATH write logfile to PATH (default: .)
--logappend, --log_append append to logfile (default: truncate)
-v, --verbose=0|1 verbose logging (default: false)
-i, --interactive=0|1 run script interactively (default: true)
-n, --dry_run, --dry=0|1 don't write results to database
-h, --help, -? print help (this message)
=head1 DESCRIPTION
=head1 LICENCE
This code is distributed under an Apache style licence:
Please see http://www.ensembl.org/code_licence.html for details
=head1 AUTHOR
Patrick Meidl <meidl@ebi.ac.uk>, Ensembl core API team
=head1 CONTACT
Please post comments/questions to the Ensembl development list
<ensembl-dev@ebi.ac.uk>
=cut
use
strict
;
use
warnings
;
no
warnings
'
uninitialized
';
use
FindBin
qw($Bin)
;
use
vars
qw($SERVERROOT)
;
BEGIN
{
$SERVERROOT
=
"
$Bin
/../..
";
unshift
(
@INC
,
"
$SERVERROOT
/ensembl/modules
");
unshift
(
@INC
,
"
$SERVERROOT
/bioperl-live
");
}
use
Getopt::
Long
;
use
Pod::
Usage
;
use
Bio::EnsEMBL::Utils::
ConversionSupport
;
$|
=
1
;
my
$support
=
new
Bio::EnsEMBL::Utils::
ConversionSupport
(
$SERVERROOT
);
# parse options
$support
->
parse_common_options
(
@
_
);
$support
->
allowed_params
(
$support
->
get_common_params
,
);
if
(
$support
->
param
('
help
')
or
$support
->
error
)
{
warn
$support
->
error
if
$support
->
error
;
pod2usage
(
1
);
}
# ask user to confirm parameters to proceed
$support
->
confirm_params
;
# get log filehandle and print heading and parameters to logfile
$support
->
init_log
;
$support
->
check_required_params
;
# connect to database and get adaptors
my
$dba
=
$support
->
get_database
('
ensembl
');
my
$dbh
=
$dba
->
dbc
->
db_handle
;
# find all temporary and backup tables
my
@tables
;
foreach
my
$pattern
(
qw(tmp temp bak backup)
)
{
my
$sql
=
qq(SHOW TABLES LIKE '\%$pattern\%')
;
my
$sth
=
$dbh
->
prepare
(
$sql
);
$sth
->
execute
;
while
(
my
(
$table
)
=
$sth
->
fetchrow_array
)
{
push
@tables
,
$table
;
}
}
if
(
$support
->
param
('
dry_run
'))
{
# for a dry run, only show which databases would be deleted
$support
->
log
("
Temporary and backup tables found:
\n
");
foreach
my
$table
(
sort
@tables
)
{
$support
->
log
("
$table
\n
",
1
);
}
}
else
{
# delete tables
foreach
my
$table
(
sort
@tables
)
{
if
(
$support
->
user_proceed
("
Drop table
$table
?
"))
{
$support
->
log
("
Dropping table
$table
...
\n
");
$dbh
->
do
("
DROP TABLE
$table
");
$support
->
log
("
Done.
\n
");
}
}
}
# finish logfile
$support
->
finish_log
;
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment