Sponsored Content
Operating Systems Solaris Steps to reestablish SRDF which is half split Post 302731219 by ravijanjanam12 on Wednesday 14th of November 2012 12:46:11 PM
Old 11-14-2012
Steps to reestablish SRDF which is half split

HI Guys,
Can you please let me know the procedure to reestablish the SRDF which is half split, as you can see from the below O/P that one of the device is synchronized and other devices are in split mode

Source (R1) View Target (R2) View MODES
-------------------------------- ------------------------ ----- ------------
ST LI ST
Standard A N A
Logical T R1 Inv R2 Inv K T R1 Inv R2 Inv RDF Pair
Device Dev E Tracks Tracks S Dev E Tracks Tracks MDAE STATE
-------------------------------- -- ------------------------ ----- ------------
DEV001 100F RW 0 260289 NR 1ADE RW 20 0 S... Split
DEV002 1011 RW 0 19783 NR 1AE0 RW 20 0 S... Split
DEV003 1013 RW 0 170630 NR 1AE2 RW 20 0 S... Split
DEV004 1015 RW 0 15899 NR 1AE4 RW 21 0 S... Split
DEV005 1017 RW 0 8121 NR 1AE6 RW 21 0 S... Split
DEV006 1DA2 RW 0 0 RW 0B45 WD 0 0 S... Synchronized
Total -------- -------- -------- --------
Track(s) 0 474722 102 0
MB(s) 0.0 29670.1 6.4 0.0
 

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

Knowing the half will get you into trouble - describe your disasters

Curious, what did you do? (3 Replies)
Discussion started by: benefactr
3 Replies

2. Shell Programming and Scripting

srdf script

I need a script which compares two conditions and depending on the input will output the correct result. therefore, syntax; in aix 5.3 - cmdline# symrdf -g HA_DG query | awk '/Split/ {print "SRDF is Not Running " }' or .... this is where I need the assist.... symrdf -g HA_DG query | awk ... (2 Replies)
Discussion started by: rwaite49
2 Replies

3. Shell Programming and Scripting

Script sortof half-working?

I have directories full of files that contain dates and times in their names in the format YYYYMMDDhhmm. So like, one of the files is named 199407271609 with no file extension. I have this script searches a given directory and changes all creation dates of the files to match the date in their... (4 Replies)
Discussion started by: hot_pants
4 Replies

4. UNIX for Dummies Questions & Answers

Internet half-broken

I have an odd problem with my internet connection. I think it's software not hardware, but I'm not even certain of that. My best guess is that it relates to my recent installation of KVpnc. I can't connect to most websites: no ping, nothing in the browser. But other websites I can connect to... (7 Replies)
Discussion started by: CRGreathouse
7 Replies

5. Programming

[C] Is there a way to clean half screen?

Hi, I wrote a program for Windows environment. It shows a menu to choice some operations to do. Once an operation is done, it cleans the screen with a system("cls") call, and the menu is shown again. I'd like to just clean half screen, so the program doesn't need to call again the print menu... (5 Replies)
Discussion started by: Luke Bonham
5 Replies

6. AIX

Connected and Running with half duplex speed

VIO Server connected to switch port and running with half duplex speed on one of the shared ethernet adapter. We have verified at switch end and everythings looks good. Other ethernet adapter in the VIO server are connected and running in Full duplex speed. Please help me find why this shared... (4 Replies)
Discussion started by: mugunthanvh
4 Replies

7. UNIX for Dummies Questions & Answers

[SOLVED] Only half my script runs

Hello out there, I got this script that runs partly fine by my crontab. Problem is it gets to the sleep 300(which should be 5 minutes right?) part and never runs the rest of the scripts past that. All individual scripts run just fine. My var/mail file only shows it up to the " echo "Loader Stop... (3 Replies)
Discussion started by: vsekvsek
3 Replies

8. Shell Programming and Scripting

To split a file in exact half using awk

file: 1 2 3 4 5 6 7 8 9 10 code: awk 'END{if( < NR/2) {print $0}}' file The above has some error Output needed: (8 Replies)
Discussion started by: Roozo
8 Replies
URI::Split(3)						User Contributed Perl Documentation					     URI::Split(3)

NAME
URI::Split - Parse and compose URI strings SYNOPSIS
use URI::Split qw(uri_split uri_join); ($scheme, $auth, $path, $query, $frag) = uri_split($uri); $uri = uri_join($scheme, $auth, $path, $query, $frag); DESCRIPTION
Provides functions to parse and compose URI strings. The following functions are provided: ($scheme, $auth, $path, $query, $frag) = uri_split($uri) Breaks up a URI string into its component parts. An "undef" value is returned for those parts that are not present. The $path part is always present (but can be the empty string) and is thus never returned as "undef". No sensible value is returned if this function is called in a scalar context. $uri = uri_join($scheme, $auth, $path, $query, $frag) Puts together a URI string from its parts. Missing parts are signaled by passing "undef" for the corresponding argument. Minimal escaping is applied to parts that contain reserved chars that would confuse a parser. For instance, any occurrence of '?' or '#' in $path is always escaped, as it would otherwise be parsed back as a query or fragment. SEE ALSO
URI, URI::Escape COPYRIGHT
Copyright 2003, Gisle Aas This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.1 2008-04-04 URI::Split(3)
All times are GMT -4. The time now is 08:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy