In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Export csv format file from oracle (using plsql developer tool can easily export result set to csv file, but when there is no plsql tool, you can use the following methods to export query results to csv format file. )
:
one,
Oracle users log in to the linux system and edit the export file script csv_spool.sql
Set colsep
Set feedback off
Set heading off
Set trimout on
Spool / home/oracle/dept.csv
Select'"'| | DEPTNO | |'", "'| | DNAME | |'", "'| | LOC | |'" 'from scott.dept
Spool off
Exit
Spool / home/oracle/dept.csv-- here specify the path and file name of the exported csv file
Select'"'| | DEPTNO | |'", "'| | DNAME | |'", "'| | LOC | |'" 'from scott.dept
-- the export table name and field name are specified here
two,
The table name is formatted as username.table_name, use the following statement, and modify the corresponding table name and user name:
(dba permission is required to execute this statement)
SELECT 'select' | | wm_concat (cols) | | 'from' | | 'scott.dept' |'; 'FROM (
SELECT'"'| | column_name | |'"'AS cols from dba_col_comments WHERE table_name='DEPT' AND owner = 'SCOTT')
After modifying the statement, execute it in sqlplus, copy the result set to .sql, replace the select statement in the original file, and save exit.
three,
Execute >
Sqlplus-s username / password @ database name @ / path / csv_spool.sql
(the user here needs to have select access to the specified table in the sql script)
Fourth, check whether the dept.csv file is generated under the / home/oracle path.
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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.