0
votes
4answers
82 views
SQL aggregation question
I have three tables:
unmatched_purchases table:
unmatched_purchases_id --primary key
purchases_id --foreign key to events table
location_id --which store
purchase_date
item_id --i …
1
vote
1answer
17 views
What’s a good way to handle “async” commits?
I have a WCF service that uses ODP.NET to read data from an Oracle database. The service also writes to the database, but indirectly, as all updates and inserts are achieved throug …
2
votes
2answers
26 views
External Tables vs SQLLoader
So, I often have to load data into holding tables to run some data validation checks and then return the results.
Normally, I create the holding table, then a sqlldr control file a …
1
vote
1answer
18 views
How to execute a procedure with DBMS_SCHEDULER.CREATE_JOB procedure
I want to create a job that would drop a database object at a given date. The job created all right but the procedure is not executed. Tried executing the procedure alone and it wo …
1
vote
3answers
38 views
Extract Unique Time Slices in Oracle
I use Oracle 10g and I have a table that stores a snapshot of data on a person for a given day. Every night an outside process adds new rows to the table for any person whose had a …
1
vote
6answers
62 views
oracle pl/sql bug: can’t put_line more than 2000 characters
Has anyone else noticed this phenomenon where dbms_output.put_line is unable to print more than 2000 characters at a time?
Script is:
set serveroutput on size 100000;
declare
…
0
votes
3answers
36 views
Using Index in oracle
How to use index in a select query in oracle? When creating indexes can enhance performance?
How to use indexed explicitly?
2
votes
6answers
56 views
Should I model with an association table for future flexibility?
This is a database modeling question.
I normally model one-to-many with a standard parent-child table setup, and I normally model many-to-many with an association table between th …
0
votes
1answer
31 views
Update portions of Data in Oracle
Hoping someone can assist with this data update using Oracle.
I have a situation where I have data/records that may look like this:
Table Name: IPDATA
Column Name with these rec …
1
vote
2answers
35 views
delete on batch
I have a db table that has > 14M rows.
If I attempt to perform:
delete from table
The connection hangs out.
How can I delete all the rows, in "batchs" ( I guess ) so they a …
2
votes
1answer
40 views
Using “WITH AS” keywords when migrating data in SQL…
Is it possible to do this in SQL?
If I remove the INSERT statement the SELECT works, if I have the insert Oracle complains that "missing SELECT keyword".
WITH tmpdata AS
(
//SOME …
1
vote
2answers
30 views
Oracle: how to set user password unexpire?
There is some construction
ALTER USER scott PASSWORD EXPIRE
But how can I similair set password to unexpired state?
0
votes
1answer
16 views
Integration test failing through NUnit Gui/Console, but passes through TestDriven in IDE
I am using NHibernate against an Oracle database with the NHibernate.Driver.OracleDataClientDriver driver class. I have an integration test that pulls back expected data properly …
1
vote
3answers
60 views
‘NOT LIKE’ in an SQL query
Hey guys,
Could you tell me why this simple query returns 'ORA-00936: missing expression' (the database is Oracle as you can tell):
SELECT * FROM transactions WHERE id NOT LIKE ' …
0
votes
1answer
17 views
PL/SQL to Select a Partition Window of Data
Working with Oracle 11g here.
I'm trying to figure out how to write a specific query against a sample table below:
ID TYPE PRIORITY STATUS DATE
------------------------- …
