Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Run process to resynchronize mirrors during database backups?? What does it mean??? Post 19610 by TRUEST on Sunday 14th of April 2002 03:40:14 PM
Old 04-14-2002
Run process to resynchronize mirrors during database backups?? What does it mean???

does anyone have any idea of what this means and if you do, please elaborate more on what you know about this and the importance it carries along.

by the way, we dealing with Linux and Solaris 8 systems here
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How can I run a process under particular ID?

I have a script that needs to run under ID say "xyz". the way I do normally is to "su" to the id, enter the password of "xyz" and run the process. However, is there any way run the process under "xyz" without "su" to the ID. A person with root access would be able to run any process under any ID as... (4 Replies)
Discussion started by: ucbus
4 Replies

2. UNIX for Dummies Questions & Answers

backing up file everytime script run and saving other backups

how would i go about creatng a backup of a file everytime a script is run so that the next time it is run the old backup gets pushed back and the most recent backup is 1st. (new)backup.1 (old)backup.2 that kind of idea?? (4 Replies)
Discussion started by: knc9233
4 Replies

3. UNIX for Dummies Questions & Answers

how to run cron job to truncate database table

hi i'm a bit stuck trying to find the correct syntax in order to run a cron job which just truncates all info from a single table in my database i have a main database - db1 and i have a table in that database - userips i wish to create a cron job that truncates or removes all the info... (9 Replies)
Discussion started by: wingchun22
9 Replies

4. Solaris

Solaris 10 network, process, database related comands

Hi everbody, Can anyone let me know the resources for list of network, process, database related commands of solaris10 possibly with little bit of explanation. Thanks in advance, Chandra Sekhar. (1 Reply)
Discussion started by: chandoo.java
1 Replies

5. Shell Programming and Scripting

script to monitor the process system when a process from user takes longer than 15 min run.

get email notification from from system when a process from XXXX user takes longer than 15 min run.Let me know the time estimation for the same. hi ,any one please tell me , how to write a script to get email notification from system when a process from as mentioned above a xxxx user takes... (1 Reply)
Discussion started by: kirankrishna3
1 Replies

6. Shell Programming and Scripting

How to run a particular process

