如何使用 Oracle SQL Developer 将数据从 Excel 复制到表

发布于 2024-12-17 12:52:03 字数 226 浏览 0 评论 0原文

是否有其他方法可以使用 Oracle SQL Developer 从 Excel 工作表复制数据并将其粘贴到表中!?

现在,我通过在 select 语句末尾写入(用于更新)来使用(PL/SQL Developer),例如:

Select * from ABD
for update

然后将 Excel 中的列粘贴到表中...

问候 阿德尔

Is there any alternative way to copy the data from Excel sheet and paste it into a table using Oracle SQL Developer!?

For now I am using (PL/SQL Developer) by writing (for update) at the end of the select statement, Ex:

Select * from ABD
for update

Then paste the columns from Excel to the table...

Regards
Adel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

柠檬心 2024-12-24 12:52:04

这并不完全是复制和粘贴,而是您可以使用 Oracle SQL Developer 从 Excel 导入数据。

导航到要将数据导入到的表,然后单击数据选项卡。

单击数据选项卡后,您应该会注意到一个下拉菜单,上面写着 Actions...
指示数据选项卡和操作...下拉菜单的位置

单击操作...并选择底部选项导入数据...

然后只需按照向导选择正确的工作表以及要导入的列即可。

编辑:要查看数据选项卡:

  1. 选择创建表的SCHEMA。(从“连接”中选择左侧窗格中的选项卡)。
  2. 右键单击SCHEMA并选择SCHEMA BROWSER
  3. 从列表中选择您的表(通过提供您的架构)。
  4. 现在您将看到DATA选项卡。
  5. 单击操作导入数据...

It's not exactly copy and paste but you can import data from Excel using Oracle SQL Developer.

Navigate to the table you want to import the data into and click on the Data tab.

After clicking on the data tab you should notice a drop down that says Actions...
indicating the position of the Data tab and Actions... drop down

Click Actions... and select the bottom option Import Data...

Then just follow the wizard to select the correct sheet, and columns that you want to import.

EDIT : To view the data tab :

  1. Select the SCHEMA where your table is created.(Choose from the Connections tab on the left pane).
  2. Right click on the SCHEMA and choose SCHEMA BROWSER.
  3. Select your table from the list (by giving your schema).
  4. Now you will see the DATA tab.
  5. Click on Actions and Import Data...
何其悲哀 2024-12-24 12:52:04

这些选项对我来说都没有出现。从 Excel 中粘贴数据的方法如下:

  • 在电子表格数据的左侧添加一个额外的列(如果您
    PL/SQL Developer 中没有显示行号,您可能没有
    在左侧添加一个额外的空列)。

  • 复制电子表格中的数据行,包括空的数据行
    列。

  • 在 PL/SQL Developer 中,以编辑模式打开表。你可以
    在对象浏览器中右键单击表名称并选择编辑数据
    或者编写您自己的包含 rowid 的 select 语句,然后单击
    锁图标。确保您的列的顺序与您的列中的顺序相同
    电子表格。

  • 这是我花了很长时间才弄清楚的部分:单击左侧
    第一个空行的一侧以突出显示它。如果你这样做,它将不起作用
    没有突出显示第一个空行。

  • 使用 Ctrl+V 或右键单击“粘贴”照常粘贴。

当我需要时,我无法在任何地方找到此信息,因此我想确保将其发布。

None of these options show up for me. The way to paste data from Excel is as follows:

  • Add an extra column to the left of your spreadsheet data (if you
    don't have row numbers showing in PL/SQL Developer you may not have
    to have an extra empty column to the left).

  • Copy the rows of data from your spreadsheet including the empty
    column.

  • In PL/SQL Developer, open your table in edit mode. You can
    right-click the table name in the object browser and select Edit Data
    or write your own select statement that includes the rowid and click
    the lock icon. Be sure your columns are ordered the same as in your
    spreadsheet.

  • Here's the part that took me forever to figure out: click on the left
    side of the first empty row to highlight it. It will not work if you
    don't have the first empty row highlighted.

  • Paste as usual using Ctrl+V or right-click Paste.

I couldn't find this info anywhere when I needed it, so I wanted to be sure to post it.

奈何桥上唱咆哮 2024-12-24 12:52:04

您可以直接右键单击表名称 - 它还会显示“导入数据..”选项。然后您可以按照几个简单的步骤进行操作成功。

有谁知道如何从Excel中导入包含数据的新表?

You may directly right-click on the table name - that also shows the "Import Data.." option.Then you can follow few simple steps & succeed.

Do anyone know how to import a new table with data from excel?

贵在坚持 2024-12-24 12:52:04

单击“连接”窗口中的“表”,选择“导入数据...”,按照向导操作,系统将要求您输入新表的名称。

Click on "Tables" in "Connections" window, choose "Import data ...", follow the wizard and you will be asked for name for new table.

三生殊途 2024-12-24 12:52:04

对于 PLSQL 版本 9.0.0.1601

  1. 从表的上下文菜单中,选择“编辑数据”
  2. 插入或编辑数据
  3. 更改后

For PLSQL version 9.0.0.1601

  1. From the context menu of the Table, choose "Edit Data"
  2. Insert or edit the data
  3. Post change
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文