由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - a simple question on Oracle
相关主题
请问谁知道unix的oracle下如何打印Table啊?how to connect to remote Oracle database, help me!!!
how to dump a oracle database to csv file?How to start a Oracle database
Oracle 11g 输出里怎么去掉抬头?我的oracle 怎么了?
oracle: 有多少在开始用 bigfile tablespaceOracle down
found a way to corrupt oracle on NTquestion on JOIN on Oracle
Error Code 01034?Oracle的一个问题
connect to an oracle server on anoter machineHow to creat user in Oracle?
How to let oracle execute a procedure every hour?editting .sql file problem
相关话题的讨论汇总
话题: oracle话题: spool话题: simple话题: question话题: records
进入Database版参与讨论
1 (共1页)
e******r
发帖数: 220
1
If after running sql statements, there are many lines of records
returned such that it couldn't display on many screens.
What could we do to make it easier to study those records by eyes?
thanks
c*****d
发帖数: 6045
2
你是问如何格式化输出吗
set linesize 120
set pagesize 500
format [colname] a20
j***a
发帖数: 10844
3
format and use spool to save the output.
s*****c
发帖数: 24
4
sqlplus can redirect the output to a file: spool?
j***a
发帖数: 10844
5

Why not?
Try this in sqlplus:
spool c:\sqloutput.txt
select * from emp;
spool off

【在 s*****c 的大作中提到】
: sqlplus can redirect the output to a file: spool?
1 (共1页)
进入Database版参与讨论
相关主题
editting .sql file problemfound a way to corrupt oracle on NT
Oracle not available - what's that mean? Error Code 01034?
Oracle SQL*Plus 的密码是啥阿?connect to an oracle server on anoter machine
In SQLPLUS, how to repeat typed commandHow to let oracle execute a procedure every hour?
请问谁知道unix的oracle下如何打印Table啊?how to connect to remote Oracle database, help me!!!
how to dump a oracle database to csv file?How to start a Oracle database
Oracle 11g 输出里怎么去掉抬头?我的oracle 怎么了?
oracle: 有多少在开始用 bigfile tablespaceOracle down
相关话题的讨论汇总
话题: oracle话题: spool话题: simple话题: question话题: records