2
votes
8answers
1k views
How do I troubleshoot performance problems with an Oracle SQL statement
I have two insert statements, almost exactly the same, which run in two different schemas on the same Oracle instance. What the insert statement looks like doesn't matter - I'm looking for a troubl …
0
votes
Getting data from an oracle database as a CSV file (or any other custom text format).
I'm not a PERL programmer, but here's a little extra feature you might want to investigate. Have a look at the concept of external tables in Oracle. You create a table with a definition of somethin …
1
vote
What’s wrong with foreign keys?
I echo the answer by Dmitriy - very well put.
For those who are worried about the performance overhead FK's often bring, there's a way (in Oracle) you can get the query optimiser advantage …
0
votes
What’s the best way to handle one-to-one relationships in SQL?
I would create a supertype / subtype relationship.
THINGS
------
PK ThingId
ALPHAS
------
FK ThingId (not null, identifying, exported from THINGS)
AlphaCol1
Alp …
0
votes
Best way of store only date on datetime field?
If you're working on Oracle, inside your stored procedure use the TRUNC function on the datetime. This will return ONLY the date portion.
…
1
vote
Stored procedures reverse engineering
What database are the stored procedures in? Oracle, SQL Server, something else?
Edit based on comment: Given you're using Oracle then, have a look at …
3
votes
Are Foreign Keys really necessary in a database design?
They are important, because your application is not the only way data can be manipulated in the database. Your application may handle referential integrity as honestly as it wants, but all it takes …
0
votes
Inheritance in database?
Ramesh - I would implement this using supertype and subtype relationships in my E-R model. There are a few different physical options you have of implementing the relationships as well.
…
0
votes
How can I delete duplicate rows in a table
Manrico Corazzi - I specialize in Oracle, not MS SQL, so you'll have to tell me if this is possible as a performance boost:-
Leave the same as your first step - insert distinct values …
0
votes
How to get multiple records against one record based on relation?
If you use Oracle you can create a PL/SQL function you can use in your query that accepts an organization_id as input, and returns the first name of all employees belonging to that org as a string. …
2
votes
Database safety: Intermediary “to_be_deleted” column/table?
It looks like you're describing three cases here.
Case 1 - maintenance scripts. Risk can be minimized by developing them and testing them in an environment other than your producti …
4
votes
Star-Schema Design
Star schemas are used to enable high speed access to large volumes of data. The high performance is enabled by reducing the amount of joins needed to satsify any query that may be made against the …
4
votes
How many database indexes is too many?
Everyone else has been giving you great advice. I have an added suggestion for you as you move forward. At some point you have to make a decision as to your best indexing strategy. In the end thoug …
0
votes
How to deploy complex SQL solutions through an installer?
You never throw a users data out. One possible option is to try and create the unique index. If the index creation fails, let them know it failed, tell them what they need to research, and provide …
