| bio | website | |
|---|---|---|
| location | Annandale, VA | |
| age | 46 | |
| visits | member for | 4 years, 3 months |
| seen | 2 hours ago | |
| stats | profile views | 1,194 |
Programming since '85, primarily focused using FoxPro / Visual Foxpro systems. I've eventually worked into .Net with some VB web systems and now working with C#... primarily desktop applications.
|
May 27 |
comment |
Improving Performance on 2 Left Joins and multiple SUMs in MySQL @john, we might need to go into a chat on this... I'll probably have more comments/question than drag this post along for the ride. If you open a chat, let me know and we can try to get going. |
|
May 25 |
revised |
Mysql query grouping by two columns for max date takes too long formatting to remove tabs -- poor alignments in final display |
|
May 24 |
answered | SQL/MySQL Query Assistance |
|
May 24 |
comment |
how to optimise an sql union containing joins and a subquery @StevenM, so what is the final performance (just wondering) |
|
May 23 |
comment |
Improving Performance on 2 Left Joins and multiple SUMs in MySQL Since you still don't have any definitive answers. Can you edit your post and list the structures of the tables too - to help me wrap my head around a few things. |
|
May 23 |
answered | how to optimise an sql union containing joins and a subquery |
|
May 23 |
comment |
how to optimise an sql union containing joins and a subquery You have a few fields that are not alias.field (such as PrimaryContact), can you please update in the queries to remove ambiguity of which table the fields correlate to. |
|
May 23 |
comment |
CASE Statement in query If that worked, great... and as a newbie to the site, help others by up-checking answers that help... and those that SOLVED your question, click the checkmark next to the answer so others know it has been solved and don't keep trying to post answers. |
|
May 23 |
answered | CASE Statement in query |
|
May 23 |
comment |
CASE Statement in query let me ask this... you DONT want "duplicate outputs". Is this in reference to multiple records for same master customer ID, but you want to know if they have any of the given "product codes", and if so which ones along the same returned row for each respective customer? |
|
May 23 |
comment |
Fill datagrid with dataTable wpf @DaCh, the WriteXML writes everything in the datatable out to a new file in XML format. Every Row, Every Column. Reading IN XML is almost as easy too, if you include the xml schema along. However... if that is NOT the case, do you just want a dump of every row, every column that is in your datagrid that is presented to the user? And for each row, you just want it dumped as string... how to delimit the values between fields... what if date, numerics, strings that have commas? Many things to consider. |
|
May 23 |
answered | Fill datagrid with dataTable wpf |
|
May 23 |
revised |
MySQL select query formatting his "criteria" |
|
May 21 |
comment |
Optimize the query with index @Sarath, ok on the index... how is its performance... any better regardless of the temp/filesort? |
|
May 21 |
comment |
Optimize the query with index @Sarath, do you have an index on it for just (Country_ID), or at least country_id in the first position? I've found that the order of columns closest matching that of criteria of query helps optimize more efficiently. |
|
May 21 |
answered | Replace " with nothing in textfile via Foxpro |
|
May 20 |
answered | Optimize the query with index |
|
May 17 |
comment |
Import File Daily @Lordv8r, ADIR() puts things in a multi-dimension array. [x,1] is the file name (less the path). That is why Jerry is testing via ATC() which is look for the given string ex: "METER" REGARDLESS OF upper/lower case. If found in the file name, do the "Meter" process. |
|
May 17 |
comment |
200 column table - 3 million rows - performance having 200 columns is not the greatest, and could probably be normalized some... however, the writing of queries and having optimial indexes based on common queries is definitely a big help. Can you list some sample queries that are taking extended time? |
|
May 17 |
answered | Wrong output when using Left Outer Join |