Import/Export from Unix

hi, there, i just got a problem in exporting my database from unix. the account that i got is from my client, and so i can login as a regular user only.
my story is, i'm now using unix to access the oracle, but i can't do any exporting action, i got the error as, "unknown command".
question, is it necessary to be the administrator or some special previlege to be able to export the database.
can somebody out here give me some advice, i need the solution urgent, thanks in advance.

Thanks for the feedback, I'll forward it to the Product team.
Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/robhorne</a>

Similar Messages

  • SFTP functionnality and import/export from unix/linux side

    Hi,
    With the new release, can you add two importants functionnalities :
    - Add sFTP with FTP, Email, Unmanaged disk because some customers like me want security. Normally, it's not very complicated because Apache-commons-vfs.jar can use all of this (with jsch.jar).
    - Add possibility to import and export universes/documents from/to CMS on file system with SDK.
    Thank you
    It's a big work.
    gilles

    Thanks for the feedback, I'll forward it to the Product team.
    Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/robhorne</a>

  • Memory Limit for "IMPORT/EXPORT from MEMORY ID" statement

    Hi All,
    Can anyone tell me whether there is any memory limit exists for "IMPORT/EXPORT from MEMORY ID" statement.
    Like may be we can transfer xx MB of data via this......or it is open, we can transfer any amount of data to ABAP memory via this.
    Regards
    Munish Garg

    1. Each user sessions have external sessions and each external sessions have internal sessions.
    2. The programs being executed in the internal sessions can access ABAP memory
    3.ABAP memory is a storage area for internal program variables like fields, structures, internal tables,,They can be passed  between internal sessions of an external session.
    4. you can transfer data through ABAp memory using IMPORT and EXPORT statements
    5. after IMPORT FROM MEMORY ID <id> , you can use sy-subrc to check the existance of the cluster ID. here sy-subrc is not used to check whether the Import was successful or not.

  • How to import/export   from d2k

    hi
    hi please could you help me in how to import/export from d2k.
    M.P.Kiran Kumar

    FUNCTION open_ldr RETURN varchar2 IS
    out_file Text_io.File_Type;
         v_filename varchar2(255);                              
    Begin
    out_file := Text_IO.Fopen('C:sqlldr.ini', 'R'); /* create a file so that u can store sqlldr path first time it wont be there so write the path after verifying */
    text_io.get_line(out_file,v_filename);
    --message(v_filename);
    return(v_filename);
    Exception when others then
         --message('Check For Sqlldr73.exe or Sqlldr*.exe');
    v_filename := get_file_name(File_Filter=>'sqlldr Files (*.exe)|*.exe|');
    out_file := Text_IO.Fopen('C:\sqlldr.ini', 'W');     
         Text_IO.Put(out_file,v_filename);
    Text_IO.Fclose (out_file);
    if v_filename is null then
         Message('Please Select The Sqlldr Path ');
         Message('Please Select The Sqlldr Path ');
         raise form_trigger_failure;
    end if;
    return(v_filename);
    End;
         Declare
              The_userid varchar2(100):='';
              The_Password varchar2(100):='';
              The_connectstring varchar2(100):='';
              Con_Info varchar2(100):='';
              the_command varchar2(200):='';
              v_filename varchar2(100);
              cursor c1 is select tname from <table_name > /* create a table in ur schema and put all the tables which u want to export */ where tabtype = 'MASTER';
         Begin
              v_filename:=open_ldr;
         The_userid := Get_Application_Property(UserName);
                   The_Password := Get_Application_Property(Password);
                   The_connectstring := Get_Application_Property(Connect_String);
                   Con_Info := The_userid||'/'||The_Password||'@'||The_connectstring;
                   for c1rec in c1 loop
                   C2K_TRUNC_HLL_MASTERS(c1rec.tname);
                   the_command := v_filename||' Control=c:\'||c1rec.tname||'.ctl userid='||Con_Info; -- Change This According To The Path
                   -- message(the_command);message(the_command);
    Host(the_command);
                   End Loop;
                   the_command := v_filename||' Control=c:\control'||'.ctl userid='||Con_Info; -- Change This According To The Path
                   host(the_command);
                   Exception When Others Then
                        Message('Error'||' '||sqlerrm);
                        Message('Error'||' '||sqlerrm);
         End;
    If u have any problems please contact me on [email protected]
    furnish the details properly .
         

  • IMPORT & EXPORT from/to compressed files directly...

    for newbies a tip to import(export) directly to(from) compressed files using pipes . Its for Unix based systems only, as I am not aware of any pipe type functionality in Windows. The biggest advantage is that you can save lots of space as uncompressing a file makes it almost 5 times or more. (Suppose you are uncompressing a file of 20 GB, it will make 100 GB) As a newbie I faced this problem, so thought about writing a post.
    Lets talk about export first. The method used is that create a pipe, write to a pipe(ie the file in exp command is the pipe we created), side by side read the contents of pipe, compress(in the background) and redirect to a file. Here is the script that achieves this:
    export ORACLE_SID=MYDB
    rm -f ?/myexport.pipe
    mkfifo ?/myexport.pipe
    cat ?/myexport.pipe |compress > ?/myexport.dmp.Z &
    sleep 5
    exp file=?/myexport.pipe full=Y log=myexport.logSame way for import, we create a pipe, zcat from the dmp.Z file, redirect it to the pipe and then read from pipe:
    export ORACLE_SID=MYDB
    rm -f ?/myimport.pipe
    mkfifo ?/myimport.pipe
    zcat ?/myexport.dmp.Z > ?/myimport.pipe &
    sleep 5
    imp file=myimport.pipe full=Y show=Y log=?/myimport.logIn case there is any issue with the script, do let me know :)
    Experts, please have a look...is it fine ? (Actually I dont have Oracle installed on my laptop(though have Fedora 6) so couldnt test the scripts)
    I posted the same on my blog too. just for bookmark ;)
    Sidhu
    http://amardeepsidhu.blogspot.com

    actually, only the compression thing runs in the background. rest proceeds like normal only. just instead of giving normal file we use pipe as a file.
    nice article about named pipes
    Sidhu

  • IMPORT/EXPORT FROM DATA BUFFER

    Hi,
    I have some code like this:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    for some reason a does not get set to the value that I assigned to b.
    However, this code works:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT some_internal_table TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    Does anybody know why internal tables work but other data types do not?
    Thank you.

    EXPORT '1234' TO DATA BUFFER b, not working because, you did not assign a variable name to '1234' to be stored as in data buffer B.
    Change the code to:
    DATA: b type xstring.
    DATA: a(4) type c.
    EXPORT a = '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    It's working in the second case because, some_internal_table  is the name of the variable in databuffer B and you are importing into the same variable in IMPORT
    Regards
    Sridhar

  • Import/Export from Memory ID

    hie guys
    im in a program that is importing values from a memory id however there are no values being imported and thus i want to find out wer the memory id is being given data. i tryd the wer used list and it dd not give me anything, please assist

    I managed to find the program where the export statement for the memory ID was and also where the import statement was and managed to resolve my error.
    many thanks.

  • Arabic support in isqlplus after import export from 7.3.4 to 10.2.0.3

    CANNOT DISPLAY ARABIC IN ISQL*PLUS(JUNK). APPLICATION WORKS FINE WITH ARABIC
    with Taret DB char set to US7ASCII the data is always junk old data +new inserted arabic data inserted thro isqlplus or sqlplus.
    with AR8MSWIN1256 the old data(imported in to new db from old 7.3.4 db export dump) is displayed as junk (what ever in the db) and after creating a new table data inserted, the arabic display is fine.
    How to overcome the problem of displaying old data? we have lots of data for migration.
    Thanks

    Small correction
    In DB with Char set to AR8MSWIN1256.......
    Old data exported from 7.3.4 and imported in new 10.2.0.3 db is showing arabic char as junk
    But new table created and data inserted as arabic is displaying properly.
    What has to be done such that old imported data displays arabic.
    We are using isqlplus and sqlplus to query the data
    Thanks

  • Import/Export from OWB-- Discoverer

    Hello,
    Can anybody tell me the way to export and import data from OWB 10.1.2 onto Discoverer 10.1.2?
    Thank You,
    Mani.

    Hi Mani,
    Typically you'd define a collection in OWB, and then select Project Menu -> Metadata Export -> Bridge.
    Choose Oracle Discoverer as To: item and give it a description.
    Next you select one or more collections to export and possibly some more transfer parameters and you're good to go.
    For more background check chapter "Importing and Exporting with the Metadata Loader (MDL)".
    Good luck, Patrick

  • IMPORT/EXPORT FROM ADDRESS BOOK TO ENTOURAGE

    Is there a way to export/import contacts from the Address Book to Entourage? Thanks

    Try this.
    With the Address Book and Entourage launched and positioned so each is partially visible and the Entourage Address Book selected, select a contact in the Address Book "All" Group and at the menu bar, go to Edit > Select All. Click and drag the highlighted contacts from the Address Book to the Entourage Address Book window which should copy the Address Book contacts to the Entourage Address Book.
    You can do the same with selected contacts only if you don't want to export all.

  • Import/Export from Access MDB to Oracle DB

    Dear Friends,
    I need to import a huge table from access to Oracle. I tried to export the file from MS Access to Oracle, it is giving error. I tried another way of doing , i first exported the data to SQL server and then using Export/Import utility of SQL Server, it has imported succesfully. I am not sure which is the best way to import data from ACCESS to Oracle.
    Kindly suggest,
    Regards,
    Vinay

    Another approach you might try goes something like this:
    1. In Access, link the destination Oracle table (for example, via File, Get External Data, Link Tables...).
    2. In Access, create an Append Query to select rows from your Access table and insert them in to the linked Oracle table.

  • IGES or VDA-FS import/export from DIADEM to/from CATIA

    We need to import/export data in either IGES or VDA-FS file format with DIADEM to/from CATIA. The data is a three dimensional array of coordinates representing the contour of a automotive seat.
    Does anyone know where to get or have such a file filter?
    Waldemar Hersacher
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

    Dear Otmar,
    I'm investigating this for a new customer project.
    IGES is a standard file format used to excange data between CAD systems.
    VDA-FS is a file format which is standardized by the german automotive industry consortium.
    Currently I have no description for the file formats nor any data files.
    I will make a new comment within 6 weeks if I need more help from you.
    Thanks Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Import/Export from Betacam SP to FCP

    I have been contacted to make minor edits to a program for broadcast. The program is on Betacam and I plan to import the footage using a Sony Betacam SP UVW-1600 plugged into an ADS Pyro AV Link Bidirectional DV Media Converter connected via firewire to a Mac Pro with FCP, make the edits and then export back to Betacam via the same route. Can this be done the way I have planned? If so are there any changes I need to make to the video before it is exported (timecode, etc.) for broadcast?
    This is not something we normally do and the import/export makes sense the way I have planned it out. But I have learned with video and all the various formats that it is usually never as easy as it seems.
    Any help or advice is appreciated.
    Thanks,
    Leon

    This isn't the best way...it really isn't. You are converting the beta footage to DV when you go through the Pyro...then editing it in a 720x480 space instead of 720x486...then you will be sending that back out to Beta...and now will have vertical blanking where you are missing 6 pixels...and your quality will really suffer...and might no longer pass QC.
    Then you have to figure out how you will do deck control...you will need a USB>RS-422 adapter.
    You really need to get a capture card. The Decklink Extreme can be had for $995 and does SD and now prepares you for HD work...as it does HD too. Decklink does have cheaper SD only cards, as does AJA...but since the world is moving HD, it is time to get prepared for that.
    Shane

  • Using bash to import/export from qt

    i have an operation i perform repeatedly and would like to write
    a bash script to do it automatically.
    what i'd like to do is:
    1. open an image sequence in qtplayer
    2. file--->export
    3. set options (like custom size, what codec)
    4. save the export as the same filename as the first file of the image sequence
    can this be done via bash?
    can anyone point me to some info on passing parameters to qtplayer via bash?
    thanks,
    BabaG

    Have you tried using Applications -> Automator -> Record and then let Automator record steps you want to do. If that works, it would be the easiest way to automate this.
    If you want to invoke the Automator script you can use the open command from within bash
    If Automator -> Record does not work for you needs, then an Applescript is the next thing you should try. If you want to invoke this from bash use the osascript command.
    Applescript questions would be best asked in the Apple Applescript forum <http://discussions.apple.com/forum.jspa?forumID=724>
    If you want/need more bash shell script questions answered, the Apple Unix forum would be the best bet <http://discussions.apple.com/forum.jspa?forumID=735>
    And while I'm mentioning the open command, you can start *QuickTime Player* with a specific file usng open
    open -a /Applications/QuickTime Player.app file.jpg
    Where file.jpg could be any file that *QuickTime Player* knows how to handle.
    Steps 2, 3, & 4 are operations that would be better handled via Automator or Applescript.

  • Import/Export   From database

    Hi,
    I am trying to use "FKK_SAMPLE_1720" FM in my program .
    And this FM has a statement 
    Pick up add-on parameters
      IMPORT addons TO h_addons FROM DATABASE rfdt(kk) ID h_runkey.
    1. If want to export values to this id, can any tell me how i can give the code to export the values to this ID? (little more detailed with at least one value appending into structure.)
    2. This FM is calling in other SAP transactions(FPCOPARA) , when other programs also export values to this ID is it going to effect any way when I execute  my program?( like is this export ID is local to every ABAP program?) ..
    Please let me assp.
    Thanks in advance for ur time..
    Rajesh.

    Hi,
    Any one got a chance to look at this issue?
    thanks.

Maybe you are looking for

  • 10.4.3 with VPC problems

    Not sure where to post this but here goes... I've used VPC for years. Started having problems with it after I installed Tiger so I decided to upgrade it to the latest 7.0.2. One of the problems I was having still persists and I have a new one. 1. In

  • HT204053 I deleted my old Apple ID. All updates I try to apply ask for the old ID and Password. When I enter it, it say it doesn't exist. What do I do know?

    How do I download updates for apps that I downloaded with an old Apple ID that I have since deleted?

  • FTPAdapter password encryption

    HI, How do we encrypt and use encrypted passwords rather than clear text password for FTPAdapter. In oc4j-ra.xml all FTPAdapter username/password goes in there but they are in clear text how do we use encrypted passwords. Can someone let me know how

  • WiFi 802.1X Security

    Does anyone know when the Aironet access points will be able to use any nominated VLAN as the management VLAN instead of VLAN 1? Currently we have a successful dot1X (EAP-TLS) implementation running but I am a little concerned with having to use VLAN

  • Control level Centers of Costs

    Hello! It is possible to realize the budgetary control for level of Centers of Costs, not to level of planning but for budgeting. The idea is that the control of availability is activated in order that it could not exceed the budget. Thank you very m