How to connect and export specific schemas in SQL plus

Hello,
Wanted to clarify on a few things.
- Can an Oracle 10g Release 10.2 client be used to connect to a oracle 10.1 database?
- Is there an option to "connect" (not refer) to a specific schema, say "SchemaA" in SQL plus in order to run a specific sql code on this schema alone?
- How can we export a specific schema as a dump file in SQL plus-what is the syntax? Assuming username=U;password = PW; Database=DB and schema = Sch
Thanks a lot.

- Can an Oracle 10g Release 10.2 client be used to connect to a oracle 10.1 database?
Yes. O10gR2 client can be used to connect all version of Oracle instance.
- Is there an option to "connect" (not refer) to a specific schema, say "SchemaA" in SQL plus in order to run a specific sql code on this schema alone?
connect ShcemaA/pwd@hoststring.
for e.g.
connect scott/tiger@oradev
conn scott/tiger@oradev
- How can we export a specific schema as a dump file in SQL plus-what is the syntax? Assuming username=U;password = PW; Database=DB and schema = Sch
Export can be done on Command promt not on SQLPLUS prompt.
try the following to know all the parameters and usage of exp command.
c:\> exp help=y
exp scott/tiger FILE=scott.dmp OWNER=scott GRANTS=y ROWS=y COMPRESS=y

