Copy commands in different platforms

Hi,
How do we copy the file or directories from AIX to HP - UX, LINUX, WINDOWS and vice versa
How do we copy the file or directories from HP - UX to LINUX, WINDOWS and vice versa
How do we copy the file or directories from Linux to Windows HP - UX and vice versa.
Thanks.

863784 wrote:
does it works for all the platforms..?It works for me.
I regularly transfer file between *NIX & Windows using scp                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • DB Copy / to a different platform on 9i R2

    Hi,
    is it possible make a database copy(using unix cp) on 9i R2:
    from platform: HP-UX pa-risc 64 bit // Big Endian
    to AIX5L 64bit // Big Endian
    or this is only possible using imp / exp utilities.
    Thank you,
    D.

    or this is only possible using imp / exp utilities.It may be possible to copy the database through different platform without imp/exp.
    Steps:
    1. install oracle10g software in HP-UX
    2. upgrade your original database to 10g
    3. install oracle 10g software in AIX5L
    4. use TTS to clone your databases in 10g version.
    5. downgrade to 9iR2 if you want.
    HTH

  • Copy Command in Pl/Sql block

    Can I use Copy command in Pl/Sql.For example :-
    Declare
    cursor c1 is select table_name from all_tables
    where owner = 'LSP' and rownum = 1;
    v1 varchar2(2000);
    Begin
    for c2 in c1 loop
    v1:='copy from lsp/lsp123479@dvlaq to scott/[email protected] create '|| c2.table_name ||' using select * from '||c2.table_name;
    execute immediate v1;
    end loop;
    end;
    Its not running properly giving an error as invalid Sql statement .
    Is it bcoz Copy command cannot be used in a Pl/Sql Block.

    Is there any other way to move the Table & data to another Data Base .Database link is the obvious one. And the SQL statement would look something like this (on the target database):
    SQL> create table FOO nologging as select * from FOO@sourcedb;
    However, the first question I always ask if why? What one may think is the solution to a problem is not always the best solution. So one need to identify the problem first, and then see what solutions there are and which one is the best fit.
    Other options are replication (using materialised views for example), Data Pump (available with 10G) - even could be Data Guard, a standby database, or a Real Application Cluster... depending on just what the problem and actual requirements are.
    Also important to note that SQL*Plus has its own set of commands. Do not confuse these commands (like EXEC, COPY, CONNECT, HOST etc) with the SQL and PL/SQL Languages. Not only are they executed by different software products, SQL*Plus commands are executed on the client and SQL (and PL/SQL) runs inside the Oracle database instance.

  • Copy command in oracle

    hi how i can do this following in copy command-------------
    t1 t2
    id1 val1 id1 val1
    copy from user1/pass1@db1 to user2/pass2@db2 insert t2 using select *from t1
    now in my case i have some data in t2 in such a way that id1(tab2) and id1(tab1) are same but their value(here val1(tab2) and val1(tab1)) are different.
    as id1 is primary key in tab2 i cannot insert this matched values.
    now i want to do this checking in the copy command where tab1.id1<>tab2.id1

    hi
    Create DB link like
    CREATE DATABASE LINK local
    CONNECT TO hr IDENTIFIED BY hr
    USING 'local';
    Try to access or insert the rows in the remote table by using the following command
    insert into tab1 SELECT * FROM tab1@local where pkid not in ( select pkid from tab1);
    Regards
    Singh

  • [svn:bz-trunk] 21277: Added ds-console source to package-oem and removed copy command for datavisualization .swc which doesn't exist in the specified location.

    Revision: 21277
    Revision: 21277
    Author:   [email protected]
    Date:     2011-05-18 11:35:28 -0700 (Wed, 18 May 2011)
    Log Message:
    Added ds-console source to package-oem and removed copy command for datavisualization.swc which doesn't exist in the specified location. I do not find it in the most recent package-oem.zip neither
    Modified Paths:
        blazeds/trunk/build.xml

    Gusar wrote:No, it's not. I have actually seen cases where software rendering gave a higher glxgears score than hardware rendering (and no, it wasn't about vsync). Of course, with *actual* apps on the same machine, software rendering sucked compared to hardware rendering.
    Please do not jump to conclusions and make assumptions here like 'when will people finally get it??'.  I never said it was a benchmark.  I have also seen many examples of where it's results do not go with conventional performance.  I have a Radeon 9000 that goes faster on glxgears than a Geforce FX 5600 running Nouveau.  Which is the faster card?  The FX by miles.  It is not a benchmark as it can not be compared between configurations.  What I know is that on this individual system, from prior experience over many years when 3D acceleration is working glxgears gets between 300 and 400 fps.  When it is not working it gets less than 10.  That is a fact but does not mean it is benchmarkable.  Yes, a Quake 3 timedemo (I have these numbers too and they very much correlate to glxgears performance for this system given just how slow it is) would be a benchmark but when it runs less than 0.1fps and even the 2D rendering means that navigating the menu is impossible, there just isn't the time to find out.  Hence if playing around with drivers on this system I would use glxgears to check that 3D acceleration is working but not to benchmark.  Glxinfo does not give you all this evidence.
    But to clarify, I wouldn't use glxgears as a benchmark, benchmarking is different and I do a lot of that too.

  • Copy Command across dblink

    Hi, i am wanting to copy a few columns from a table in db1 into a new table in db2. I can get this to work using the copy command in sql, but would like to recreate this in pl/sql.
    can the execute immediate create over the dblink?

    it all depends on the amount of data you're trying move across two differen servers.
    when you say data, what's it? is it a table or schema?
    COPY - works fine.But, the data being transferred over network. If you have very good band width, you will be fine.
    SQLLDR - To do this, You have to unload the first and load it into different servers.
    You can even try export(exp) and Import(imp) or datapump export(expdp) and datapump import(impdp)

  • Output from same script on two different platforms produce different outputs.

    I'm running a command prompt script on two different platforms (Windows 7 desktop and a Microsoft Server 2008 R2 Enterprise platform) and the output the script produces is different on each platform.
     Specifically; the script is
           For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c-%%a-%%b)
           For /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set mytime=%%a%%b)
           echo %mydate%>> log.txt
           echo %mytime%>> log.txt
    and the output from the Windows 7 desktop is:
           2014-07-31
           0249 PM
    While the output from the 2008 server is:
           ECHO is on.
           0249 PM

    Hi Dave,
    There's some very good learning resources here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Also, there's a script repository full of examples you can learn from and tweak to meet your needs here:
    http://gallery.technet.microsoft.com/scriptcenter
    As an additional suggestion, I'd highly recommend upgrading PowerShell on Win7 and WS2008R2 to v4. v2 was okay, but v4 makes life much easier (make sure you read the system requirements first though, there's still a few incompatibilities):
    http://www.microsoft.com/en-us/download/details.aspx?id=40855
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • COPY command replacement

    Given that the COPY command is now deprecated (and clearly documented in 10gR2 - sqlplus user's guide that it will be obsoleted in future releases of SQL*Plus, will there be any replacement command in sqlplus?
    We were planning to use it to implement for our simulation model - but given it is deprecated and does not support new data types, we are forced to look for alternatives. What are the alternatives for a local area network or copying data between two oracle accounts using different tablespaces on the same db server?
    Pro*C/Direct Path Load,
    expdp/impdp,
    copy over dblink and then recreate the constraints and indexes,
    which one will be faster, should be used based on the following?
    What we want to do is to checkpoint (save) historical game data, and if required/necessary, be able to bring back the data from a saved game checkpoint X, where X can be any number (checkpoint 4 or 20, etc). We also want to hold onto the saved game checkpoint files so that we can take it to another place for after action review purposes.
    Any input is appreciated.
    regards.

    copying data between two oracle accounts using different tablespaces on the same db server?For this I would grant SELECT on the table to be copied to the target Oracle account and use CREATE TABLE ... AS SELECT ... and recreate constraints and indexes.

  • SQL*Plus COPY command does not work

    SQL*Plus COPY command does not work in SQL Developer. I am using SQL Developer 1.5.1 on Windows XP.
    copy from <source_db_connection> to <target_db_connection> create <target_tab_name> using select * from <source_tab_name>
    Does it work on different versions of SQL Developer ?
    Anyone had any success in trying COPY command in SQL Developer?
    Thanks in advance.

    While it hasn't been updated for v1.5, this page lists the supported SQL*Plus commands. COPY is explicitly listed as not supported.
    theFurryOne

  • Weekly copying record to different db

    Hi All,
    Does anyone know of a more efficient way to copy all records from one db to a different db without dblink abilities?
    SQLPLUS Copy command would not work in this instance because they are on different domains.
    Exports and Imports would not work because the tablespace sizes are different.
    Will SqlLoader be my only solution?
    Any ideas is appreciated.
    Thanks!
    John

    You can create the ODBC link to both the database in ms-access and then you can copy the data fron one table to another provided that both the tables in two DB's are identical.
    post your reply if it works.
    null

  • Oracle Copy command

    Hi,
    I was hoping someone might be able to help me out with a question/issue I have when using the copy command in SQLPlus. The scenario entails moving specific columns from a table in DB A to a new table in DB B (DB B is on a completely different server). When I use the copy from to create select command I am finding that the column sizes are being increased by a factor of 4. So in my source table I have a column which is VARCHAR2(15 CHAR), yet after the copy command is complete the target table has the same column as VARCHAR2(60 CHAR).
    Does anyone know how I can get copy to keep the column sizes the same? i.e. VARCHAR2(15 CHAR) in source, VARCHAR2(15 CHAR) at target.
    I have tried pre-creating the tables which the correct sizes and then using insert in the copy command, however it errors out when it thinks the size has been exceeded.
    Thanks in advance

    Hope this pastes ok:
    Target System:
    desc s_addr_per
    Name Null Type
    ROW_ID NOT NULL VARCHAR2(60 CHAR)
    CREATED NOT NULL DATE
    CREATED_BY NOT NULL VARCHAR2(60 CHAR)
    LAST_UPD NOT NULL DATE
    Source System:
    desc siebel.s_addr_per
    Name Null Type
    ROW_ID NOT NULL VARCHAR2(15 CHAR)
    CREATED NOT NULL DATE
    CREATED_BY NOT NULL VARCHAR2(15 CHAR)
    LAST_UPD NOT NULL DATE
    Note : this is a only the first couple of columns in the table

  • Converting datafile into different platform(linux AIX)

    I m converting two different datafiles using RMAN CONVERT command.
    while i was tried to convert them i got different error message.
    below is the list of errors.
    1)
    the error number were
    RMAN-00571
    RMAN-00569
    RMAN-00571
    RMAN-03002- failure of backup command
    RMAN-06575- Platform id found in datafile ' ' header isnot valid platform id.
    plz give me solution to it.
    2)
    the error number were
    RMAN-00571
    RMAN-00569
    RMAN-00571
    RMAN-03009- failure of backup command on STRING channel at TIME.....
    ORA-00600- internal error code argument[ktu_format_nr_1]
    give me approrpriate solution.

    header is not valid platform id.Make sure you meet the requirements for Convert Datafile:
    http://docs.oracle.com/cd/E11882_01/backup.112/e10643/rcmsynta012.htm#BGBBAIAJ
    Internal errors (ORA-00600), contact Oracle support.

  • Copy Command in ABAP report

    HI Gurus,
    I have a ABAP report - basic list, with lot of batch data on it. based on the report they will copy the batch numbers and paste in standard transactions.
    Users complaining to do a Ctrl + Y and then Ctrl + C then Ctrl + V to paste the batch numbers.
    Is there anything we can do programatically using hot sopt on batch numbers so we get the selected BATCH and execute copy command programatically when they click on BATCH number on basic list.
    All they need to do is Ctrl + V on standard transactions.
    Is there anyway to achieve this?
    Thanks Giri

    Giri - you would probably get more results if you mark this as a question. That way you can assign po1nts to helpful answers.
    In any event why don't you just do a CALL TRANSACTION when the user double clicks on a line?
    Rob

  • Copy command not working for Search Results

    Hello,
    We have a Search Form that triggers a  TREX URL search.  We also add a custom Layout Set on the search URL.  (see URL below)
    <b>URL Search:</b>
    http:
    <server name> &ConfigFileName=Navigation.xml&layoutSetMode=exclusive&ResourceListType=com.sapportals.wcm.SearchResultList&SearchType=ctrlpers&QueryString=*&rndLayoutSet=CustomLayoutSet&SelectedMatchesPerPage=15&SearchVisible=false
    In the custom Layout Set, we've made our own UI command group to include the following commands:  Search_from_here, details, copy, move etc…
    The problem is that whenever we click on the 'Copy'  or 'Move' command of a resource, we get the following error message:
    =====================================
    Item not found       
    The item you are attempting to access is not available. Check that the name or link is correct. You might also check whether the associated repository is currently accessible.     
    ======================================
    The error message in the KM log files simply states "ERROR: RID not found".
    Would anyone know how to fix this issue!  I've tried many layout sets, but the copy command always gives me the same error message!
    Any help or suggestions on this would be much appreciated...
    Thanks,
    Harman

    Hi Harman,
    yes, this is a known issue.
    It's fixed with NW04 SPS 13.
    Regards Matthias Röbig-Landau

  • Copy command in Sqlplus

    I am using 8.1.6 and 8.1.7, but the copy command does not seem to work on either cases, the sqlplus just crash, did you guys have the similar problem? Is it a bug in oracle or there is some parameter I need to set up correctly?
    Your help is highly appreciated.

    it works i tried
    null

Maybe you are looking for

  • Dvd from tapes

    What is the easiest way to make a dvd from vhs or dv tapes?

  • Error while executting report.

    Hi, We are getting this error Abort System error in program CL_RSDM_READ_MASTER_DATA and form_sidval_direct_ while execution the report for the year 2010. Retail Performance Day is restricted with 1 month period.And its throwing above mentioned error

  • ADF FACES: process scope

    Is it possible to nest process scopes? I'm trying to implement a work pattern where a user will typically follow a chain of detail pages and then return back to an original page. This pattern needs to be available from pages within the each detail pa

  • OCR missing on HP 8610

    Hi, Officejet 8610 won't let me scan without OCR software - which I'm not told how to get.  I re-installed the pilot driver, but nothing new. Running Mac OS X 10.9.  Perfectly works on my other computer (Mas OSX 10.8). Please any help? Thanks in adva

  • Exe installer for 32 bit windows

    hi all, i've made an exe installer with labview 8.6 in a computer with windows 7 (64bit) When i try to install it in a computer with windows xp 32 bit, i can't do it i have this message: (attached) How can i do to make it work? Attachments: error ins