1
vote
2answers
29 views
Oracle 11g rename. Guaranteed to be atomic?
Hi,
I have some (5) rename statements in a plsql script
drop table new;
rename old to new;
"old" tables hold very valuable information.
As I see it, if the rename command is guaranteed to be …
1
vote
1answer
12 views
Dropping Oracle index w/ .NET Oracle Data Access
So my .NET utility is performing massive amounts of inserts dynamically and it would make sense to drop the index while performing these and reconstructing it after performing the inserts.
Is the …
0
votes
1answer
28 views
Update last row with data from second to last row
CREATE TABLE Landmark
(
Index NUMBER
Birth DATE
Address VARCHAR2(50 BYTE)
City VARCHAR2(30 BYTE)
State CHAR(2 BYTE)
Zip VARCHAR2(15 BYTE)
...
Other properties
)
ALTER TABLE …
1
vote
8answers
131 views
Storing large prime numbers in a database
This problem struck me as a bit odd. I'm curious how you could represent a list of prime numbers in a database. I do not know of a single datatype that would be able to acuratly and consistently store …
2
votes
3answers
92 views
How to group by week in mysql?
Oracle's table server offers a built in function TRUNC(timestamp,'DY').
This function converts any timestamp to midnight on the previous Sunday. What's the best way to do this in mySQL?
Oracle also …
0
votes
2answers
20 views
NHibernate + Fluent NHibernate + Oracle Index
I have a table with more than 10 000 000 rows.
In TOAD this query works very well on it:
select /*+ INDEX(x IDX_CASHFLOW_COMPLEX)*/ *
from MYPR.CASHFLOW x
where fk_debet in (21856, 21854, 21855)
…
1
vote
3answers
34 views
Oracle sqlplus: relative paths starting at position of script
When I have two sql-files, one of them in a sub-directory
main_test.sql
sub/sub_test.sql
and sub_test.sqlcalls @../main_test.sql (or @@../main_test.sql) then this works fine when executing it from …
0
votes
0answers
15 views
inserting one account for each row and every dates and payments associated with that account in one row each in (ORACLE)
This how the script run from the begin to the end
INSERT INTO TAIWOS.TEMP_CAPONE_DATE_JUL2--------- This is working fine
SELECT FACS_ACCT_NUM, PROMISE_DATE, PROMISE_AMT, '0'
FROM …
1
vote
4answers
32 views
Oracle View problem with Select and divison zero
Hi Folks,
following problem, i want to create an view in Oracle wich calculates an "utilization rate in percent".
AS SELECT
sw.SWITCH_ID,
sw.ASSET_ID,
sw.SYSTEMNAME,
…
3
votes
2answers
86 views
Reason to use DECIMAL(31,0)
What is the reason that some people from Oracle background are using DECIMAL(31,0) for integers. In MySQL it is not efficient.
0
votes
4answers
34 views
Oracle — Import data into a table with a different name?
I have a large (multi-GB) data file exported from an Oracle table. I want to import this data into another Oracle instance, but I want the table name to be different from the original table. Is this …
0
votes
2answers
43 views
Executing oracle queries in Shell Script
Please tell me how can i excute an oralce query inside a shell script.I am writing a shell script where I need to execute the oracle queries and scripts inside the shell script.
What is the purpose …
0
votes
2answers
33 views
error/exception handling in oracle
i want to develop a procedure for following scenario.
I have one source, one target and one error table. Target and Error tables have all fields that are present in source tables. But the data …
0
votes
1answer
21 views
Oracle number to C# decimal
Hi!
I know there are several threads and posts regarding this issue in the internet and I've read them (not every article, I have to admit) but none of them did fully satisfy me.
My situation:
I'm …
0
votes
2answers
31 views
PL/SQL - use same pipelined function twice in the same query
I'm trying to use a pipelined function to save on time and reduce redundancy in my queries.
The function in question returns data from a reference table based on some input. Records in the main data …