Similar Messages

  • How to connect to a specific database in SQL server

    Hi,
    How can I connect to a specific database in SQL server? I used the following statement. But my table is inserted to the 'master' database in the SQL server. How can I insert my tables to the specific database tahta I have created before?
    Connection con;
    String sURL = "jdbc:microsoft:sqlserver://SERVER_NAME:1433";
    con = DriverManager.getConnection ( sURL, sUsername, sPassword);

    Hi,
    When I use the syntax:
    String sURL = "jdbc:microsoft:sqlserver://SERVER_NAME:1433/DATABASE_NAME;selectMethod=cursor";
    it gives an error as follows:
    problems connecting to jdbc:microsoft:sqlserver://SERVER_NAME:1433/DATABASE_NAME;selectMethod=cursor:
    [Microsoft][SQLServer 2000 Driver for JDBC]Unable to connect. Invalid URL.
    What is the way to connect to a specific database?

  • I have a huge file which is in GB and I want to split the video into clip and export each clip individually. Can you please help me how to split and export the videos to computer? It will be of great help!!

    I have a huge file which is in GB and I want to split the video into clip and export each clip individually. Can you please help me how to split and export the videos to computer? It will be of great help!!

    video
    What version of Premiere Elements do you have and on what computer operating system is it running?
    Please review the following workflow.
    ATR Premiere Elements Troubleshooting: PE11: Project Assets Organization for Scene and Highlight Grabs from Collection o…
    But please also determine if your project goal is supported by
    a. format of your source
    and
    b. computer resources
    More later based on details that you will post.
    ATR

  • Any one tell how business planning and requirement specifications would be

    any one tell how business planning and requirement specifications would be in the real time scenarios
    how work would be assigned to development and production
    how would one approach to work
    regards
    bhanu

    Hi
    Check these SDN Links
    You can find a lot of good info here:
    http://help.sap.com/saphelp_nw04/helpdata/en/05/242537cedf2056e10000009b38f936/content.htm
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/6e01a04e-0a01-0010-dfbe-951c2c39d169 [original link is broken] [original link is broken]
    And of course the Business Planning forum
    You can see related info here:
    https://websmp105.sap-ag.de/~sapidp/011000358700007394712005E
    and
    https://websmp105.sap-ag.de/~sapidp/011000358700003595342004E
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/6e01a04e-0a01-0010-dfbe-951c2c39d169 [original link is broken] [original link is broken]
    This is interesting:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce03c6bb-0601-0010-e69d-fb47733fe3b7
    http://help.sap.com/saphelp_erp2005/helpdata/en/53/155c3ce7055a37e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_sem40bw/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/44/584041b02e4c0de10000000a1550b0/content.htm
    http://72.14.205.104/search?q=cache:6gBgWDd3W3AJ:https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a1c91b57-0601-0010-dba2-ac4d24641f9fbwbps(SAP)&hl=en&gl=in&ct=clnk&cd=2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/a-c/bw-bps%20further%20information.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/16/1e0541a407f06fe10000000a1550b0/content.htm
    ***Assign Points If Helpful***
    Regards,
    Ravikanth

  • How to import and export the screen parameters

    hi all
    how to import and export the parameters of the screen
    i need to export all the parameters and then import it
    and also how to export and import a variable to the memory
    thanks and regards
    naval bhatt

    Hi,
    Check this example for exporting and importing to memory..
    DATA: V_VALUE(2) VALUE '2'.
    EXPORT V_VALUE = V_VALUE TO MEMORY ID 'ZTEST'.
    IMPORT V_VALUE = V_VALUE FROM MEMORY ID 'ZTEST'.
    Thanks,
    Naren

  • Anyone has an idea how to connect and configure my Airport express to an internet range extender which is plugged into mains

    Anyone has an idea how to connect and configure my Airport express to an internet range extender which is plugged into mains?
    Message was edited by: m. emin

    You can connect it but with ethernet cable. You can not connect it by wifi to extend the range a second time.
    BTW AE is rather sensitive to connect by wifi to non-apple wifi routers.

  • How to execute the parametered stored procedure in sql *plus ?

    how to execute the parametered stored procedure in sql *plus ?
    my storedprocedure format
    CREATE OR REPLACE PROCEDURE SMS_SELECTMPLOYEE
    (empDOB out date, empEmpName out varchar2)
    thanks & regards
    mk_mur

    Oh, sorry... making many reading-too-fast mistakes today...
    You can't declare date variables in SQL*Plus (seel help var), but you can cast to varchar2:
    TEST> CREATE OR REPLACE PROCEDURE SMS_SELECTMPLOYEE (empDOB out date, empEmpName out varchar2) IS
      2  d date := sysdate;
      3  e varchar2(10) := 'bob';
      4  begin
      5  empdob := d;
      6  empempname := e;
      7  end;
      8  /
    Procedure created.
    TEST> var d varchar2(30)
    TEST> var n varchar2(30)
    TEST> call  SMS_SELECTMPLOYEE(:d,:n);
    Call completed.
    TEST> print d n
    D
    11/07/06
    N
    bobYoann.

  • How can I get the return code of SQL*Plus under Win2000Pro

    How can I get the return code of SQL*Plus under Win2000Pro ?

    In a DOS batch script? Try ECHO %ERRORLEVEL%
    -- CJ

  • How to create and export a sharepoint list connection file to excel connection file library from power pivot?

    Hi All,
    I'm new to SharePoint and Power BI.
    I've to use  share point 2013 lists to create power view reports. For that, I need to create Power Pivot in Excel 2013.
    I'm fine with the above. We normally take a data feed of a list and create connection to that. We need to create a connection file (.odc) and export it into a excel file connection library of Share point. The connection to be made to share point list. The
    power pivot will be having multiple related lists.
    How can I create a connection file which is referring to share point list
    Please suggest.
    Regards,
    Julie

    Hi All,
    Finally, I could find the answer for this question after a long search.
    First of all, open a new excel file in server.
    Data-->From other connection-->From data connection wizard-->data feed-->Location of the data feed-->
    http://sharepointsite/sitename/_vti_bin/ListData.svc
    -->next-->select the lists which you need-->next-->only create connection-->properties--->export connection file
    -->ok
    The connection file has been created and .odc file exported to the specified location.
    Open power pivot and check the connection in existing connections.
    Exported file has to be uploaded in Excel file connection library of share point 2013. So that you can refer the same in this excel file when you upload it into share point.
    Regards,
    Julie

  • How to install and use oracle schemas

    Hi,
    I am trying to prepare for Oracle PL/SQL Developer Associate Exams. I need to download and use Oracle sample schemas like oe, etc. and I don't know how.
    I have the following on my PC:
    Oracle® Database Express Edition 10g Release 2 (with the HR schema)
    Oracle Sql Developer 2.1.0.63 (already connected to the HR schema)
    Oracle Developer Suite 10.1.2 (mainly used to connect to work databases )
    Can someone please guide me here....
    Thank you....

    Did you check what are the existing schema you have other than HR from Enterprise Management Console?
    If you install your DB in default with sample DBs - you should have these schema already into your machine. They may be locked. That's why you are unable to use them.
    Unlock the schema and try it again.
    From sys,
    alter user oe account unlock;
    alter user oe identified by oe;This should work for you.
    Regards.
    Satyaki De.

  • How to download and Install SH schema

    I have Oracle database Express Edition on windows. By default it has only hr schema installed as a sample schema. I want to install SH schema to work with some BI dashboard.
    How can Install and where can I get the script for download. I installed the companion CD, But I could not find the script to create sh schema.
    Someone Please help
    George

    The sample schemas are part of the 'grown up' editions. They can be installed into the demos directory of these editions using the Companion CD. If you really, really, really want them, you probably want to:
    1) install the software for the EE (no need to create a database)
    2) install the companion CD, 'Database Home' install type
    3) grab the ORACLE_HOME/demo subtree
    4) look at mksample.sql or the one specific to sh
    Refer to the Sample Schemas doc at http://tahiti.oracle.com
    And realize that the samples go way beyond the capability of XE

  • [Solved] How to connect to a specific getty over ssh android client?

    Hey,
    I'm trying to setup a sshd for laptop. I want to be able to connect to a specific terminal or a virtual one using android phone.
    At the moment I've setup an openssh as per wiki article. But when I connect using ConnectBot for android I see that terminal is trying to "startxfce4", which is already started on the actual laptop, shows me an error and that's it.
    I don't use any login manager, just start x automatically on tty1.
    Thanks
    Last edited by tankas (2014-01-05 10:50:07)

    jasonwryan wrote:How do you start X: post your .profile (or whatever)?
    autologin with:
    #/etc/systemd/system/[email protected]/autologin.conf
    [Service]
    ExecStart=
    ExecStart=-/usr/bin/agetty --autologin username --noclear %I 38400 linux
    and Start X at Login:
    # ~/.bash_profile
    [[ -f ~/.bashrc ]] && . ~/.bashrc
    [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] & exec startxfce4

  • WIP310-G2: how to connect to an specific VoIP provider using SIP ?

    Dear all,
    I just received a WIP310-G2 and I am wondering how -or whether- I can configure it to connect to an specific Internet based VoIP provider using SIP
    Cant seem to find how to do it....
    Thanks a lot,
    Alvaro

    You connect your WIP310 to your PC using an USB cable. Then lookup the IP-adresse on the phone and enter that into a browser.
    In the UI select Admin Logon and you can enter all the configuration details for your VoIP provider. I would recommned that you ask your VoIP provider to help you with a guide.
    I used a PAP2T configuration example that worked for my WIP310, which I got from my VoIP provider.

  • Any Complete Tutorials On How To Edit And Export MIDI Files In GB?

    Hi. A friend sent me about 25 nice standard MIDI files that all open fine in QT Pro. She wants me to drag and drop them into GarageBand 2, attempt to edit them, change sounds and then export them out as the edited versions, key changes, added bars, change instrument sounds, etc,. Although I'm a trained musician who understands form, I really don't have a clue on how to use GB to edit and export standard MIDI files. Can this be done effectively in GB ver 2 or 3?
    Basically what she then wants to do is take the edited MIDI tracks, put them into itunes I guess on her iBook G4 or Ipod and do a solo act playing her keyboard live and usibg the MIDI tracks as background.
    Are there any links to step by step tutorials on how I can lerarn this procedure? Please offer any advice and links if you can and thanks for your help
    steveb

    Not really practical, I'm afraid. Capturing screenshots and cutting them up is possible with Photoshop, but PDF editing is very limited (fix a typo, move a picture).

  • How to connect and query the sql database in mobile application

    Hello,
    Can any one say how to connect the sql database from the j2me application.
    I have got some info that only through servlet or jsp only we can connect the database and from their we should get the info or query in mobile application.
    Is it true? and can i have any sample codes or white paper or guildlines.
    It would be more useful form my project.
    Thanks in advance.
    regards,
    sara

    Hi David,
    According to your description, when you add Windows Azure Mobile Services to a Window Phone 8 app, then store app data in the new mobile service. I recommend you post the related question on the Windows Azure Mobile Services Forums at
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=azuremobile .It is appropriate and more experts will assist you.
    In addition, there are the details about creating a Windows Phone app connected to your mobile service.
    http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started-wp8/
    http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started-with-data-wp8/
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • Accounting Entries hit in Third party Sales Process

    Hi, Can anybody tell which accounting entries are hit when we create the following entries in third party sales process 1.When Sales Order is created. 2.When PR is Created 3.When ME21N is done 4.MIGO 5.MIRO please provide your valuable suggestion.. T

  • Tnslistener Service is missing in services.msc in windows 2003 10gr2

    Hi All. I got one error in my server(windows 2003 10gr2)....Protocol adaptor error(ora-12560). In services <tnslistener> is missing(I don't know how it is missing), because of this am not able to connect to my database through TOAD and OEM, I can con

  • RRI calling Web Browser instead ABAP program

    Hi All, I have created a RRI to call an ABAP program. However, when I try to call the ABAP program (via GOTO) it opens a web browser. If I execute the same query via RSRT, and call the ABAP program it works fine. I have also create another RRI to cal

  • Mismatch between getNumArrayRows() behavior and documentation

    The API documentation states that getNumArrayRows "Returns the actual number of rows fetched in the last array fetch when next() returned END_OF_DATA. Returns the actual number of rows fetched in the final array fetch" Actually it returns the TOTAL n

  • Ratings Affect Navigation in Develop and Library

    Every time I make any "gestures" regarding ratings, be they assigning stars to a file or  flagging, navigation is affected. Say I rate an image at four stars. Lightroom advances the veiw to the next file in the filmstrip. This navigation issue occurs