Collections:
Export Data to a CSV File in Oracle
How To Export Data to a CSV File in Oracle?
✍: FYIcenter.com
If you want to export data from a table to a file in CSV format, you can use the following steps:
Your CSV file, \temp\MyTeam.csv, is ready. Open it, you will see:
"FIRST_NAME","LAST_NAME","MANAGER_ID" "Gerald","Cambrault","100" "Lex","De Haan","100" "Alberto","Errazuriz","100" "Adam","Fripp","100" "Michael","Hartstein","100" "Payam","Kaufling","100" "Neena","Kochhar","100" ...
CSV files can be open by Microsoft Excel.
⇒ Export Data to an XML File in Oracle
⇐ File Formats Supported on Export Data in Oracle
2019-01-26, 2587🔥, 0💬
Popular Posts:
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...