0
votes
4answers
43 views
what the difrent between primary..unique..foreign key, index
hi
What is the difference between primary, unique and foreign key constraints, and indexes?
I work on Oracle 10g and Sql Server 2008
thanks in advance
0
votes
1answer
52 views
Displaying each of the 24hrs of the day…
Hi
I was trying to display just the hours in 24hr format like:
select
to_char(trunc(sysdate+(1/24)),'HH24:mi') from dual
But this only always returns 00:00. How can I sho …
0
votes
1answer
32 views
Do database cursors pick up changes to the underlying data?
Quick question about cursors (in particular Oracle cursors).
Let's say I have a table called "my_table" which has two columns, an ID and a name. There are millions of rows, but …
2
votes
3answers
33 views
XSLT transformations on very large files
We are using XSLT to generate reports of our data. The data is currently stored in Oracle as XML documents (not using the XML type, but normal CLOB). We select the right XML docume …
0
votes
3answers
42 views
How to drop all user tables?
How can I drop all user tables in oracle?
I have problem with constraints. When I disable all it is still no possible.
4
votes
6answers
121 views
Why is PLSQL slower than SQL*Plus
I have several Oracle queries that perform well when run through SQL*PLUS. However when they are executed as a part of a PL/SQL package, they take MUCH longer.
Our DBA has watche …
0
votes
2answers
22 views
How do I compare rows in an Oracle Table?
I have a table that's like this
rank continuationofrow
1 row
2 row
3 row
4 row
4 row
4 row
I'm trying to identify the previous rows rank number within a …
1
vote
3answers
52 views
ORA-1555: snapshot too old: rollback segment number
Any idea about
ORA-1555: snapshot too old: rollback segment number
I am getting this error and nothing seems to be wrong. Please state under what conditions in may occur and how …
0
votes
1answer
24 views
Running Oracle 11g r1 on Windows 7 x64 getting 64 bit error
I have installed Oracle 11g r1 64 bit on Windows 7. I am able to connect to it using Sql Developer and a command line tool written in .Net that is 32 bit. I am using Visual Stud …
2
votes
3answers
36 views
Open Source Equivalents to Erwin
I am aware of CA/Erwin community edition but it is constrained to 25 objects. I have also tried modeling in Visio which was painful. Curious to learn of any open source equivalents …
0
votes
2answers
49 views
Oracle same table name on different schema?
Is it possible to have same table name on different schema with different data on the tables within the one database? I think rather than create multiple database (that hold same t …
0
votes
2answers
18 views
Including not found criteria in the result
I have this query
select BUnit, value from myTable where BUnit in (555,556,557,558)
and this values for Bunit are constructed dynamicaly, ie. a program builds queries on demand …
1
vote
2answers
26 views
Migrating data between 2 databases in Oracle 9i
Hi,
I am new to Oracle. Since we have rewritten an earlier application , we have to migrate the data from the earlier database in Oracle 9i to a new database , also in 9i, with to …
1
vote
3answers
56 views
Problem With Simple PL/SQL Program
Here is my simple PL/SQL program:
DECLARE
CURSOR c1 is
SELECT typ, specifikacia_typu, spz FROM Auta
WHERE (substr(spz, 1, 2) = 'KE' OR substr(spz, 1, 2) = …
1
vote
3answers
41 views
Oracle Analytics Date Range
While researching Oracle Analytics, I came across this query:
select an_id,
a_date,
min(a_date) over (
partition by an_id, trunc(a_date)
order by a_date …
