Need Archive file transfer script

Hi,
I am creating a manual standby database (Not DataGuard) in oracle 10g using Unix OS.I need to transfer archive files from primary to standby database on hourly basis.
For this purpose I need script that can help me to transfer archive files.
Your usual cooperation will be highly appreciated.

I am creating a manual standby database (Not DataGuard) in oracle 10g using Unix OS.I need to transfer archive files from primary to standby database on hourly basis.
For this purpose I need script that can help me to transfer archive files.
Your usual cooperation will be highly appreciated.In case of manual standby, the more simple will be not to transfer files to standby site, but make them available by nfs. So, there will be no need to check what logs were sent and applied. Recovery script on standby will just periodically perform recovery from this destination. Script will always ends with message like this that can be ignored:
ORA-00308: cannot open archived log '.......'
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory

Similar Messages

  • Firewire Cable Needed For File transfer Between Old iMac & New iMac.

    I have an iMac G4 (Flat Panel) - just got the the iMac 21.5! Need to transfer files between old & new iMac.
    Is the 6 pin to 6 pin the correct cable I'm going to need to get my files transfered ???

    No. The new iMacs have FireWire 800, which is 9-pin. Older Macs have FireWire 400, which is 6-pin. You need something like this.
    http://eshop.macsales.com/item/Newer%20Technology/1394B96036/

  • File Transfer script from Linux to Window on same Network...

    Please help me out....I'm generating a backup file .dmp on Linux machine via DBMS_SCHEDULER. Now i want to copy .dmp file to another machine like WINDOWS on same Network.
    Please help me.....Thank you.

    This is a duplicate to their original post in the SQL-PL/SQL forum space.
    https://community.oracle.com/thread/3520448
    They've already been pointed toward documents that guide how to do this.

  • File Transfer Speeds

    I know this topic has already been covered in some of the posts but it was replied that the latest version i.e., 6.20 would solve the bug. Which obviously it failed to do hence this post.
    The latest version of skype 6.20 still gives a maximum speed of upto 4Mbps even if the clients are on Gigabit LAN connection. Version 6.18 used to stuck at 1.5 Mbps. Earlier versions (6.9) used to provide full LAN speed via skype.
    Secondly, earlier versions of Skype didn't pass on the sounds of programs running on one of the clients but as I tested today, version 6.20 passes client sounds (and I'm not talking about speech) like music etc etc.
    Is this really how upgrades are supposed to behave? Or is it poor quality assurance testing before making release public?
    Disappointments since MS acquired this brilliant service.

    Been having issues with file transfers for a while, didn't find out til I went to post here that Skype is now up to 6.21 (I was on 6.20.x but 'checking for updates' didn't find anything) so I uninstalled, installed fresh, and tried again. Still no good.
    Not sure what the aforementioned previous discussions covered, but when sending a file my local connection gets saturated on the upload side. So my connection properties dialog shows my connection uploading faster than my internet can (somewhere around 800KBps, while my net upload is ~100), with everything else net related predictably slowing down. And the file transfer itself slows to a crawl.
    Uninstalled the latest/current version of Skype, back to 6.16.0.105 as I read in some other advice, and am currently sending a file at my normal speed without any issue at all.
    So if this was supposed to be fixed it most certainly isn't.
    Note this isn't an anti-MS rant - I didn't install Skype until MSN/Windows messenger no longer worked. For my needs (IM, file transfer) messenger worked perfectly. Skype has been ok until recently with this issue.

  • Need to Pass filename for archived file to FTP adapter using SynchRead

    Hi
    I am archiving the source file which i am reading using an FTP adapter, Operation- SynchRead.
    In my case as the source filename is dynamic( abc_<timestamp>.xml) hence before the SynchRead, I am using a FTP List adapter to get the filename.
    Currently,the archived file is getting name in pattern: encryptedToken_yyyymmdd_hhmmss.(e.g. wQ2c3w7Cj7Y6irWnRKqEu77_jD7kLtj6Uc0QCZIyjC4=_20121122_012453_0305)
    I need to pass the sourceFilename(which i am getting from FTPList adapter) for the archived file also.
    Thanks in advance for the help!
    Regards,
    Achal

    Hi Neeraj,
    While trying the above alternative, i am facing an issue when my source file is a .csv file. The file is getting recreated with the original filename and file content but without header.
    As per the requirement i need the original file to be recreated. The header of .csv file has the field names.
    Please let me know how should i configure my FTP adapter to read the header of the .csv file as well.
    Thanks,
    Achal

  • Need Help Creating A Script For Labeling Finder Files from Indesign

    Trying to figure out a way to have a script run in InDesign CS4 that will label a text file RED after it's been imported into InDesign.
    We import numerous text files into an InDesign template. Since there are several text files in the same folder, we need to somehow "mark off" that we've imported that file and move to the next one to import. I have created an Automator "service" with a keyboard shortcut to label the file Red in the finder but it would be great if we could have this happen automatically after we import into InDesign.
    If we import the wrong text file by accident and it gets missed in proofing, it costs us a lot of money with the printer.
    Thanks for any ideas.
    Jim

    You know, these guys are absolutely right in their assessment that this is a good place for event listeners. You would need three scripts though.
    Something like...
    Label Placed Files Red.scpt
    --Put this in a folder called IDScripts in your Documents folder
    main(evt)
    on main(myEvent)
    tell application "Adobe InDesign CS4"
    set placedFilePath to full name of myEvent
    set placedFilePath to placedFilePath as alias
    end tell
    tell application "Finder"
    --This turns the file color red
    set label index of placedFilePath to 2
    end tell
    end main
    And these two are in your InDesign scripts folder...
    Start Placed File Finder Labelling.scpt
    --Installs the afterImport event listener for the Label Placed Files Red script.
    tell application "Adobe InDesign CS4"
    set myHandler to path to documents folder
    set myScriptName to "Label Placed Files Red.scpt"
    set myHandler to "" & myHandler & "IDScripts:" & myScriptName
    try
    set myHandler to myHandler as alias
    make event listener with properties {event type:"afterImport", handler:myHandler, captures:true}
    display dialog "Placed File Labelling: ON" buttons "OK" default button 1
    on error
    display dialog "ERROR: Couldn't start handler!" & return & return & "Make sure the \"" & myScriptName & "\" script in a folder called \"IDScripts\" inside your Documents folder and try again" buttons "OK" default button 1
    end try
    end tell
    Stop Placed File Finder Labelling.scpt
    --Removes the afterImport event listener for the Label Placed Files Red script.
    tell application "Adobe InDesign CS4"
    set myHandler to path to documents folder
    set myScriptName to "Label Placed Files Red.scpt"
    set myHandler to "" & myHandler & "IDScripts:" & myScriptName
    set myHandler to myHandler as alias
    set myResult to remove event listener event type "afterImport" handler myHandler with captures
    if (myResult is false) then
    display dialog "ERROR: Couldn't remove handler! Are you sure it is active?" & return & return & "If so, please quit and relaunch InDesign to get rid of it." buttons "OK" default button 1
    else
    display dialog "Placed File Labelling: OFF" buttons "OK" default button 1
    end if
    end tell

  • Trying to install photoshop elements 12    File Archive part of adobe premiere 12 is missing.  You need all files in the same folder

    rying to install photoshop elements 12    File Archive part of adobe premiere 12 is missing.  You need all files in the same folder

    It is actually a link from Tech Soup to a special link on Adobe.   But no
    chance to put in my serial number – get that error message after I download
    the exe.    Tried to copy page – I would select the correct file
    Welcome TechSoup Customer of TechSoup Global!
    Product Download
    Adobe Photoshop Elements and Premiere Elements 12.0 for Windows (English)
    *      <javascript:void(0)> Files
    <javascript:itralib_popup('dload_serialNum?item_key=5001111&plne=101791&cert
    Num=135338281','info','560','400')> PAC, Serial Numbers & Credential Files
    <https://adobe.subscribenet.com/control/adbe/certdlog?plne=101791&item_key=5
    001111> Download Log
    <https://adobe.subscribenet.com/control/adbe/certnotes?plne=101791&item_key=
    5001111> Notes
    *      <javascript:itralib_popup('downloadpagehelp','EULA','495','600')>
    Download Help
    Adobe recommends you use the Akamai Download Manager for large files. You
    can enable the download manager by clicking on the Download Preferences link
    to the left. If you are using Microsoft Internet Explorer as your browser,
    then the HTTP option will not work for files larger than 4GB due to the
    browser’s download size limit.
    If there are multiple files for your products, please be sure to download
    ALL files prior to attempting to install.
    The software you are about to download is subject to export control laws and
    regulations. By downloading this software, you agree that you will not
    knowingly, without prior written authorization from the competent government
    authorities, export or reexport - directly or indirectly - any software
    downloaded from this website to any prohibited destination, end-user, or
    end-use.
    Note: All Adobe products require a serial number for installation. If you
    are having difficulty with the serial number, please
    <https://adobe.subscribenet.com/control/adbe/manualsupport> contact us.
    *      6 Files
    Top of Form
    Select All
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_DESCRIPTION&ascending=true> File Description
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_FILE_SIZE&ascending=true> File Size
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111&orderB
    y=ORDER_BY_FILE_NAME&ascending=true> File Name
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Photoshop Elements 12.0 for Windows 32 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PhotoshopElements_12_WWEFDJ.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Photoshop Elements 12.0 for Windows 32 bit Installer Package (English,
    German, French, Japanese)
    1.1 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PhotoshopElements_12_WWEFDJ.7z
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 32 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win32.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 32 bit Installer Package (English,
    German, French, Japanese)
    1.1 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win32.7z
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 64 bit Installer (English, German,
    French, Japanese)
    1.5 MB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win64.exe
    The download limit for this file has been reached
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    Expand All / Collapse All
    Adobe Premiere Elements 12.0 for Windows 64 bit Installer Package (English,
    German, French, Japanese)
    1.2 GB
    <https://adobe.subscribenet.com/control/adbe/download?element=5001111>
    PremiereElements_12_WWEFDJ_win64.7z
    Bottom of Form

  • Hello i need a help about script to export translatable text strings from ai files and import them back

    Hello i need a help about script to export translatable text strings from ai files and import them back after editing, thanks in advance

    Lanny -
    Thank you for taking the time to help with this problem. Can I just say however that as someone who has posted a first comment here and quite clearly never used a forum like this before, your comment unfortunately comes across as very excluding. It makes me feel there are a set of unwritten rules that I should know, and that I don't know them shows that the forum is not for me. In short, it's exactly the kind of response that stops people like me using forums like this.
    I'm sure it's not intended to be received like this and I am sure that the way you have responded is quite normal in the rules of a forum like this. However, it is not normal for those of us who aren't familiar with forums and who only encounter them when they have a genuine problem. This is why I hope it is helpful to respond in full.
    The reason I posted here is as follows. I was directed here by the apple support website. The original comment seemed to be the only one I could find which referred to my issue. As there is no obvious guidance on how to post on a forum like this it seemed perfectly reasonable to try and join in a conversation which might solve more than one problem at once.
    Bee's reply however is both helpful and warm. This could in fact be a template for how new members should be welcomed and inducted into the rules of the forum in a friendly and inclusive way. Thank you very much indeed Bee!

  • Web Archive File.... Help needed!

    Hey everyone, I just rcently bought a powerbook g4 for school. One of my teacher puts his notes on the internet to view. I went to the webpage and clicked on the link for the notes. A page loaded up saying that my web browser doesn't support archive files. That I need a broweser to do so, such as internet explorer. I tried downloading internet explorer but it says it's no longer avalible for apples. I called apple support and they said to try fire fox but the same error came up. I went on internet explorer on an IBM to see what the page looked like and it seems to be in a powerpoint format... I do have powerpoint downloaded, so I don't think that could be a case of the problem. What should I do? Doesnt anyone know of a browser I could use to open the archives or of a way to downloaded? Any help would be great, thanks guys!!!!.
    Seth

    but you indicated that your teacher posted a page for you to get stuff... "i clicked the link" ..... so... how about downloading the file that the link goes to? or is it not a link rather a webpage?
    I guess I don't know what problem you are seeing. Can you take a snapshot of the error/pages?
    Beavis2084

  • HT4796 Need Help with Migration file transfer

    My pc connection to my mac during the file transfer got lost,
    so I reestiblish the connection when I woke up from bed
    now it seem that the mac is frozen on one section of the transfer and
    pc attempting to connect is still runing for hours now and hasn't connected
    I need help

    Have you tried restarting and then attempting to connect?

  • Cs6 pro prem install from dload exe and 7z on usb both in same folder. when run exe it gives error archive file needed

    new install cs6 production premium  .downloaded exe to a usb thet the vendor provided with the 7z file cos i dont have lots of data.  .With both in the same folder on the usb running exe rsults in error message asking for an archive file.  There are only 2 files in the download . what does it want?

    same error message from desktop looking for archive file
    files
    ProductionPremium CS6.7z  6,109,190  KB
    ProductionPremium_CS6_LS7      1,020  KB
    running win 8.1 on ssd and z97 mobo 4790 cpu gtx780

  • File transfer rate is very bad on my new W520. Help needed....

    Hello,
    I have a usb 2.0 hi speed flash drive which has transfer rates of 15Mb/s. But When I am trying to copy a movie (under 3 gb) from my W520 to the flash drive the speeds that I observe is 6Mb/s which is very slow. Initially, I though I have an issue with the flash drive but when I used my 3 year old dual core xps laptop to copy a file, I observed the speed of 15 Mb/s. If not  high speed atleast I am expecting to see 15Mb/s with my W520. Really wierd!!! 
    BTW... I am running my W520 at "Maximum Performance" power profile.  And I see my clock speed always at less than 1 ghz while copying the file but when i do other stuff i see my clock speed hitting 3.2 ghz....
    Any thoughts on whats going on???
    My system is Thinkpad w520 2710 with 8 gb of ram....
    Thanks
    Robustm

    Hi robustm
    From what I know, the problem lies with Windows 7 (throttling)
    How about copying to USB drives? the speed should be around 30+ - 60MB, depending on the file type also.
    1. You could also try updating Intel Chipset driver
    http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProdId=816&DwnldID=20019&ProductFamily=Chipse...
    et+Software&ProductProduct=Intel%C2%AE+Chipset+Software+Installation+Utility&lang=eng
    2. You could try using SpeedGuide TCP Optimizer, which resolves Network Throttling and Slow file transfer problems for some. (Set as Optimal)
    http://www.speedguide.net/downloads.php
    3. You could go to Computer Management (compmgmt.msc), Device Manager, Disk drives, double-click your USB device, policies, set as Performance.
    * Note: This may require you to Safety Remove the device, due to caching for performance.
    Hope it helps
    Happy Holiday
    Peter
    ThinkPad: W520 (4284-A99)
    =============================================
    Does someone’s post help you? Give them kudos as a reward, as they will do better to improve 
    Mark it as solved if the solution works for you, so it could be reference for others in the future 
    Dolby Home Theater v4 (Essential/IdeaPad/ThinkPad)
    http://forums.lenovo.com/t5/General-Discussion/Dolby-Home-Theater-v4-for-most-Lenovo-Laptops/td-p/62...

  • PI 7.30: OS command on AIX to archive files on FTP does not work

    Dear experts,
    Our PI system runs on an AIX server.
    I have a scenario PI --> FTP. I also need to archive files in a seperate folder on the FTP.
    I have been following thread:
    Read or Write File On FTP server based on another file existence.
    After file processing in the Audit Log in RWB I among others I get the information:
    Execute OS command "sh /usr/sap/SYS/flex/batches/archive.sh file.zip /ftpfolder/file.zip"
    It seems it is working properly.
    The file itself gets processed to the "ftpfolder". But in the archive folder I do not get a copy of that file.
    My script looks like this:
    #!/bin/ksh
    ftp -n -v <<%%EOF%%
    open ftpserver
    user myuser mypassword
    prompt
    asci
    cd archivefolder
    mput $2
    bye
    %%EOF%%
    In the file receiver I have "Run OS command after message processing":
    "sh /usr/sap/SYS/flex/batches/archive.sh %f %F"
    %F stands for the complete path, right? So if I say "mput $2" in my script it should use %F.
    Could you please help me out here. I really don't know what the problem could be.
    Thank you and best regards,
    Peter

    hi Peter,
    >>>I have a scenario PI --> FTP
    but FTP does not support OS command as far as I remember
    correction:
    "Note that for the File Adapter transport protocol "FTP", the operating system command is NOT executed on the FTP server, but on the server hosting the Adapter Engine."
    please check for details:
    Note 841704 - XI File & JDBC Adapter: Operating system command
    Regards,
    Michal Krawczyk
    Edited by: Michal_Krawczyk_PIXI on Feb 3, 2012 3:38 PM

  • JAVA file transfer

    Hello,
    I am currently working on an application that is to create a multipart response to the client.
    The first part of this response is to send an xml descriptor file, and the second part of this response is to send a content object (audio or image).
    The xml descriptor file needs to be generated dynamically according to the http headers received from the client and then sent to the client. How should I go about doing this? Just write everything I would in the xml file in a String, convert the String into bytes [] and write it to the response output stream? or create an actual temporary file on the hard disk, and then send that file to the output stream? I am new to JAVA so, really do not know the best approach to take.
    Note: I am prohibited due to some company policies to generate XML files using JAVAX or similar technologies.
    Any help would be appreciated.
    Thanks,
    Saurabh

    so r u saying that i can implement File transfer using only client APIs?
    but cudnt find it.. so plz explain a little. http://www.catb.org/~esr/faqs/smart-questions.html
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Thyrsus Enterprises
    Copyright © 2001,2006 Eric S. Raymond, Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal — in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse “its” with “it's”, “loose” with “lose”, or “discrete” with “discreet”. Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes. Worse: writing like a l33t script kiddie hax0r is the absolute kiss of death and guarantees you will receive nothing but stony silence (or, at best, a heaping helping of scorn and sarcasm) in return.

  • Proxy Server in File Transfer System

    Hi, I need to write out a file transfer system through a proxy server for my project
    All the while i was writing a file transfer system directly from client to server without any security issue
    Anyway, the scope is given as below, and i know it needs the JSSE package to come out a SSLSocket and SSLServerSocket.
    The question is...
    1. can i use NIO with JSSE included?
    2. how to come out a java proxy server? is there any tutorial i can read through?
    The scope is given as below
    1) Proxy server
    * perform tunning and keep the linking between file transfer host and client
    * authenticate the file transfer client using CA certificate to establish SSL connection
    * Once authorised, need to establish another SSL connection to host engine
    2) File Transfer Manager at Client
    * To initiate SSL connection to proxy server
    * To open two type of connection: command and file connection
    * The command connection is always keep alive
    * For the file connection, the system required to re-open another connection after send file to host
    * Auto-reconnect to server when the connection is down
    * Re-handshake the SSL connection when the channel is inactive for sometime
    3) File Transfer Manager at host
    * To authenticate the proxy server and authorise the client before establish the connection
    * Manage the connection
    * request to client to open new connection (by sending command) when there is no file connection available to send file to client
    * Request for re-handshake the SSL connection when the channel is inactive for sometime

    Hi,
    It is a new feature of SMB3 named SMB MultiChannel, which helps copy files through multiple NICs. 
    Detailed information please see:
    http://blogs.technet.com/b/josebda/archive/2012/05/13/the-basics-of-smb-multichannel-a-feature-of-windows-server-2012-and-smb-3-0.aspx
    As mentioned you can disable or enable it with following steps:
    2.2. Disabling
    SMB Multichannel is enabled by default and there is typically no need to disable it. 
    However, if you want to disable SMB Multichannel (for testing purposes, for instance), you can use the following PowerShell cmdlets:
    On the SMB server side:
    Set-SmbServerConfiguration -EnableMultiChannel $false
    On the SMB client side:
    Set-SmbClientConfiguration -EnableMultiChannel $false
    Note: Disabling the feature on either the client or the server prevent the systems from using it.
    2.3. Re-enabling
    You can re-enable SMB Multichannel after you disabled it by using:
    On the SMB server side:
    Set-SmbServerConfiguration -EnableMultiChannel $true
    On the SMB client side:
    Set-SmbClientConfiguration -EnableMultiChannel $true
    Note: You need to enable the feature on both the client or the server to start using it again.
    If you have any feedback on our support, please send to [email protected]

