Sponsored Content
Top Forums UNIX for Advanced & Expert Users does anybody know what the bcb feature is in EMC? Post 28787 by Kelam_Magnus on Tuesday 24th of September 2002 02:40:01 PM
Old 09-24-2002
Biker is correct.

We also use BCVs for something other than a backup for raw disks.

First, we use BCVs to take a snapshot of a production database for backup, but also to use as a Reporting function for our Accounting department. This gives them something to pull reports from the previous days business.

Second, We also use BCVs to copy Databases from one box to another for analysis and development purposes. This is much faster than trying to copy 1/2 a Terabyte or more of data from one box to another. No bandwidth is used up. Of course you need to have Volume groups and Filesystems defined on the second box by BCV with the disk devices that are associated with the Filesystems on the Primary box. Once you have that setup it is simply a matter of making the sync, breaking the mirror and then mounting them on the second box!

BCVs are very useful. You can go to https://powerlink.emc.com/login/registration.jhtml

There you can download documents that may help.

Smilie
 

8 More Discussions You Might Find Interesting

1. HP-UX

is anybody using EMC symmetrix?

Hello, I'm looking for reference sites using HP-UX and EMC symmetrix disk. Then, May I ask you questions? (6 Replies)
Discussion started by: cooldugong
6 Replies

2. Solaris

Emc

Dear gentelmen kindly please update me me how can i know disks on EMC and get size for all disks on EMC? (1 Reply)
Discussion started by: magasem
1 Replies

3. HP-UX

Emc

Dear gentelmen kindly please update me how can i know disks on EMC and get size for all disks on EMC? (0 Replies)
Discussion started by: magasem
0 Replies

4. UNIX for Advanced & Expert Users

AIX MPIO and EMC

We are looking at running MPIO for it's redundancy and load balancing benefits. Does anyone know what pieces of software or modules are needed on the VIO server to get load balancing to work. Remember we are using EMC's DMX3500 storage system. We no longer want to use Powerpath. :rolleyes: ... (2 Replies)
Discussion started by: vxg0wa3
2 Replies

5. Solaris

EMC Failover

Hi guys, I'm running vxdmp and powerpath at the same time. Vxdmp for internal disks and powerpath for external. The problem is that, on the failover tests which a fiber cable should be removed, the system cannot recognize the disks. Any hints on how to configure powerpath in order to... (4 Replies)
Discussion started by: glenioborges
4 Replies

6. Red Hat

Configure EMC Powerpath?

Hi , I have a redhat 5.3 server which has 2 vg.. one is rootvg in local harddisk and another one is applicationvg in SAN.. When I reboot the server , EMC powerpath driver is not starting up automatically. Hence applicationvg is not mounting properly. Therefore I need to unmount it manually and... (4 Replies)
Discussion started by: Makri
4 Replies

7. AIX

Help with EMC BCV device

I'm trying to auto-mount EMC Symmetrix BCV device at boot. but having problem making BCV available. I put script called mkbcv to the inittab and engineer suggested to add 120 sec sleep between cfgmgr so I did that also. My mkbcv script seems to be working fine, it says "hdisk4 Available" ... (1 Reply)
Discussion started by: shuhei365
1 Replies

8. Solaris

Connectivity to EMC x4 storage

Hi All! I have a two x6270 solaris 10, blade, connected to a EMC x4 storage appliance via fibre. I have little knowledge of veritasfile system, and EMC x4, storage device, but I found out that one DG is in shared mode. I need to split the configuration, to use only one server (blade). The EMC... (1 Reply)
Discussion started by: fretagi
1 Replies
feature(3pm)						 Perl Programmers Reference Guide					      feature(3pm)

NAME
feature - Perl pragma to enable new features SYNOPSIS
use feature qw(switch say); given ($foo) { when(1) { say "$foo == 1" } when ([2,3]) { say "$foo == 2 || $foo == 3" } when (/^a[bc]d$/) { say "$foo eq 'abd' || $foo eq 'acd'" } when ($_ > 100) { say "$foo > 100" } default { say "None of the above" } } use feature ':5.10'; # loads all features available in perl 5.10 DESCRIPTION
It is usually impossible to add new syntax to Perl without breaking some existing programs. This pragma provides a way to minimize that risk. New syntactic constructs, or new semantic meanings to older constructs, can be enabled by "use feature 'foo'", and will be parsed only when the appropriate feature pragma is in scope. Lexical effect Like other pragmas ("use strict", for example), features have a lexical effect. "use feature qw(foo)" will only make the feature "foo" available from that point to the end of the enclosing block. { use feature 'say'; say "say is available here"; } print "But not here. "; "no feature" Features can also be turned off by using "no feature "foo"". This too has lexical effect. use feature 'say'; say "say is available here"; { no feature 'say'; print "But not here. "; } say "Yet it is here."; "no feature" with no features specified will turn off all features. The 'switch' feature "use feature 'switch'" tells the compiler to enable the Perl 6 given/when construct. See "Switch statements" in perlsyn for details. The 'say' feature "use feature 'say'" tells the compiler to enable the Perl 6 "say" function. See "say" in perlfunc for details. the 'state' feature "use feature 'state'" tells the compiler to enable "state" variables. See "Persistent Private Variables" in perlsub for details. the 'unicode_strings' feature "use feature 'unicode_strings'" tells the compiler to treat all strings outside of "use locale" and "use bytes" as Unicode. It is available starting with Perl 5.11.3. See "The "Unicode Bug"" in perlunicode for details. FEATURE BUNDLES
It's possible to load a whole slew of features in one go, using a feature bundle. The name of a feature bundle is prefixed with a colon, to distinguish it from an actual feature. At present, the only feature bundle is "use feature ":5.10"" which is equivalent to "use feature qw(switch say state)". Specifying sub-versions such as the 0 in 5.10.0 in feature bundles has no effect: feature bundles are guaranteed to be the same for all sub-versions. IMPLICIT LOADING
There are two ways to load the "feature" pragma implicitly : o By using the "-E" switch on the command-line instead of "-e". It enables all available features in the main compilation unit (that is, the one-liner.) o By requiring explicitly a minimal Perl version number for your program, with the "use VERSION" construct, and when the version is higher than or equal to 5.10.0. That is, use 5.10.0; will do an implicit use feature ':5.10'; and so on. Note how the trailing sub-version is automatically stripped from the version. But to avoid portability warnings (see "use" in perlfunc), you may prefer: use 5.010; with the same effect. perl v5.12.1 2010-05-13 feature(3pm)
All times are GMT -4. The time now is 05:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy