Copy Db Instance


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Copy Db Instance
# 1  
Old 01-12-2005
Copy Db Instance

I need to copy my Live Db Instance to my Test Db Instance

Can somebody please tell me the easiest way to go about this

It is an Informix Database running on HP-UX

Thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Grep the only instance name

Hi, I want to get the only application name from the server. Ex: if i give $ ps -ef | grep bw. It will show all BW process with entire path. It will little confuse to list out the process. Can anyone have syntax to get only the instance name. I need this for be, hawk,ems also. Please... (2 Replies)
Discussion started by: ckchelladurai
2 Replies

2. Shell Programming and Scripting

Keep the last instance of the record

Hi All, I have a input file like 1| abc 1| abcd 1| abcde 2| abc 2| abcd 3| abcde I want the output like 1| abcde 2| abcde Any help would be highly appreciated. Thanks in advance. (9 Replies)
Discussion started by: lrkp
9 Replies

3. Red Hat

Apache instance

Hi , Maximum How many instances of apache can we run in one box? (2 Replies)
Discussion started by: krish4linux
2 Replies

4. Shell Programming and Scripting

What does : do in this instance

Guys please see below functions to return a status depending on user input. Both seem to work the same. The second way has a : line which i can't understand or see in a ksh manual anywhere. Instead of doing the variable change if its empty on this line the first function simply does it on the... (7 Replies)
Discussion started by: lavascript
7 Replies

5. Shell Programming and Scripting

Sed on first instance only

Hi, I've been trying to figure this one out and found a post about this on the forum here but the solution didn't seem to work for me. Basically what I have is a file that looks something like: stuff morestuff 0 otherthing 0 etc I want to substitute for the 0 but what I want to... (9 Replies)
Discussion started by: eltinator
9 Replies

6. Shell Programming and Scripting

matching first instance of FS

Hi All, I have a property in a file as: property=value=a If I use FS="=" then I want only first = to be considered as field separator and remaining as value echo -e "property=value=a" | awk -F= '{print $2}' ie my $2 should be value=a Can anyone please help me with this. I need it in... (3 Replies)
Discussion started by: gurukottur
3 Replies

7. Shell Programming and Scripting

replace first instance(not first instance in line)

