Just downloaded SQL Developer today, need help copy data

How do I import data from Oracle XE to an Oracle server by using SQL Developer?

Probably a better option would be use the export and import utilities provided with the database.
From within SQL*Developer you can export data as either a csv file (and then use sql*loader to load it), or as insert statements which you can run in in either sql*developer or sql*plus.
To export data in sql*developer, right-click on a table or a result set.
Search for Export Table Data in the help system

Similar Messages

  • SQL Developer: How do I copy data with Column Headers from the output grid?

    Hello,
    I am using Version 2.1.1.64.
    I run a SQL query, I get the results grid in the "Query Result" window down below. Say I get 10 rows returned, with 5 columns.
    I want to Copy this entire grid, plus the column headers/names, to the clipboard. So I can paste it under the original query to document the results of that query.
    I can't find any way to do this. I can copy/paste the results grid, but it doesn't copy the headers.
    The only way I see to do it is to go through numerous steps to Export to a TXT file, then paste that. Unfortunately, that is a lot of wasted steps if I need to do this over and over, plus, the output gets pasted in an ugly format with double quotes, etc.
    It seems like the simplest functionality is to copy/paste the entire results grid, and of course you might the headers. Why is this so complicated/impossible to do?
    (I believe Toad has the same problem. DBArtisan allows you to copy/paste the entire results, plus headers, though.)
    Any assistance would be appreciated!
    Thanks,
    John

    Ah, ok...
    I had tried that before, and it didn't work, it seemed to copy the path of filename I was using. But I think that was because I had clicked on a Column Header first, and it had asked me if I wanted to filter. I think then it lost track that it was in the grid. It's a little flukey.
    What I did now was to click on an individual cell in the output, then hit CTRL-A to select all, then hit SHIFT-CTRL-C. That gives me exactly what I want.
    Thanks very much for your quick solution, I appreciate it!
    John

  • HT1338 I have OS X 10.6.8 on my mac and have just downloaded 10.7.4 (needed for imovie 11) but it will not update.

    I have OS X 10.6.8 on my mac and have just downloaded 10.7.4 (needed for imovie 11) but it will not update. What has happened to the downloaded update?

    When you downloaded Lion from the Appstore (and paid 29$) you have 10.7.4.
    After the download you will find it in the Applications folder: that is the installer ! The installer vanishes when used, thus if you want to make an installer disk (to avoid a later redownload), you should do it before you run this installer. You can use "Lion Diskmaker" for that (use a 8GB USB stick), http://www.macupdate.com/app/mac/39701/lion-diskmaker/

  • How to spend 0.20 in itunes? I need to change my country and itunes does not allow me because I have 0.20 left to spend. I can't purchase any more credit because I'm not in the US any more and Itunes just accept those. I need help!

    I need to change my country and itunes does not allow me because I have 0.20 left to spend. I can't purchase any more credit because I'm not in the US any more and Itunes just accept those. I need help!

    Click here and request assistance.
    (65879)

  • My MBP didn't recognise my password, started it in safe mode, I can see my files, but I don't know what to do next, as the image of reset password isn't selectable. I just moved from PC. Need help please...

    My MBP didn't recognise my password, started it in safe mode, I can see my files, but I don't know what to do next, as the image of reset password isn't selectable. I just moved from PC. Need help please...

    Safe mode is not what you want in this case. Reboot to recovery mode - hold down cmd-R as the Mac reboots. Go past the language-selection screen, click the Utilities menu, then Terminal. Type:
    resetpassword
    Followed by the return key, and follow the prompts. Reboot normally when done.
    Matt

  • Sql developer could not fetch any data while running queries?

    I have  downloaded  SQL Developer , install jdk1.5.0_22  from the website. Then I run sqldeveloper.exe browse the jdk folder. After that i established the connection but it continuously showing loading..No tables No procedures are loaded . what should i do?

    Be careful... SQL Developer requires a JDK or the server JRE (which I believe only comes in 64-bit, so go with the JDK if you are on a 32-bit OS).
    Prior to 4.0, the SetJavaHome line in your install directory's sqldeveloper.conf (or sqldeveloper-Darwin.conf on the Mac) must be set, but in 4.0 and above that changes to product.conf under your OS's user settings.  For Windows 7, that would be in...
    C:\Users\<your-userid>\AppData\Roaming\sqldeveloper\1.0.0.0.0\product.conf
    Hope this helps.  If not, assuming Windows, run sqldeveloper.exe in the bin directory from a command line console so you can see any standard error output in the console, or do a Ctrl-Break to get a full thread dump of what's happening in the JVM.

  • Need Help with Dates

    I am printing a calendar and certain events will be helds on certain dates.
    One can edit the event if it has not passed the date. Events in the past can be viewed but not edited.
    When I query the database the date must be formatted dd-MMM-yy
    I am able to get today's date by doing this:
    java.util.Date today = new java.util.Date();
    String formatString = "dd-MMM-yy";
    SimpleDateFormat sdf = new SimpleDateFormat(formatString);
    String today_str = sdf.format(today);
    My code for printing the calendar: I left out some of the table formatting in the JSP page.
    GregorianCalendar d = new GregorianCalendar();
    int today = d.get(Calendar.DAY_OF_MONTH);
    int month = d.get(Calendar.MONTH);
    d.set(Calendar.DAY_OF_MONTH,1);
    int weekday = d.get(Calendar.DAY_OF_WEEK);
    for(int i = Calendar.SUNDAY; i < weekday; i++)
    out.print("<td> </td>");
    do {
    int day = d.get(Calendar.DAY_OF_MONTH);
    out.print("<td>" + day + "</td>");
    String formatString = "dd-MMM-yy";
    SimpleDateFormat sdf = new SimpleDateFormat(formatString);
    //if(event exists on this day
    // Get results
    // print link for viewing
    // if (after today) print link for edit
    if(weekday == Calendar.SATURDAY)
    out.println("</tr><tr valign=top>");
    d.add(Calendar.DAY_OF_MONTH,1);
    weekday = d.get(Calendar.DAY_OF_WEEK);
    } while(d.get(Calendar.MONTH) == month);
    if(weekday != Calendar.SUNDAY)
    System.out.println();
    The part I need help on is this:
    //if(event exists on this day
    // Get results
    // print link for viewing
    // if (after today) print link for edit
    I'm looping through each day of the month to print the days. I have the month, day, year as integers. How can I create a date object out of that and compare it to today's date to test if it's before or after today???
    All the function in the Date class that I think would do this have been deprecated.

    Need Help with Dates
    Here is some information about dates:
    There are many edible palm fruits, and one of the most widespread and favored of these is the data (Phoenix dactylifera). Dates were cultivated in ancient land from Mesopotamia to prehistoric Egypt, possibly as early as 6000 B.C. Then--as now--dates were a staple for the natives of those dry regions. Much later, Arabs spread dates around northern Africa, and dates were introduced into California by the Spaniards in 1765, around Mission San Ignacio.
    The date prefers dry, hot climates, because date fruits are injured at temperatures of 20 degrees F, and the damp climate of the California coast was not favorable for fruit production. In the mid-1800s, the date industry developed in California's hot interior valleys and in Arizona. Now the date industry in the United States is localized mostly in the Coachella Valley, where the sandy soils permit the plants to be deeply irrigated. Today the new varieties, mostly introduced in this century, produce about 40 million pounds of dates per annum, or over 60% of the dates consumed in this country. The rest are imported mainly from Persia. According to one survey, about one million people are engaged entirely in date palm cultivation worldwide.
    Hope that helps.

  • Does Mac have a tool similar to snippy or snagit? Do not use Windows. Need to copy data off archived online newspapers.

    Does Mac have a tool similar to snippy or snagit?
    I do not have Windows.
    Need to copy data off archived online newspapers. Unable to do so with screenprint, etc.
    Heard windows has a tool called Snippy, looked at Snagit, but read free download agreement and it reads a bit 'fishy', as the download is only free for 30 days, etc and it talks about fees etc. 

    Mac does have two utilities:   Snagit for Mac and LittleSnapper.  There are a few others.  Snag it for mac is just a better "clippings" thing.  It will not scan your image.  There are OCR products available for Mac which might be able to take your clipping document and scan it back to text.
    Snagit Mac is here:  http://www.techsmith.com/snagit-mac-features.html
    To see OCR stuff do a google search for:  Mac OCR Software
    And you'll get quite a few.

  • I need to copy data from a table in one database (db1) to another table in

    Hi
    I need to copy data from a table in one database (db1) to another table in another database (db2).
    I am not sure if the table exists in db2,,,if it doesnot it needs to be created as well data also needs to be inserted...
    How am I supposed to this using sql statements..?
    I shall be happy if it is explained SQL also...
    Thanking in advance

    How many rows does the table contains? There are manyway you can achieve this.
    1. export and import.
    2. create a dblink between two databases and use create table as select, if structure doesnot exists in other database, if structure exists, use, insert into table select command.
    example:
    create a dblink in db2 database for db1 database.
    create table table1 as select * from table1@db1 -- when there is no structure present
    -- you need to add constraints manually, if any exists.
    insert into table1 select * from table1@db1 -- when there is structure present.
    If the table contains large volume of data, I would suggest you to use export and import.
    Jaffar

  • Need help in date Validation Urgent

    Hi ,
    We need help in Date Validation.
    we have 2 Date fields on the form Start Date, End Date
    The requirement is: End Date (May not be greater than 30 years from the start date).
    I have written following script on End Date Exit event. But the problem is its calculating 30 years from the Current Date not from the Start Date
    var tDate = util.scand("mm/dd/yyyy", new Date());
    var M = tDate.getMonth();
    var D = tDate.getDate();
    var Y = tDate.getFullYear();
    var SRes = util.printd("yyyy-mm-dd", new Date((Y+30), M,D) );
    //app.alert(SRes)if (SRes <= this.rawValue){
    app.alert("May not be greater than 30 years from the start date")
    xfa.host.setFocus(
    this);}
    can someone please help me
    Regards,
    Jay

    Hi,
    You'll need to get javascript date from LCD field, and calculate & compare with the future date in javascript date.
    try following script;
    var sDate = StartDate.rawValue;
    var wkStartDate = util.scand("yyyy-mm-dd", sDate);
    var nYear = wkStartDate.getFullYear();
    var nMonth = wkStartDate.getMonth();
    var nDay = wkStartDate.getDate();
    var wkFutureDate = new Date(nYear  + 30 , nMonth, nDay);
    sDate = EndDate.rawValue;
    var wkEndDate = util.scand("yyyy-mm-dd", sDate);
    if (wkEndDate.getTime() > wkFutureDate.getTime()){
      xfa.host.messageBox("May not be greater than 30 years from the start date");
      xfa.host.setFocus(this);

  • Import data using Excel and Oracle SQL Developer - I need some help

    Dear friends,
    I'm using Oracle SQL Developer 1.5.1 and I need to import an Excel file into a database table. If I try to import this file in XLS format, fields and headers are correctly being shown and separated, but if I press "Next" button, it simply doesn't do anything - it stays stopped.
    I did some search here in this forum and it seems to me that, when you try to import a file via XLS format, SQL Developer has bugs. Is this correct?
    If I save the same file in CSV format and try to import the same file, it goes ahead, but SQL Developer is not separating fields and headers correctly. It combines all CSV fields into one - let's say Column0 and fields 1;TEST;01/01/2000 below the same Column0.
    Saving the file in CSV format is not a problem, taking a very little time. But I don't know how to make SQL Developer import it correctly. Could somebody please help me? Thanks in advance.
    Best regards,
    Franklin

    Hello K,
    yes, you're right. I found the following topic after posting this question here.
    Re: After update to 1.5.1, import from Excel fails
    I downloaded version 1.5.0 and I'll use it whenever I import data from Excel.
    Thanks,
    Franklin

  • Apps don't uninstall/ just an ICON. Advice  Need HELP!!!

    PLEASE HELP!!!
    1. I had a original droid and backed up everything with backup pro. When I got my X I switch out the SD cards and restored everything to the X.
    Now I have some apps that don't work. I've tried many different ways to uninstall it but it says it doesn't exist. So basically there is just an icon from the app that I can't get rid of. Any ideas on this???
    2. Also. Is there a task killer that manages which tasks to kill.  Not just when I push kill but will kill the app if it tries to restart itself. Because we all know that if you use a task killer, within seconds if you press it again the apps are already restarting. I need something that can stop some apps from permanently restarting or running in the background, or connecting to the internet.
    3. Is there an app that manages which apps can connect to the internet. Because most apps required full access to the network or internet. What if I don't want them to be able to do that unless I'm going to be using that app. Anyone know of an app like that?
    4. If you have tether for android they says it gets up to like 5 Mbps, but mine didn't so I contacted their support. They said do you have other programs using the network/internet. Well yes..Most of the apps all require full internet/network access. So my speed was only Mbps. That is why I asked question number 3. Anyone have any tips to make it faster? Or turn off other apps/programs using the network??
    5. Rooting my phone. What are the advantages of a rooted droid?
    6. When I save apps to the SD card will my options to place widgets/shortcuts etc change. Like I use jorte, a calendar. I used to have the option to put the calendar on the home screen. Now when I click and hold the screen and it gives me the android/ Motorola widgets, it isn't available any more?? Will Putting things like this on my SD card effect there syncing if the program or app requires it???
    7. Any battery savers that do any of the things mentioned above? Or work really well
    8. If anyone knows a lot about electronics, Home theater speakers, receivers, would you please contact me because I need help in that department. If more technical stuff, not just hooking up some wires.
    Thank you in Advance

    NDerr wrote:
    PLEASE HELP!!!
    1. I had a original droid and backed up everything with backup pro. When I got my X I switch out the SD cards and restored everything to the X.
    Now I have some apps that don't work. I've tried many different ways to uninstall it but it says it doesn't exist. So basically there is just an icon from the app that I can't get rid of. Any ideas on this???
    I am going to make a wild guess that you might have installed some apps to your sd card when you had it in the Droid or if you used Backup Pro you restored system settings from the backup file and this can cause all kind of issues even if done to original device.
    My suggestion is
    1. Copy everything off of card and format it. AND THEN COPY ONLY NEEDED FILES BACK ON CARD.. 
    2. Hard Reset device
    3. ONLYrestore apps, appointments, mms and sms.
    2. Also. Is there a task killer that manages which tasks to kill.  Not just when I push kill but will kill the app if it tries to restart itself. Because we all know that if you use a task killer, within seconds if you press it again the apps are already restarting. I need something that can stop some apps from permanently restarting or running in the background, or connecting to the internet.
    There really isn’t a app that you can use to keeps apps from running all together but Advance Task Killer is a good app to help because you can set it to close all apps when the device backlight is turned off, you can set it to do it on a time schedule but I learned that  option can use a good amount of battery.  The backlight option shows no major power use.
     3. Is there an app that manages which apps can connect to the internet. Because most apps required full access to the network or internet. What if I don't want them to be able to do that unless I'm going to be using that app. Anyone know of an app like that?
    There isn’t anyway to restrict a app from the web, when you install a app that reports it requires this access the program is granted clearance when you agree to install app.
    4. If you have tether for android they says it gets up to like 5 Mbps, but mine didn't so I contacted their support. They said do you have other programs using the network/internet. Well yes..Most of the apps all require full internet/network access. So my speed was only Mbps. That is why I asked question number 3. Anyone have any tips to make it faster? Or turn off other apps/programs using the network??
    There isn’t any way to change this because this is controlled more from the network than the phone because the apps that would access to update itself would not affect the network transfer that much  plus the network never really transfers at the advertised speeds in most areas..
    Also are you using a 3rd party app or the Verizon tethering app because the 3rd party apps do not access the web through the same web protocols that restricts data connections speeds as well.
    5. Rooting my phone. What are the advantages of a rooted droid?
    This information can not be discussed on this forum because  doing this to your device can void your warranty on your device and Verizon frowns on this.
    6. When I save apps to the SD card will my options to place widgets/shortcuts etc change. Like I use jorte, a calendar. I used to have the option to put the calendar on the home screen. Now when I click and hold the screen and it gives me the android/ Motorola widgets, it isn't available any more?? Will Putting things like this on my SD card effect there syncing if the program or app requires it???
    Only apps with this supported option will allow you to move the app to the SD Card, usually the developer configures the apps that can be installed on SD Card so the system will not be impacted by installing the apps on card. Some widgets do get lost when coping to SD Card but when the developers notice this issue they usually work in a fix later.
    7. Any battery savers that do any of the things mentioned above? Or work really well
    I use only the stock battery saver app and configure it to work well with my use habits, I do not suggest a 3rd party power management app but other may have other opinions on this subject. 
    8. If anyone knows a lot about electronics, Home theater speakers, receivers, would you please contact me because I need help in that department. If more technical stuff, not just hooking up some wires.
     Cant help you here…
    Thank you in Advance

  • Download SQL Developer for Linux -- does it point to the Win version?

    Hi everyone,
    is it possible that the software behind the Linux version is the windows version instead?
    --> Oracle SQL Developer 1.0, patch 1 (1.0.0.15.27)
    --> --> http://www.oracle.com/technology/software/htdocs/sqllic.html?http://download.oracle.com/otn/java/sqldeveloper/sqldeveloper-1527-no-jre.zip
    Best regards Georg

    There are really just 3 different downloads - one for Windows that is bundled with the jre and tools.jar, another that is specific to Mac and the third is the unbundled release. The unbundled is for Windows users that already have a jdk 1.5 or for Linux users (who need to have or get a jdk 1.5). After initial feedback that it was difficult to decide which to select, we decided to list specific to your platform, even though that means a duplicate link behind the scenes.
    -- Sharon

  • Cannot Migrate SQL Server Adventureworks Need Help

    Has anyone been able to migrate Adventureworks from SQL Server 2005 to Oracle? I've been trying but keep getting errors in the "Build" step.
    I would appreciate any help.

    The AdventureWorks example database in SQL Server relives heavily on the XML syntax within their stored procedures, functions, views. AdventureWorks example database was written to showcase new features of SQL Server 2005.
    XML syntax is not currently handled by the T-SQL Translator, as for our initial releases we want to concentrate more on the more widely used syntax.
    If your own database relies heavily on XML syntax then you will have to manually modify those statements.
    If on the other hand your just trying out the SQL Developer Migration Workbench can I suggest using the Northwind example database.
    Regards,
    Dermot

  • Unable to download SQL Developer

    I can't download the current version of SQL Developer. Would someone at Oracle please see what's wrong? Just getting a page not found error...

    thank you

Maybe you are looking for

  • Snow Leopard Server - Can't delete users in WGM?

    Hi! I have 2 Mac OS X Server 10.6.4 machines. One is an OD-master and the other is a replica. Since last week I haven't been able to delete user accounts in WGM. It doesn't give me any error and at first glance it looks like the account is deleted, b

  • Frequent time-outs loading web-pages

    For the last two or three days I have great difficulty getting to web-sites. Occasionally it works OK but most of the time the connection eventually times out. Google searches work OK, e-mail works OK. (I have broadband and airport extreme, OSX 10.4.

  • PDF form spool generation

    Hi I have a requirement to generate spool number from a webdynpro object. where  I have alerady the PDF format xml output. what is the function module that can be used to pass xml string and get spool number? I am using RSPO_OPEN_SPOOLREQUEST functio

  • IExpenses Global Policy Link - Open web page

    in iExpenses there are some links at the very top and bottom of each page. One of these is the 'Global Policy' link. This link is not defined in a page - instead it is defined in the iExpenses application menu. The menu entry references function 'Vie

  • Thumbnails don't show changes

    I am frustrated by the fact that my thumbnails do not reflect any changes I make to the image. In addition everytime I view the image by clicking on the thumbnail...the image shows in the prview window but then 2 seconds later seems to zoom in and th