Hi I have a perl script where i created 3 nmap scans and the results will output to a text file. But when i run the code the first ip address gets scanned then the others after, but i want to be able to choose which ip address to scan. Here is my code: (`nmap -v -r 99.xxx.xxx -p... (0 Replies)
Discussion started by: kingbp
0 Replies

7. Shell Programming and Scripting

How to run a SQL select query in Oracle database through shell script?

I need to run a SQL select query in Oracle database and have to capture the list of retrieved records in shell script. Also i would like to modify the query for certain condition and need to fetch it again. How can i do this? Is there a way to have a persistent connection to oracle database... (9 Replies)
Discussion started by: vel4ever
9 Replies

8. UNIX and Linux Applications

database takes long time to process

Hi, we currently having a issue where when we send jobs to the server for the application lawson, it is taking a very long time to complete. here are the last few lines of the database log. 2012-09-18-10.35.55.707279-240 E244403536A576 LEVEL: Warning PID : 950492 ... (1 Reply)
Discussion started by: techy1
1 Replies

9. Shell Programming and Scripting

How to run a remote database query?

Thank you for taking the time to read my issue. I need to set up a script to run from a wagon wheel type toplogy where 1 server needs to query about 10 to 15 remote servers for duplicate values in a database table. If a duplicate value is found, send an email to me( or wall command to console).... (5 Replies)
Discussion started by: lutador72
5 Replies

10. HP-UX

Database replication process stopped in server

Hi, A database (Oracle) replication process was executed by the DBA team in one server (serverX). However, this replication process gets terminated, and there are no errors in the replication log. But there is error in the OS log files (syslog.log) : Aug 8 16:51:47 L28dre02 sshd: subsystem... (1 Reply)
Discussion started by: anaigini45
1 Replies
RoPkg::Simba(3pm)					User Contributed Perl Documentation					 RoPkg::Simba(3pm)

NAME
RoPkg::Simba - the main class of simba VERSION
0.8.4 SYNOPSIS
!#/usr/bin/perl use RoPkg::DB; use RoPkg::Simba; sub main { my $simba = new RoPkg::Simba(cfgFile => '/etc/simba.cfg'); $simba->Run({ Name => 'debian'}); } main(); DESCRIPTION
This class encapsulates all the necesary code required to run Simba. SUBROUTINES
/METHODS new() new() expects a hash ref as a parameter. The hash can contain (for the moment) only the cfgFile (the configuration file). All other hash keys are ignored. SimbaURL Returns the url with simba website VERSION Returns a string with simba version MirrorsNo($fields) returns the number of the mirrors from the database. The mirrors can be filtered using the $fields parameter (as documented in SQL::Abstract - where) Mirrors($fields) returns a array of RoPkg::Simba::Mirror initialized objects. The mirrors can be filtered using the $fields parameter (as documented in SQL::Abstract - where) CommandsNo($fields) returns the number of commands from the database. The commands can be filtered using the $fields parameter (as documented in SQL::Abstract - where) Commands returns a array of RoPkg::Simba::Command initialized objects. The commands can be filtered using the $fields parameter (as documented in SQL::Abstract - where) ExcludeNo returns the number of excludes from the database. The excludes can be filtered using the $fields parameter (as documented in SQL::Abstract - where) Excludes returns a array of RoPkg::Simba::Excludes initialized objects. The excludes can be filtered using the $fields parameter (as documented in SQL::Abstract - where) LoadMirror($fields) load a mirror (and the related objects: command and exclude list) from the database and return a list of 3 objects: the mirror object (RoPkg::Simba::Mirror) the command object (RoPkg::Simba::Command) the excludes object (RoPkg::Simba::Excludes) Ex: my ($mirror, $command, $excludes); ($mirror, $command, $excludes) = $simba->LoadMirror({ Name => 'debian'}); The mirrors can be filtered using the $fields parameter (as documented in SQL::Abstract - where). This method also checks if all necesary values are defined and well formed; for example checks if the command file name really exists. Run($fields) The most used method by simba. This method loads the mirror from the database, the command and the exclude list, builds the command line (with respect to username and password if necesary), signals mirror in progress, executes the command, parses the sync raw log and updates the database. Also, the afterSync handler callback is registered to this method. The mirrors can be filtered using the $fields parameter (as documented in SQL::Abstract - where). RunCallbacks($cbName, @mirrors) call the plugin methods for $cbName callback name. CheckDB() Checks if database has at least one mirror and one command defined. dbh() returns the database handler used by Simba dbo() returns the instance of RoPkg::DB object, used by Simba dbo_method() returns the method used by Simba's dbo() object to access the mirrors database. SEE ALSO
RoPkg::Simba::Mirror RoPkg::Simba::Command RoPkg::Simba::Exclude RoPkg::Simba::Mirrors RoPkg::Simba::Commands RoPkg::Simba::Excludes PERL CRITIC
This module is perl critic level 2 compliant (with one exception) DIAGNOSTICS
This module has his own tests in the t directory. To run the tests, unpack the source and use 'make test' command. CONFIGURATION AND ENVIRONMENT
This class use a configuration file. No environment variables are used. The configuration file format and the complete list of options (with detailed explanations) can be found on the community website: http://simba.packages.ro DEPENDENCIES
INCOMPATIBILITIES
Please check the Makefile.PL for a detalied list of dependencies and their versions. BUGS AND LIMITATIONS
No bugs known. For now, Simba can work only with rsync. AUTHOR
Subredu Manuel <diablo@iasi.roedu.net> LICENSE AND COPYRIGHT
Copyright (C) 2005 Subredu Manuel. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license. perl v5.14.2 2006-09-26 RoPkg::Simba(3pm)
All times are GMT -4. The time now is 03:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy