如何使用 Oracle SQL Developer 将数据从 Excel 复制到表
是否有其他方法可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这并不完全是复制和粘贴,而是您可以使用 Oracle SQL Developer 从 Excel 导入数据。
导航到要将数据导入到的表,然后单击
数据
选项卡。单击数据选项卡后,您应该会注意到一个下拉菜单,上面写着
Actions...
单击
操作...
并选择底部选项导入数据...
然后只需按照向导选择正确的工作表以及要导入的列即可。
编辑:要查看数据选项卡:
SCHEMA
。(从“连接”中选择左侧窗格中的选项卡)。SCHEMA
并选择SCHEMA BROWSER
。DATA
选项卡。操作
和导入数据...
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...
Click
Actions...
and select the bottom optionImport Data...
Then just follow the wizard to select the correct sheet, and columns that you want to import.
EDIT : To view the data tab :
SCHEMA
where your table is created.(Choose from the Connections tab on the left pane).SCHEMA
and chooseSCHEMA BROWSER
.DATA
tab.Actions
andImport Data...
这些选项对我来说都没有出现。从 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.
您可以直接右键单击表名称 - 它还会显示“导入数据..”选项。然后您可以按照几个简单的步骤进行操作成功。
有谁知道如何从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?
单击“连接”窗口中的“表”,选择“导入数据...”,按照向导操作,系统将要求您输入新表的名称。
Click on "Tables" in "Connections" window, choose "Import data ...", follow the wizard and you will be asked for name for new table.
对于 PLSQL 版本 9.0.0.1601
For PLSQL version 9.0.0.1601