0
votes
Ambiguity in Left joins (oracle only?)
A bigger question you should be asking yourself is - why do I have a category code in the parts table that doesn't exist in the categories table?
…
0
votes
Explicit vs implicit SQL joins
As Leigh Caldwell has stated, the query optimizer can produce different query plans based on what functionally looks like the same SQL statement. For further reading on this, have a look at the fol …
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 …
6
votes
`active’ flag or not?
You partition the table on the active flag, so that active records are in one partition, and inactive records are in the other partition. Then you create an active view for each table which automat …
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 …
0
votes
1
vote
SQL Query Help: Selecting Rows That Appear A Certain Number Of Times
Assuming you are using Oracle, and k = 5:-
select date_col,count(*)
from your_table
group by date_col
having count(*) < 5;
If your date column has time filled o …
0
votes
Like in CASE statement not evaluating as expected
I am an Oracle person, not a SQL*Server person, but it seems to me you should be either:-
SELECT
CASE WHEN fldField like '%YYY%' THEN
'OTH'
ELSE 'XXX'
E …
2
votes
How does including a SQL index hint affect query performance?
The index hint will only come into play where your query involves joining tables, and where the columns being used to join to the other table matches more than one index. In that case the database …
1
vote
Joining other tables in oracle tree queries
In your query, replace T2 with a subquery that joins T1 and T2, and returns parent, child and child description. Then in the sys_connect_by_path function, reference the child description from your …
1
vote
How to return multiple values in one column (T-SQL)?
Have a look at this thread already on StackOverflow, it conveniently gives y …
3
votes
how to determine if a record in every source, represents the same person
This sounds like a Customer Data Integration problem. Search on that term and you might find some more informatio …
0
votes
Weird Output on SQL REPLACE
Try using NULL rather than an empty string. i.e. REPLACE(RCAPIN, ' ', NULL)
…
0
votes
SQL Query Question - Select * from view or Select col1,col2…from view
Always do select col1, col2 etc from view. There's no efficieny difference between the two methods that I know of, but using "select *" can be dangerous. If you modify your view definition adding n …
