1
vote
What are the pros/cons of using a synonym vs. a view?
There are lots of considerations. In short, use the tool that works best for each situation.
With a view, I can
hide columns
add predicates (WHERE clause) to restri …
1
vote
WHERE x IN (5) vs WHERE x = 5 … why use IN?
No, it's not a trick. The two statements:
SELECT * FROM pages WHERE is_visible IN ($visibility)
SELECT * FROM pages WHERE is_visible = $visibility
are nearly equi …
2
votes
SQL join condition A=B or reverse to B=A?
It doesn't really matter, both are correct. My preference is for the second.
My preference is based on the idea that table BBB is the table I'm adding into the result set, and the job at h …
2
votes
How accurate is Oracle’s EXPLAIN PLAN?
Q: Are there any good ways to objectively measure a query's performance in Oracle 10g?
Oracle tracing is the best way to measure performance. Execute the query an …
0
votes
Fastest way to check date range…
I think this T-SQL is equivalent to the code you have:
-- set time portion of @DateStart back to midnight
SET @DateStart = CONVERT(DATETIME,CONVERT(VARCHAR(10),@DateStart,20),20) …
3
votes
How do I use T-SQL’s Exists keyword?
To answer your question about using the EXISTS keyword, here is an example query that uses an EXISTS predicate, based on the query as currently given in your question.
…
0
votes
how do i clear oracle execution plan cache for benchmarking?
Peter gave you the answer to the question you asked:
alter system flush shared_pool;
That is the statement you would use to [sic] delete prepared statements from t …
3
votes
Is there a better way to convert SQL datetime from hh:mm:ss to hhmmss?
NOTE:
UPDATED: My original answer used format style 20, ODBC canonical format for datetime. I've updated the answer to use the (more appropriate 8 (or 108) format style, w …
0
votes
Sql Server query syntax
You've already got a variety of answers, some of them more useful than others. But to answer your question directly:
No, SQL Server will not allow you to reference the column alias (define …
9
votes
Parameterizing a SQL IN clause?
The original question was "How do I paramaterize a query ..."
Let me state right here, that this is not an answer to the original question. There are alre …
10
votes
Faster ‘select distinct thing_id,thing_name from table1’ in oracle
[LATEST EDIT]
My ORIGINAL ANSWER regarding creating the appropriate index on (name,id) to replace the index on (name) is below. (That wasn't an answer to the original ques …
3
votes
Is it possible to use GROUP BY with bind variables?
I suggest re-writing the statement so that there is only one bind argument.
This approach is kind of ugly, but returns the result set:
select max(col1)
, f_col2
from (
…
0
votes
How do I automatically reset a sequence’s value to 0 every year in Oracle 10g?
Sequences aren't really designed to be reset. But there are some cases where resetting a sequence is desirable, for example, when setting up test data, or merging production data back into a test …
6
votes
Oracle 8i Query Help
Here's one approach:
select t.type as "Type"
, sum(case when t.status = 'A' then 1 else 0 end) as "Count A"
, sum(case when t.stat …
2
votes
Dealing with circular reference when entering data in SQL
Q: Do I have to disable constraints for the insert to happen?
A: In Oracle, no, not if the foreign key constraints are DEFERRABLE (see example …
