由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - why did this sql statement always fail in oracle?
相关主题
Rapid SQL V.S. TOAD装不上 Oracle 11g
以后需要经常query oracle DB,请问应该用什么软件。请教。Toad for oracle setting. first 500 or whole table!
SQL Developer, how to switch schema?请教一个oracle的quick question
有沒有人討論一下 Query Tool?如果命令有问题, 执行了很长时间都没有结束
请问如果短期提高写sql advanced query的能力ORACLE总是莫名其妙地执行我没有输入的命令
Toad or DBVisualizer如何显示中文?shame on oracle
求toad keyoracle菜鸟问题。
请教一下一个关于SQL SERVER非常基本的问题请教,如何单步调试sql script?
相关话题的讨论汇总
话题: records话题: table话题: oracle话题: always话题: pc
进入Database版参与讨论
1 (共1页)
e******r
发帖数: 220
1
I tried to find duplicate records from a table of 30,000,000 records:
select count(*), link, id from table group by link, id having count(*) > 1;
It always died. any suggestions ?
thanks
e******r
发帖数: 220
2
toad complains that it is out of menory.

any
w*r
发帖数: 2421
3
Table maybe created with parallel level too high and it ran out of PGA .
try add parallel hint in the query to make it sequential.

【在 e******r 的大作中提到】
: toad complains that it is out of menory.
:
: any

e******r
发帖数: 220
4
I have already alter the table from parallel to nonparallel, but
it is still too slow to progress 30 million records

【在 w*r 的大作中提到】
: Table maybe created with parallel level too high and it ran out of PGA .
: try add parallel hint in the query to make it sequential.

c*****d
发帖数: 6045
5
30 million records take some time

【在 e******r 的大作中提到】
: I have already alter the table from parallel to nonparallel, but
: it is still too slow to progress 30 million records

e******r
发帖数: 220
6
The current problem is not that it takes time, but my PC crashed once
it was lauched a while.

【在 c*****d 的大作中提到】
: 30 million records take some time
w*r
发帖数: 2421
7
ur pc?????
not the process on oracle???
are u pulling records from oracle?
what tool?

once

【在 e******r 的大作中提到】
: The current problem is not that it takes time, but my PC crashed once
: it was lauched a while.

B*****g
发帖数: 34098
8
If toad version is lower than 9, upgrade now.
发信人: eecareer (没睡醒, 明天接着睡), 信区: Database
标 题: Re: why did this sql statement always fail in oracle?
发信站: BBS 未名空间站 (Sun Nov 16 13:59:01 2008)
toad complains that it is out of menory.

【在 w*r 的大作中提到】
: ur pc?????
: not the process on oracle???
: are u pulling records from oracle?
: what tool?
:
: once

a*******t
发帖数: 891
9
query against 30M records without knowing how much data it is returning?
1st of all, I don't think it's a good idea to query against 30M records
2nd, if it is returning millions rows of of results all at once, no PC or
server can handle that.

【在 e******r 的大作中提到】
: The current problem is not that it takes time, but my PC crashed once
: it was lauched a while.

1 (共1页)
进入Database版参与讨论
相关主题
请教,如何单步调试sql script?请问如果短期提高写sql advanced query的能力
谁能推荐关于 sql query optimization 方面的书?Toad or DBVisualizer如何显示中文?
oracle script out求toad key
How to display chinese characters in Oracle SQL*Plus?请教一下一个关于SQL SERVER非常基本的问题
Rapid SQL V.S. TOAD装不上 Oracle 11g
以后需要经常query oracle DB,请问应该用什么软件。请教。Toad for oracle setting. first 500 or whole table!
SQL Developer, how to switch schema?请教一个oracle的quick question
有沒有人討論一下 Query Tool?如果命令有问题, 执行了很长时间都没有结束
相关话题的讨论汇总
话题: records话题: table话题: oracle话题: always话题: pc