Viewing 15 posts - 31 through 45 (of 63 total)
Yea, there isn't direct equivalent, but often rownum is used to reduce just number of rows.
rownum <= 1 is the same as rownum = 1 and means no more...
November 2, 2008 at 7:07 am
I've written a small article How to choose database about that topic..
Speaking about performance - there are tons of problems you can and HAVE TO solve differently in Oracle and...
November 1, 2008 at 2:01 pm
GilaMonster (10/3/2008)
There's no direct equivalent. SQL doesn't have the concept of a row's position in the table.
BTW rownum has nothing to do with the row position in table. Rownum get's...
November 1, 2008 at 1:39 pm
SQL> create or replace function sleep (i in number)
2 return number is
3 begin
4 dbms_lock.sleep(i);
5 ...
November 1, 2008 at 1:17 pm
Mazharuddin Ehsan (8/27/2008)
1. No one is disputing the relevance RMAN as a backup tool
or the viability of a HOT or COLD database backup .
Not...
August 28, 2008 at 12:57 am
Yeahhh I'm not true DBA, more developer but even I know that RMAN is the way to go today. It BTW can check also for corrupted blocks and restore just...
August 27, 2008 at 7:32 am
1. Data Model Patterns: Conventions of Thought by David C. Hay, ISBN: 0932633293;
2. The Data Model Resource Book, Vol. 1: A Library of Universal Data Models for All Enterprises by...
August 16, 2008 at 12:22 pm
You can look in SQL join types chapter Difference between predicates in ON clause vs. predicates in WHERE clause for a theoretical algorithm how joins are being performed and why...
August 15, 2008 at 3:06 pm
win (8/7/2008)
Also, you cannot issue a select statement inside a procedure. You need to select into a container, which can be single variable, record or collection of variables/records.
Or ref cursor,...
August 8, 2008 at 1:26 am
If you'd qoute my message you'd seen what I wrote. Ok anyway the link is as follows:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0:::: P11_QUESTION_ID:1288401763279
It is of course without the space before P but I...
August 5, 2008 at 11:11 am
You won't get along with just changing this row. First thing - this priocedure simply won't work because syntax is different. Second thing - as you will be using one...
August 5, 2008 at 12:48 am
BTW if you are on at least 10g then check data pump (impdp and expdp) - they have wayyyyyy more capabilities than original imp/exp.
Gints Plivna
August 2, 2008 at 1:38 pm
As we have already discussed many things in thread mentioned above 😉 just a few notes
Jeff Moden (8/2/2008)
August 2, 2008 at 11:31 am
Oracle doc Oracle® Database Backup and Recovery Basics may be a good staring point.
And then Oracle® Database Backup and Recovery Advanced User's Guide 🙂
Gints Plivna
August 1, 2008 at 3:25 pm
A while ago I wrote an article How to choose database indicating some criteria one should look at.
Gints Plivna
July 29, 2008 at 1:18 am
Viewing 15 posts - 31 through 45 (of 63 total)