How to move folders from one server to another serve using unix command

Hi All,
How to move the folders from one server to another server using unix command.
scp -r armops@sjarmprd01:/ARM/scripts [email protected]:/ARM/scripts/
but it is giving an error like not a regular file .. what it means .. please let me know if any one knows about it
Thanks
Sreedhar

not a regular file .. what it meansProbably you have some fifo (named pipe) files...
Said that this has nothing to do with database (you should post on some nix forum, for example http://forums.oracle.com/forums/forum.jspa?forumID=135), you may try rsync* command (man rsync).

Similar Messages

  • How to move folders from one inbox to another

    I'm helping a friend clear out her hotmail inbox and move everything to her gmail inbox. When everything has been saved and moved out of the hotmail inbox, we're going to delete that account.
    Moving mails from one inbox to another is pretty straightforward. However, she has also created about two dozen folders within her hotmail inbox to organize messages from recipients. Is there any way to move these folders either individually...or all at once to her gmail inbox? Although a folder can be tapped on and entered, there doesn't seem to be any operations available such as an option to move them, as one can do with individual messages.

    Move the iTunes library to a shared area and then into the desired location. If this isn’t the default one, launch iTunes with the Shift key held down and choose that library.
    (122379)

  • How to move materials from one sloc to another sloc  materials are more tha

    Hi,
    Can any one help me on this issue How to move materials from one sloc to another sloc  materials are more than 1000
    and from existing sloc to new sloc which is Hum managened i need help onthis issue thanks

    hi
    use T-code: MB1B Transfer Posting
    Movement type:
    311 Transfer posting storage location to storage location in one step
    The quantity is transferred from unrestricted-use stock of the issuing storage location to unrestricted use in the receiving storage location.
    Possible special stock indicators: E, K, M, Q
    313 Stock transfer storage location to storage location in two steps - removal from storage
    The quantity is transferred from unrestricted-use stock of the issuing storage location to stock in transfer in the receiving storage location.
    Possible special stock indicators: None

  • How to move value from one tlist to another tlist in same form?

    how to move value from one tlist to another tlist in same form on button press?
    Same like in data block wizard when we select value from 1st list it will go to 2nd list and can be move back. Please help i am new to forms .
    Regards

    just call the following proc in your add & add all buttons. Reverse the code for REMOVEs
    this proc will move one item at a time from list_item1 to list_item2.
    PROCEDURE add_an_item
    IS
      v_list_count    NUMBER;
      v_item1_label  VARCHAR2(60);
    BEGIN
      IF :list_item1 IS NOT NULL THEN v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
          IF v_list_count >= 1 THEN FOR i IN 1..v_list_count
          LOOP
             IF   :list_item1    = Get_List_Element_Value('list_item1', i)
             THEN
                  v_item1_label := Get_List_Element_label('list_item1', i);                 
                  Add_List_Element('list_item2',1,v_item_label,:list_item1);         
               Delete_List_Element('list_item1',i);
               Exit;
             END IF;
          END LOOP;
           END IF;
       END IF;
    END;
    *********************************************************************************this proc will move all items from list_item1 to list_item2.
    PROCEDURE add_all_items
    IS
      v_list_count NUMBER;
      v_item_label VARCHAR2(60);
      v_item_value VARCHAR2(60);
    BEGIN
    v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
    IF    v_list_count = 1 AND Get_List_Element_Value('list_item1', 1) IS NULL THEN NULL;
    ELSIF v_list_count >= 1 THEN
           FOR i IN 1..v_list_count
           LOOP
            v_item_value  := Get_List_Element_Value('list_item1', i);
            v_item_label  := Get_List_Element_label('list_item1', i);       
            Add_List_Element('list_item2',i,v_item_label,v_item_value);
           END LOOP;
           clear_list('list_item1');
    END IF;
    END;I added [ code ] tags to make this easier to read.
    Message was edited by:
    Jan Carlin

  • How to move iTunes from one user to another on the same Windows 7  computer

    How to move iTunes from one user to another on the same Windows 7 computer? Thanks, Bob

    Move the iTunes library to a shared area and then into the desired location. If this isn’t the default one, launch iTunes with the Shift key held down and choose that library.
    (122379)

  • How to transfer songs from one iPad to another iPad using iTunes?

    How to transfer songs from one iPad to another iPad using iTunes?

    You can't without a third party app. If you didn't purchase the Music with your Apple ID or if the music was imported from CD's on your friends iTunes library, syncing will not work ....nor will transferring purchases.
    Look at this app .... TouchCopy
    http://www.wideanglesoftware.com/touchcopy/index.php

  • How to move cursor from one textfield to another textfield byusing enterkey

    hii all,
    I have a problem in java script.
    To move cursor from one textbox to another text box ,I have take the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,firest i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to secon textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    try the following code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str)     {     
              if(event.keyCode==13)          {
                   if(str == 4)     {
                        formHeader.box[0].focus();
                   else     {
                        formHeader.box[parseInt(str)+1].focus();
                   return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    ----------------------------------------------

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • How to move tabs from one screen to another?

    Just started to group tabs. How can I move tabs from one screen to another to consolidate them into the groups?

    See <b>Tab Groups</b> (new in Fx4) (Panorama) [http://support.mozilla.com/en-US/kb/what-are-tab-groups What are Tab Groups] (video included)
    From one Window to another Window, by drag & drop
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • How to move BLOBs from one table to another ??

    Hi All,
    I am trying to move blobs from one table to another, however my insert statement is not working. What i mean is its running, but records are not being inserted into the table.
    This is my first time moving blobs, so please bear with me.
    here is my insert statement:
    INSERT INTO CASES.FILESTORAGE
    SELECT      DID,
              DRENDITIONID,
              DLASTMODIFIED,
              DFILESIZE,
              DISDELETED,
              BFILEDATA       // this attribute is the BLOB
    FROM      USSC_CASES_TMP.FILESTORAGE
    WHERE      DID NOT IN (SELECT DID FROM CASES.FILESTORAGE);here is the DDL for the table.
    CREATE TABLE "USSC_CASES_TMP"."FILESTORAGE"
        "DID"          NUMBER(*,0) NOT NULL ,
        "DRENDITIONID" VARCHAR2(30 CHAR) NOT NULL ,
        "DLASTMODIFIED" TIMESTAMP (6),
        "DFILESIZE"  NUMBER(*,0),
        "DISDELETED" VARCHAR2(1 CHAR),
        "BFILEDATA" BLOB,
        CONSTRAINT "PK_FILESTORAGE" PRIMARY KEY ("DID", "DRENDITIONID")
      );CASES.FILESTORAGE table has the same DDL, but in a different schema.
    Thanks in advance.

    If this seems rather straight forward. If the schema are exact simply execute:
    inset into [destination] select * from [source] ;if something is amiss you should be throwing errors someplace* but try this:
    create table [scratch table name] as select * from [source table] where [place some limit here] ;If this does not work then something someplace is very wrong and if you are not the DBA you need to get this persons attention, fairly quickly. I would do the above from sqlplus and then after each statement would:
    commit;then check to see if it succeeded.

  • How to move object from one cont. to another

    Hi I am not able to move object from one container to another container in work order driver. while when i am same line of code in JMS driver its working fine and also log genarated for the same. but in work ordre driver it is not working. here is my code which i m using for the same.ple help me out
    <do-move-src-object class-name="ValeUser">
    <arg-dn>
    <token-local-variable name="var-str-nwoContent"/>
    </arg-dn>
    <arg-dn>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="dirxml.auto.treename"/>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="hrfeed.inactive.container"/>
    </arg-dn>
    </do-move-src-object>
    thanks
    Adarsh Kumar

    Idmlearner,
    sorry, but you are still posting in the wrong forum. You should ask
    these questions in the Identity Manager forum
    Shaun Pond

  • How to move files from  one  system  to another in plsql

    Hi all,
    I want to move file from one system to another using plsql procedure .
    Kindly let me know what package i have to use for doing this .
    Thanks,
    P Prakash
    Edited by: prakash on Jul 27, 2011 2:20 AM
    Edited by: prakash on Jul 27, 2011 2:59 AM

    BluShadow wrote:
    That's ok if you want to diet. ;)Ooh look, the strange punctuation is back. Can it be true that the forum software has caught up with the '80s?
    I almost feel like connecting to the internet using a 9600 baud modem to celebrate.
    http://upload.wikimedia.org/wikipedia/commons/5/5d/TeleGuide-terminal.jpg
    Colon dash right bracket.
    (Old habits die hard)

  • How to move entry from one container to another

    Hi!
    We are using DBMS_LDAP package to attempt to move an entry from an LDAP container to another container. We have tried modrdn2_s (takes a session, the old dn, the new dn, and a PLS_INTEGER indicating whether or not to delete the old entry; or at least this is our interpretation of what the function does).
    Attempting to move an entry with this function gives the following error(s):
    ORA-31202:DBMS_LDAP:LDAP client/server error: Constraint violation.
    00002081:AtrErr: DSID--031D0809, #1:
    0: 00002081: DSID-031D0809, problem 1005 (CONSTRAINT_ATT_TYPE), data 0,
    Att d(description)
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_LDAP", line 1455
    ORA-06512: at "SYS.DBMS_LDAP", line 929
    ORA-06512: at "OURSCHEMA.OURPKG", line 606
    ORA-06512: at "OURSCHEMA.OURPKG", line 88
    ORA-06512: at line 45
    I can't look at the SYS.DBMS_LDAP code since that is encrypted.
    I am currently researching ORA-31202 and talking with my LDAP/AD administrator. However I'm still wondering if this is the function that I should use for this. Does anyone know of any examples for what I'm attempting to do?
    Marc

    I spoke to my Active Directory administrator, and he suggested that I try to pass a new DN as an attribute in the modifications array passed to the DBMS_LDAP.modify_s function:
    --- Start of Code Sample ---
    -- create the modifications array
    v_mod_array := DBMS_LDAP.create_mod_array(n);
    -- set other attributes here
    -- set the new distinguished name here
    vl_mod_values(i) := v_new_dn;
    DBMS_LDAP.populate_mod_array(l_mod_array, DBMS_LDAP.MOD_ADD, 'distinguishedName', l_mod_values);
    -- then call the modify function (the modifications array has all the other attributes plus the new dn)
    DBMS_LDAP.modify_s(session, dn, v_mod_array);
    --- End of Code Sample ---
    The above fails too with an ORA-31202 error (which my AD administrator has not solved yet). Still my question is if my approach to moving my entry from one container to another is correct, or if I should be trying some other method. BTW, the directory structure looks like this:
    +<Domain>
    +--<DC=myorg,DC=test>
    ----+--<OU=Team>
    --------+--<OU=Headquarters>
    --------+--<OU=Terminated>
    etc, etc.
    I want to move the entry from the OU=Headquarters container to the OU=Terminated container.
    Any help is dearly welcomed!
    Marc

  • How to move contacts from one account to another

    I have 2 exchange accounts configured in my iPhone, one Corp exchange account and one personal exchange account, both have Contacts sync enabled.
    I noticed somehow all of new created Contacts are under Corp account, these Contacts do not show up on my iPad / Mac which only have personal account.
    How can I move the selected Contacts from Corp account to personal account?
    How can I choose which account to use when I create a new Contact?
    Thanks

    I can answer your second question but I share your problem related to the first question.
    In answer to your second question:
    To make sure that new contacts go into the desired account:
    1.     Go to Settings
    2.     Select "Mail, Contacts, Calendars"
    3.     Scroll down to "Contacts"
    4.     Select the last item in the group, "Default Account"
    5.     A list of the accounts on your iPad will appear.  Select the account that you want to use for your new contacts.
    If you solve the problem of moving existing contacts from one account to another, I'd love to hear about it.

  • How to move form from one account to another

    I have bought a second account for another user so that his responses would be confidential.  How do I copy existing forms from one account to another.  Do not want to have to recreate them.  Thanks for your help..

    Hi,
    In order to move a form to different account, you can export the design file:- Open the document- Design- Export Design File
    Regards,
    Nakul

Maybe you are looking for

  • Rounding time field to nearest half hour

    Post Author: fiscyn CA Forum: Formula Is there a way to round a time field? For example,  if a time field is from 9:01 to 9:14  I want it to round back to 9:00;   9:15 to 9:29  or 9:31 to 9:44   I want either option to round to 9:30 and 9:45 to 9:59

  • Cant Find PTG Dir

    Hi: I've installed 9iAS latest version (1.0.2.2) and i can't find PTG directory on my 9iAS home (ISUITES)! What do I need to start a WAP SERVER and to put it running... I Cant find any documentation on CD's too... HELP Appreciated :) Ricardo

  • Application Express will not install

    OK - I have been working on this for days now. I downloaded Oracle Database 11g and installed the "standard" version. All seems to be working OK and I can connect to the DB using SYS as SYSDBA. Next, downloaded Apex 3.2 and unzipped it into a separat

  • SAP OLE to MS Word

    I have used this coding for sap OLE to Ms word... but if i run this program... MS Word just opens but i am not able to view any of the statements... that is new documents are not openings and the statements  are not reflecting... Any one give me a ti

  • Subinventory transfer

    Hi Gurus, I am using wsh_deliveries_pub.delivery_action api to backorder.But quantiy from staging sub inventory is not going back to FGI subinvenotory. Do i need to call a separate api for this.Or it needs to be done manually.If api is avalable could