Transfer files using FTP from one r/3 server to another on windows platform

Hi ,
I am trying to transfer a text file from one r/3 server to another
this should be done using ftp.
I am working on widows OS & i have tried all the RSFTP* pgm's none satisfy my req. please tell proper method to do so or if any pgm please tell properly.
Regards,
Prateek Kumar

If you haven't figured the migration out already, you may want to check out this thread:
http://discussions.info.apple.com/thread.jspa?threadID=2205892
It looks like the path to take from everything I'm seeing, but if you've found a friendlier solution I'd be happy to give it a shot!

Similar Messages

  • Move WIKI data from one Mountain Lion Server to another

    Hi.
    I followed the instruction here:
    http://support.apple.com/kb/HT5585
    Under Copying all wikis from one OS X server to another OS X server, I am not even able to execute:
    sudo pg_dump --format=c --compress=9 --blobs --username=collab --file=/tmp/collab.pgdump collab
    It gives this error:
    pg_dump: [archiver (db)] connection to database "collab" failed: FATAL:  role "collab" does not exist
    Any idea?
    I just tested it on the productive server as well as a brand new install. Same outcome.
    which then I moved the: /Library/Server/Wiki/FileData over but even stop/start, restart, wiki server is running but not able to load content, it's like it's been wiped clean.
    matthew

    try it and RATE correct answers
    Hello Matthew
    You're looking in the wrong spot
    First things first - make yourself default sudo with sudo -s then you can forget prefixing it all the time.
    If you just use pg_dump then it'll take the command from the /var-Directory - that's the wrong version
    You have to specify the path for the Socket where the PSQL-Database for the wiki really is located by using the -h-option - it's not the default
    that's why you get the error that role collab does not exist since you're connecting to a database in place where the role collab truy isn't part of it.
    So - if you'd like to export the wiki-DB us the following and adapt the filename to what you like it to be.
    bash-3.2# /Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h "/Library/Server/PostgreSQL For Server Services/Socket/" -p 5432 -f /Volumes/USBSTICK/wikidatabase.pgdump -U collab collab
    The first block specifies the "not default" pg_dump you'd like to use
    The second block (-h "/Library/.....) tells pg_dump where to find the DB
    The third block tells pg_dump to use port 5432
    The fourth block (-f /Volumes/......) tells pg_dump to place its output into this file
    The fifth block (-U collab) tells pg_dump to do this is role collab
    The sixth block tells pg_dump from with DB to dump from
    In your case extend my provided command with your options --format=c --compress=9 --blobs like this:
    bash-3.2# /Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h "/Library/Server/PostgreSQL For Server Services/Socket/" -p 5432 -F c --compress=9 -b -f /Volumes/USBSTICK/wikidatabase.pgdump -U collab collab
    BTW- you can connect to the database, of course:
    bash-3.2# psql -h "/Library/Server/PostgreSQL For Server Services/Socket/" -p 5432 collab collab
    try it and RATE correct answers
    Here is my thread https://discussions.apple.com/thread/5751873

  • How do I transfer files and documents from one user account to another?

    How do I transfer documents and files from one user account to another?

    You haven't understood me. Follow these steps:
    1. Log in the user where are the files you want to transfer, and open a Finder window.
    2. In Finder, select Go menu (on the menu bar) > Go to Folder, and type /Users/Shared. Now you're on Shared folder, so leave that window.
    3. Open a new Finder window without closing the old one, go to the folder with the files you want to transfer, and copy them to Shared folder.
    4. After copying the files to Shared folder, go to  > Log Out, and log in the other user.
    5. Repeat the step 2, and you will get access to the transferred files. Now, you can open them directly from this folder, or you can copy them to a folder on your user folder

  • How to transfer file using FTP

    Hi All
    I want to transfer few files from one instrument running WIndows Xp to another PC running on Windows Xp.
    I do have installer LabVIEW 8.2 & also Internet Toolkit on the PC.
    Now do i need to install anything on instrument also from where i need to transfer the files.
    Thanks & Regards,
    Rajan
    Thanks & Regards,
    Rajan

    duplicate post

  • How do I transfer music play list from one apple id account to another

    How do I transfer music playlist from one apple user Id to another

    Not possible, may need 3rd party software for that.

  • Copy reports from one business objects server to another

    How do I copy all the reports published in my production BO server to my test server. I did this once but can not remember. Is it the import wizzard?

    yes you can use the import wizard to export your reports from one server to another server
    just open the import wizard, connect to your source server, choose object types you want to export (folders, reports, users,,,,etc),,, then choose the objects itself, then connect to the destination server, and the import wizard will guide you through this process.
    good luck

  • Any way to migrate from one 10.5 server to another?

    Hi,
    I just lost a 10.5 Server installation, it just won't boot anymore. Since no one seems to be able to help with that problem, I needed to move on and install fresh. However, the old installation took considerable work. I would hate to have to do it all over again. So the question is: is there a migration assistant or something similar to migrate one OSX Leopard Server installation to another machine / hard drive?
    Cheers.
    PS: I tried carbon copy cloner, the cloned instance won't boot up either. I guess some files have been corrupted.

    Yes, you can.
    Open: System Preferences > Hardware > Keyboard & Mouse > Mouse, select menu for the side
    buttons, turn it off or select another use for the side buttons.
    It takes a little practice, but you can train yourself not to be pressing the side buttons inadvertently.
    That's the other option.
    To still use expose, you can use the keyboard. I have expose assigned to F10. Those settings can be
    adjusted using System Prefs as well.
    Kj

  • Export from one oracle datasbase server to another  for version: 9.2.0.1.0

    Hi All,
    I know this is an elementory thread , however i would like to know the process of import and export of database in detail.
    I need to copy the entire database from a existing prodcution server having oracle 9.2 as its version to another server with same oracle version .
    Kindly mention the process to be carried out .
    Thanx in advance

    I need to copy the entire database from a existing prodcution server having oracle 9.2 as its version to another server with same oracle version .Its better to take a hotbackup/coldbackup or RMAN backup depending on the environment. Exp/Imp will be time consuming.
    For exp/imp;
    http://www.orafaq.com/wiki/Import_Export_FAQ
    For full export-import, you need to do is take an exp backup from source DB. Create same tablespace that of source DB and import from the dump file.
    exp system/manager full=y buffer=100000 feedback=10000 recordlength=64000
    imp system/manager full=y buffer=100000 feedback=10000 recordlength=64000

  • Transfer files using Bluetooth from non black berry phones

    I am not able to transfer any files from the nokia phone to playbook or vice versa using blue tooth,
    Please  help me to do same,
    Is this option is available with bb playbook 
    or just we can do the internet tethering with Bluetooth ?
    Rana Amit

    The limitations of the PlayBook are simply unbelievable. Bluetooth file transfer is something I'm used to having and using since the first mobile phone I got, nearly 10 years ago. I guess this is one more "security feature" of the PlayBook. No brains, no tumors, as they say.
    Fail.
    http://eir3.com

  • How do I transfer my iTunes music from one internal hard drive to another internal hard drive without having to locate every song?

    So I have two internal hard drives in my laptop but the hard drive that my music is on is running out of space. I want to transfer my music from the smaller hard drive to the larger hard drive so my computer can run faster. If I do this I'm afraid I'm going to have to locate every song within the iTunes library. Is there a way around it so I won't have to go in my files and locate every song? Any help would be greatly appreciated!

    Instead of moving the entire iTunes folder you can copy it, then do the Shift-launch trick to select the .itl file from its new location.  If it works, then go back and delete the original location.
    But maybe clarify your configuration ... specifically, is your "iTunes Library.itl" file currently on the same drive that your music files are stored on?  Or, do you keep your .itl file on a separate drive than the native files?  If the .itl file is on a separate drive right now, then moving or copying the music files over to be on the same drive can result in iTunes not knowing where your native files went.  You can get around that using the Consolidate utility in iTunes, but that is not necessary if the .itl file lives with the music files.

  • How do I transfer a gift certificate from one country's ITMS to another's?

    I have received a gift certificate for the Canadian ITMS from my sister, but I live in Germany. I can neither log in to the Canadian store, nor use the gift certificate in Germany. How do I transfer it?
    Thanks,
    Carsten

    Having Apple transfer a somehow equivalent sum to my country is just as good, and doesn't involve any music industry company.
    Yes it does because when you purchase a gift card, the money goes to the music industry.
    Send them an email and let them know you would like it changed.
    http://www.apple.com/support/itunes/musicstore/giftcertificate/

  • How do i transfer my itunes music from one computer to itunes on another

    Tell me how to in easy steps with an ipod
    Tell me how to in easy steps with a pen drive

    Hi Chris
    well, i copied everything from itunes onto my ipod. I made playlists on my itunes and had an option to sync playlists which was easily done.
    When i take my ipod onto another computer, i dont know how to transfer the music. All my playlists appear from the administrators but i cant copy and paste them in the music library, and even the click transfer purchases does not work. ( all these songs in playlists are not purchased. My friend had a dvd of mp3 which i took from him - is that why it does not work ? )

  • Using Link from one region as parameter to another region on the same page

    I have a page with two regions.
    Region 1 has a list of items that are dispalyed as links
    Clicking on a specific item I need to have a calendar report displayed using the value of the link for eg
    Region 1 Region 2
    abc Calendar based on the link selected in region1
    def
    xyz
    How is this possible

    I spent quite a few hours after this was posted trying to figure it out and I did.
    Select Mailbox > Export Mailbox.  This asks you a location to export the mailboxes to.  It just uploads the exported mailboxes into Dropbox. 
    Then change the User that I want to import the mailboxes into. Select Import and select the location of where you placed the folder in Dropbox. This then imports the mailbox into a folder called Import. You then drag and drop the copied mailboxes from the Import folder to the folder in the structure you have.  If you decide to delete the folders from the import folder list, do this.  You can also delete the copied folders from Dropbox if you wish.
    Took a while, but I got there and I'm happy now....

  • SSRS 2012 how to use sum from one dataset in calculations in another dataset

     Hi
    I have 2 datasets and I would like to calculate a sum from dataset1 and then use it in calculations in dataset2. I was thinking of a lookup but I can not use an aggregate in the lookup.
    My data looks like this
    dataset1 (warehouse)
    Site   InventoryID            Qty_On_Hand
     A              1                               5
     B              1                               1
     C              1                               7
    Dataset2 (shipping location)
    Site        InventoryID               QTY_Ord                Date_required
     A                1                                 3                        
       2-1-2015
     A                1                                 4                        
       2-9-2015
     C                1                                 6                        
       2-9-2015
    I have set up parameters to that I can choose which sites to include in the report. It is rare that all sites will be included. Normally I will set the parameters to just look at sites A and B from both datasets
    In the case when my parameters are for Sites A and B I would like to come up with a report like
       Inventory_ID         2-1-2015         2-9-2015              Total Qty_Ord             Total Qty_On_Hand
               1                         3                       4              
                      7                                           6
    I will then compare a running total of each Inventory_ID to the total Qty_On_Hand and highlight the cell where Qty_ord exceeds Qty_on_hand
    I just can seem to figure out how to get the Total Qty_on_hand from dataset1 and use it in Dataset2
    Does anyone have a suggestion or two?
    Thank you !

    You can do it simply in your query:
    DECLARE @dataSet1 TABLE (site CHAR(1), inventoryID INT, qtyOnHand INT)
    INSERT INTO @dataSet1 (site, inventoryID, qtyOnHand)
    VALUES ('A',1,5),('B',1,1),('C',1,7)
    DECLARE @dataSet2 TABLE (site CHAR(1), inventoryID INT, qtyOrdered INT, dateRequired DATE)
    INSERT INTO @dataSet2 (site, inventoryID, qtyOrdered, dateRequired)
    VALUES ('A',1,3,'2015-2-1'),('A',1,4,'2015-2-9'),('C',1,6,'2015-2-9')
    SELECT d2.site, d2.inventoryID, d2.qtyOrdered, d2.dateRequired, SUM(d1.qtyOnHand) as qtyOnHand
    FROM @dataSet2 d2
    LEFT OUTER JOIN @dataSet1 d1
    ON d2.inventoryID = d1.inventoryID
    AND d2.site = d1.site
    GROUP BY d2.site, d2.inventoryID, d2.qtyOrdered, d2.dateRequired

  • Can I transfer a hard drive from one macbook pro laptop to another?

    I have a 2009 Macbook pro with a cracked screen and a messed up track pad (laptop A), but a fully functional hard drive. I have another 2009 Macbook pro (laptop B) with a blown hard drive, but everything else seems to be fine.
    I removed the blown hitachi 320 hard drive from laptop B and set it aside. Then I removed the seemingly good Seagate 500 hard drive from laptop A and put it into laptop B. When I turn on Laptop B with the hard drive in it I get the folder with the question mark screen.
    HELP. I am not tech savvy at all. But I can follow directions. Thanks.
    Monica
    *Please let me know if you need additional information from me.

    Restart the computer with the Option key held down.
    If you see the drive, click on it and then select it in the Startup Disk pane of System Preferences.
    If you don’t, insert a Mac OS X install DVD, press C if needed, and either repair the drive or install an OS onto it.
    (110094)

Maybe you are looking for

  • TV Tuner or Video capture device for MBP

    I'm wondering if there is a device usb or expresscard34 that can allow me to watch cable TV or just a composite video input device that can be used with a cable box. I know there must be lots of devices for PPC Macs but which ones actually work on MB

  • IMovie "finalized" but audio is different than project view - Why?

    I have just "finalized" my iMovie Project.  I am happy with the sound levels and audio ducking in project view.  Now after I have finalized the project the audio levels are too loud and ducking is not recognized when I view it full screen.  But when

  • Failed to configured referral on LDAP Sun Directory

    Hi all, My customer has a problem in config. BOE to LDAP servers; which has 2 referral ldap hosts. The test cases are: - If BOEXIR2 talks to LDAP v6.2, it works.  BOE can see the users and logon via Infoview - But the problem exists when 2 LDAP serve

  • RF Enhancement LM50

    Hi, For physical inventory count enhancement MWMRF151 is implemented. I created a screen 1151 to in input Bin number. Once the bin number is entered and clicked next button I get the message...Entry BINNUMBER does not exist in LAGP (check entry). I g

  • E-Recruiting - Enhancement Pack 3 (EhP3)

    Have anybody implemented E-Recruitment EhP3?