Alright, I think I know what I am doing with sed(which probably means I don't). But I cant figure out how to replace just the first occurance of a string. I have tried sed, ed, and grep but can't seem to figure it out. If you have any suggestions I am open to anything! (3 Replies)
Discussion started by: IronHorse7
3 Replies

8. Shell Programming and Scripting

Single Instance

Hi, I have a script. I want only one instance of the script to be running at any point of the time. How can I do it. what would be the exact format of the ps command for doing this. For example the name of my script is "Inst.sh" Thanx in advance (2 Replies)
Discussion started by: sendhil
2 Replies

9. Linux

OTRS instance

hi frnds here i m trying to configure OTRS instance but i m getting the following error message while runnning through browser. I m writing the following http://192.168.1.55:8080/otrs2/index.pl " #!/usr/bin/perl -w... (7 Replies)
Discussion started by: naik_mit
7 Replies

10. UNIX for Dummies Questions & Answers

finding first instance

I have a file with 3 columns. Often the first two will hold the same values and the third may differ. I only want one row for each. i.e. aaa,bbb,1 aaa,bbb,2 aaa,bbb,3 xxx,yyy,1 xxx,yyy,2 zzz,rrr,5 Should be aaa,bbb,1 xxx,yyy,1 zzz,rrr,5 I just want the first instance of... (20 Replies)
Discussion started by: peter.herlihy
20 Replies
Login or Register to Ask a Question
Unicode::GCString(3pm)					User Contributed Perl Documentation				    Unicode::GCString(3pm)

NAME
Unicode::GCString - String as Sequence of UAX #29 Grapheme Clusters SYNOPSIS
use Unicode::GCString; $gcstring = Unicode::GCString->new($string); DESCRIPTION
Unicode::GCString treats Unicode string as a sequence of extended grapheme clusters defined by Unicode Standard Annex #29 [UAX #29]. Grapheme cluster is a sequence of Unicode character(s) that consists of one grapheme base and optional grapheme extender and/or XprependX character. It is close in that people consider as character. Public Interface Constructors new (STRING, [LINEBREAK]) Constructor. Create new grapheme cluster string (Unicode::GCString object) from Unicode string STRING. Optional Unicode::LineBreak object LINEBREAK controls breaking features. copy Copy constructor. Create a copy of grapheme cluster string. Next position of new string is set at beginning. Sizes chars Instance method. Returns number of Unicode characters grapheme cluster string includes, i.e. length as Unicode string. columns Instance method. Returns total number of columns of grapheme clusters defined by built-in character database. For more details see "DESCRIPTION" in Unicode::LineBreak. length Instance method. Returns number of grapheme clusters contained in grapheme cluster string. Operations as String as_string """OBJECT""" Instance method. Convert grapheme cluster string to Unicode string explicitly. cmp (STRING) STRING "cmp" STRING Instance method. Compare strings. There are no oddities. One of each STRING may be Unicode string. concat (STRING) STRING "." STRING Instance method. Concatenate STRINGs. One of each STRING may be Unicode string. Note that number of columns (see columns()) or grapheme clusters (see length()) of resulting string is not always equal to sum of both strings. Next position of new string is that set on the left value. join ([STRING, ...]) Instance method. Join STRINGs inserting grapheme cluster string. Any of STRINGs may be Unicode string. substr (OFFSET, [LENGTH, [REPLACEMENT]]) Instance method. Returns substring of grapheme cluster string. OFFSET and LENGTH are based on grapheme clusters. If REPLACEMENT is specified, substring is replaced by it. REPLACEMENT may be Unicode string. Operations as Sequence of Grapheme Clusters as_array "@{"OBJECT"}" as_arrayref Instance method. Convert grapheme cluster string to an array of grapheme clusters. eos Instance method. Test if current position is at end of grapheme cluster string. item ([OFFSET]) Instance method. Returns OFFSET-th grapheme cluster. If OFFSET was not specified, returns next grapheme cluster. next "<"OBJECT">" Instance method, iterative. Returns next grapheme cluster and increment next position. pos ([OFFSET]) Instance method. If optional OFFSET is specified, set next position by it. Returns next position of grapheme cluster string. Methods palanned to be deprecated flag ([OFFSET, [VALUE]]) Instance method. Get or set flag value of OFFEST-th grapheme cluster. If OFFSET was not specified, returns flag value of next grapheme cluster. Flag value is an non-zero integer not greater than 255 and initially is 0. Predefined flags are: Unicode::LineBreak::ALLOW_BEFORE Allow line breaking just before this grapheme cluster. Unicode::LineBreak::PROHIBIT_BEFORE Prohibit line breaking just before this grapheme cluster. lbclass ([OFFSET]) Returns Line Breaking Class (See Unicode::LineBreak) of the first character of OFFSET-th grapheme cluster. If OFFSET was not specified, returns class of next grapheme cluster. Note: Use lbc(). lbclass_ext ([OFFSET]) Returns Line Breaking Class (See Unicode::LineBreak) of the last grapheme extender of OFFSET-th grapheme cluster. If there are no grapheme extenders or its class is CM, value of lbclass() is returned. Note: Use lbcext(). Miscelaneous lbc Returns Line Breaking Class (See Unicode::LineBreak) of the first character of first grapheme cluster. lbcext Returns Line Breaking Class (See Unicode::LineBreak) of the last grapheme extender of last grapheme cluster. If there are no grapheme extenders or its class is CM, value of last grapheme base will be returned. CAVEATS
o The grapheme cluster should not be referred to as "grapheme" even though Larry does. o On Perl around 5.10.1, implicit conversion from Unicode::GCString object to Unicode string sometimes let "utf8_mg_pos_cache_update" cache be confused. For example, instead of doing $sub = substr($gcstring, $i, $j); do $sub = substr("$gcstring", $i, $j); $sub = substr($gcstring->as_string, $i, $j); o This module implements default algorithm for determining grapheme cluster boundaries. Tailoring mechanism has not been supported yet. VERSION
Consult $VERSION variable. Development versions of this module may be found at http://hatuka.nezumi.nu/repos/Unicode-LineBreak/ <http://hatuka.nezumi.nu/repos/Unicode-LineBreak/>. SEE ALSO
[UAX #29] Mark Davis (2009-2010). Unicode Standard Annex #29: Unicode Text Segmentation, Revision 15-17. <http://www.unicode.org/reports/tr29/>. AUTHOR
Hatuka*nezumi - IKEDA Soji <hatuka(at)nezumi.nu> COPYRIGHT
Copyright (C) 2009-2012 Hatuka*nezumi - IKEDA Soji. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-03-24 Unicode::GCString(3pm)