- 1
- 0
- 约1.47万字
- 约 65页
- 2016-11-26 发布于河北
- 举报
13管理表[65p]
外部表ext_department里面已经有数据了,我们就可以把这些数据导入到真正的Oracle的表中。 如:insert into department select * from ext_department; 可以使用user_external_tables来查看当前用户可以使用的外部表。 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 更改、删除外部表 修改默认目录对象 Create directory test_dir1 AS ‘E:\external1’; Alter table test_dept default directory test_dir1; 修改文件位置 Alter table ext_department location(’new.txt’); 修改访问参数 Alter table test_dept access parameters (fields terminated by ‘;’); 删除外部表 Drop table test_dept; 删除目录对象 Drop directory test_dir; Evaluation only. Created w
原创力文档

文档评论(0)