Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Create an external table (external table)

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Upload "Email-Match Export.csv" to the SFTP Server

------------create directory

create directory xtern_data_dir_yilin as '/backup/yilin';

------------grant access

GRANT READ, WRITE ON DIRECTORY xtern_data_dir_yilin TO willldb;

Login to Database with WILLLDB

------------create table

SQL> CREATE TABLE survey_respdts_yilin

2 (

3 email_address VARCHAR(200)

4 )

5 ORGANIZATION EXTERNAL

6 (DEFAULT DIRECTORY xtern_data_dir_yilin

7 ACCESS PARAMETERS (

8 RECORDS DELIMITED BY NEWLINE

9 FIELDS TERMINATED BY ".com" LDRTRIM

10 )

11 LOCATION ('Email-Match Export.csv'));

CREATE TABLE survey_respdts_yilin

*

ERROR at line 1:

ORA-25153: Temporary Tablespace is Empty

SQL> create temporary tablespace temp01 tempfile 'd:oracleoradatatestdbtemp01

2 .dbf' size 100m;

Tablespace created.

SQL> alter database default temporary tablespace temp01;

Database altered.

SQL> CREATE TABLE survey_respdts_yilin

2 (

3 email_address VARCHAR(200)

4 )

5 ORGANIZATION EXTERNAL

6 (DEFAULT DIRECTORY xtern_data_dir_yilin

7 ACCESS PARAMETERS (

8 RECORDS DELIMITED BY NEWLINE

9 FIELDS TERMINATED BY ".com" LDRTRIM

10 )

11 LOCATION ('Email-Match Export.csv'));

Table created.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report