1,243 reputation
1512
bio website
location London, United Kingdom
age 53
visits member for 2 years, 9 months
seen yesterday
stats profile views 103

May
18
answered Or loop doing the opposite of what I want
Apr
20
comment SQL WHERE xx IN ('qq', 'ww'…) performance - more values, less time?
Are stats up to date (particularly on the "parts" table)? What are the relative populations for the different values of parts.concesionCode? If you can post the two query plans - we should expect to see that they are different, possibly because of misleading stats.
Apr
18
comment Sorting result with absolute placement
What is "their original order" - why does ID 5 come first? (Rows in a relational database do not have any order - if you want a specific order in your query output then you need to specify that with an order by clause.)
Mar
29
answered How can I retrieve an entire row of a MAX query?
Mar
25
answered ODBC Linked Tables Convert Tinyint Fields to Yes/No
Mar
9
awarded  Constituent
Mar
7
awarded  Caucus
Feb
28
revised Sum of the product of distinct counts in SQL?
edited tags
Feb
22
comment external table in oracle?
Check your typing! You are creating the table with column called: emp_name but in the access parameters you call it: e_name
Feb
17
comment ORACLE: missing right parenthesis
Oracle does not support boolean data types, so you will have to use string literals like 'TRUE', 'FALSE' or numerics like 1, 0.
Feb
17
comment Does MS Access support “CASE WHEN” clause if connect with ODBC?
@Remou My origins are humble, but they are charming stories :)
Feb
17
comment Does MS Access support “CASE WHEN” clause if connect with ODBC?
When sending statements using ODBC you must use SQL that is supported by the target database. MS Access doesn't support CASE statements, so ODBC connections to MS Access cannot "support" them either.
Feb
15
comment MySQL - Give access to all users on a database
You must either grant permissions explicitly for each user, or allow connections by the anonymous user, grant permissions to '', as you have done, and then connect as the anonymous user: - see here dev.mysql.com/doc/refman/5.1/en/grant.html
Feb
15
comment Oracle Streams: ORA-0001 on dequeue?
Check what is being received into dynamic_sql_string which you are executing in certain circumstances. Is it inserting something somewhere that is violating a unique constraint?
Jan
31
comment Query format issue in MS Access
The (+) sign after t2.col21 appears to be the old Oracle pre-ansi outer join syntax, where the (+) was on the deficient side of the join, so your join from t3 to t2 should be a "LEFT JOIN".
Jan
29
comment UPDATE Query Without WHERE Clause doesn;t work
You will have to change the my.cnf file on your server and comment out the safe-updates setting in the [mysql] section. (It's there to prevent clumsy things like "delete from table" deleting all your data.) If you are happy deleting using a where clause on the PK then you can just leave it set.
Jan
27
comment Identity column separate from composite primary key
@AaronBertrand. I was attempting to say "it depends" to OP's question of whether to use multi-column natural key vs single column surrogate key. (At least that's the way I read it!) In this case I agree that propagating multiple columns may indeed be an unnecessary overhead. Clustering on a composite index isn't ideal either because entries in the non-clustered indexes will contain the clustering key as well.
Jan
27
comment Identity column separate from composite primary key
"...never be more than one opponent per date..." suggests the natural composite primary key. However, there are several reasons for using surrogate keys: the unexpected often happens in real life, and the "impossible" sometimes happens, and joining on a single int column is likely more efficient than on multiple columns of various types. One disadvantage I can think of in using the MatchID as PK is that you will most likely end up with a clustered index on an autoincrement-style column where the clustering is not useful in practice.
Jan
27
revised Why Oracle SQL SELECT expression doesn't print decimal value?
edited tags
Jan
27
answered Access Database Query Grouping