Maybe you are looking for

  • IPad Air iOS 7 applications missing - calc, compass, voice memo, passbook

    Does the iPad Air with iOS7 come with the following applications that are on the iPhone 5s? calc compass voice memo passbook

  • IMac high pitch sound (4th iMac in a week). Any improvements?

    Hello, I know there is a lot of forum posts on the internet about this, as I've spent about two days reading them (primarily from my iPhone as my screen sound drives me up the wall). As some people have experienced, this is a result of changing the b

  • Import Error in 9.0.2.3

    I'm trying to do a full import in 9.0.2.3 but about five minutes into the import i get the following error: IMP-00003: ORACLE error 3113 encountered ORA-03113: end-of-file on communication channel IMP-00003: ORACLE error 3114 encountered ORA-03114: n

  • PDF Report - Fonts not displayed

    Some of the PDF reports which display correctly, after being edited, don't display the text in the output PDF. This issue is happening when run as a concurrent request in Oracle Apps 11i, but in local machine, the PDF report works fine. This is happe

  • Creating PDF bookmarks from Outlook 2007

    Hi, I am using Outlook 2007 SP1 and Acrobat 8.1.3 Professional and I want to have bookmarks in the PDF that is created by hitting the Create Adobe PDF from Folders button in Outlook. I used to have this feature when I was using Acrobat 7 with Outlook