User achinda99 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T14:50:13Z http://stackoverflow.com/feeds/user/60824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1752813/simple-opencl-program-compiles-and-runs-but-output-is-incorrect 1 Simple OpenCL program compiles and runs but output is incorrect achinda99 2009-11-18T00:19:57Z 2009-11-18T18:33:56Z <p>I wrote a simply OpenCL program based off the SDK and it compiles and runs, however the output is wrong. Is there something I'm doing wrong?</p> <p>Any suggestions for learning to debug C and OpenCL is much appreciated. I'm quite new to the platform.</p> <p>Code is below.</p> <p>The output in array c is all zeros.</p> <p>Thanks.</p> <p>test_opencl.h</p> <pre><code>#ifndef _TEST_OPENCL_H_ #define _TEST_OPENCL_H_ int main( int argc, const char** argv); int runTest( int argc, const char** argv); #endif </code></pre> <p>test_opencl.cl</p> <pre><code>// simple test of adding a[i] to b[i] to get c[i] __kernel void add_array(__global float *a, __global float *b, __global float *c) { int xid = get_global_id(0); c[xid] = a[xid] + b[xid]; } </code></pre> <p>test_opencl.cpp</p> <pre><code>// standard utility and system includes #include &lt;oclUtils.h&gt; #include "test_opencl.h" // OpenCL error catcher cl_int err = 0; // Main Program // ********************************************************************* int main( int argc, const char** argv) { // set logfile name and start logs shrSetLogFileName ("test_opencl.txt"); shrLog(LOGBOTH, 0, "%s Starting...\n\n", argv[0]); // run the main test int result = runTest(argc, argv); shrCheckError(result, 0); // finish shrEXIT(argc, argv); } //! Run a simple test for OPENCL // ********************************************************************* int runTest( int argc, const char** argv) { cl_context gpu_context; cl_command_queue cmd_queue; cl_program program; cl_kernel test_kernel; const size_t szGlobalWorkSize = 10; const size_t szLocalWorkSize = 10; // size of memory required to store the array const unsigned int mem_size = sizeof(int) * 10; // create the OpenCL context on a GPU device gpu_context = clCreateContextFromType(0, CL_DEVICE_TYPE_GPU, NULL, NULL, &amp;err); shrCheckError(err, CL_SUCCESS); // get devices cl_device_id device; if( shrCheckCmdLineFlag(argc, argv, "device") ) { int device_nr = 0; shrGetCmdLineArgumenti(argc, argv, "device", &amp;device_nr); device = oclGetDev(gpu_context, device_nr); } else { device = oclGetMaxFlopsDev(gpu_context); } // create a command-queue cmd_queue = clCreateCommandQueue(gpu_context, device, 0, &amp;err); shrCheckError(err, CL_SUCCESS); // allocate and initalize host memory int a[10], b[10], c[10]; for (int i = 0; i &lt; 10; i++) { a[i] = i; b[i] = i * i; } // create buffers on device cl_mem vol_a = clCreateBuffer(gpu_context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, mem_size, a, &amp;err); shrCheckError(err, CL_SUCCESS); cl_mem vol_b = clCreateBuffer(gpu_context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, mem_size, b, &amp;err); shrCheckError(err, CL_SUCCESS); cl_mem vol_c = clCreateBuffer(gpu_context, CL_MEM_WRITE_ONLY | CL_MEM_COPY_HOST_PTR, mem_size, c, &amp;err); shrCheckError(err, CL_SUCCESS); // copy data from host to device err = clEnqueueWriteBuffer(cmd_queue, vol_a, CL_TRUE, 0, mem_size, a, 0, NULL, NULL); err |= clEnqueueWriteBuffer(cmd_queue, vol_b, CL_TRUE, 0, mem_size, b, 0, NULL, NULL); shrCheckError(err, CL_SUCCESS); // Program Setup size_t program_length; char* source_path = shrFindFilePath("test_opencl.cl", argv[0]); shrCheckError(source_path != NULL, shrTRUE); char *source = oclLoadProgSource(source_path, "", &amp;program_length); shrCheckError(source != NULL, shrTRUE); // create the program program = clCreateProgramWithSource(gpu_context, 1, (const char **)&amp;source, &amp;program_length, &amp;err); shrCheckError(err, CL_SUCCESS); // build the program err = clBuildProgram(program, 0, NULL, NULL, NULL, NULL); if (err != CL_SUCCESS) { // write out standard error, Build Log and PTX, then return error shrLog(LOGBOTH | ERRORMSG, err, STDERROR); return(EXIT_FAILURE); } clFinish(cmd_queue); shrLog(LOGBOTH, 0, "%s Starting kernel operation...\n\n", argv[0]); // create the test kernel test_kernel = clCreateKernel(program, "add_array", &amp;err); shrCheckError(err, CL_SUCCESS); // set the args values for the kernel err = clSetKernelArg(test_kernel, 0, sizeof(cl_mem), (void *) &amp;vol_a); err |= clSetKernelArg(test_kernel, 1, sizeof(cl_mem), (void *) &amp;vol_b); err |= clSetKernelArg(test_kernel, 2, sizeof(cl_mem), (void *) &amp;vol_c); shrCheckError(err, CL_SUCCESS); err = clEnqueueNDRangeKernel(cmd_queue, test_kernel, 1, NULL, &amp;szGlobalWorkSize, NULL, 0, NULL, NULL); shrCheckError(err, CL_SUCCESS); clFinish(cmd_queue); // copy result from device to host err = clEnqueueReadBuffer(cmd_queue, vol_c, CL_TRUE, 0, mem_size, c, 0, NULL, NULL); shrCheckError(err, CL_SUCCESS); int d[10]; err = clEnqueueReadBuffer(cmd_queue, vol_a, CL_TRUE, 0, mem_size, d, 0, NULL, NULL); shrCheckError(err, CL_SUCCESS); clFinish(cmd_queue); shrLog(LOGBOTH, 0, "%s Finished kernel operation...\n\n", argv[0]); bool passed = true; for (int i = 0; i &lt; 10; i++) { if (c[i] != i + i * i) passed = false; shrLog(LOGBOTH, 0, "c = %d d = %d\n", c[i], d[i]); } if (passed) shrLog(LOGBOTH, 0, "%s Test Passed\n\n", argv[0]); else shrLog(LOGBOTH, 0, "%s Test Failed\n\n", argv[0]); // cleanup OpenCL clReleaseMemObject(vol_a); clReleaseMemObject(vol_b); clReleaseMemObject(vol_c); clReleaseKernel(test_kernel); clReleaseProgram(program); clReleaseCommandQueue(cmd_queue); clReleaseContext(gpu_context); return 0; } </code></pre> http://stackoverflow.com/questions/1752813/simple-opencl-program-compiles-and-runs-but-output-is-incorrect/1758103#1758103 1 Answer by achinda99 for Simple OpenCL program compiles and runs but output is incorrect achinda99 2009-11-18T18:33:56Z 2009-11-18T18:33:56Z <p>The problems in the code and the solution can be found <a href="http://forums.nvidia.com/index.php?showtopic=151139&amp;st=0&amp;gopid=952629&amp;#entry952629" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1405988/how-do-you-format-text-strings-in-vba 1 How do you format text/strings in VBA? achinda99 2009-09-10T15:26:03Z 2009-09-10T16:16:32Z <p>In the code below, I take some input parameters, either text or a cell, and combine them to form one string using the formatting I need. I need to make Task_Name bold, as well as text like "Lead :". I know you cannot make text in a variable bold, but how do I go about this? This cell I'm storing the value in is eventually used in a Word mail merge.</p> <p>I need to format part of a string. In the code below, I need to make Task_Name, "Lead : ", etc. all bold.</p> <pre><code>Function GENERATE_STAFFING_SECTION(Task_Name, Lead_By, Members, Instructions) Dim tmpSection As String If Len(Task_Name &gt; 0) And Len(Lead_By) &gt; 0 And Len(Members) &gt; 0 And Len(Instructions) &gt; 0 Then tmpSection = vbLf _ &amp; Task_Name _ &amp; vbLf &amp; "Lead : " &amp; Lead_By _ &amp; vbLf &amp; "Ambassadors : " &amp; Members _ &amp; vbLf &amp; "Instructions : " &amp; Instructions _ &amp; vbLf Else tmpSection = "" End If GENERATE_STAFFING_SECTION = tmpSection End Function </code></pre> <p>Also, I know it's not the cleanest code, so if there are any other suggestions for improving it, they are most welcome.</p> <p>Thanks!</p> http://stackoverflow.com/questions/611694/which-one-should-i-choose-x86-or-x64-architecture-while-installing-windows-20/611721#611721 2 Answer by achinda99 for Which one should I choose? X86 or X64 Architecture ? (while installing Windows 200X server OS on a Dell PC GX680) achinda99 2009-03-04T17:56:41Z 2009-08-06T23:21:34Z <p>As epophwolf <a href="http://stackoverflow.com/questions/611694/which-one-should-i-choose-x86-or-x64-architecture-while-installing-windows-20/611705#611705">mentioned</a> you need x64 if you want to fully utilize more than 3GB of RAM. However, there are other considerations as well. Firstly, does your machine have a x64 processor? If the machine fully supports x64, that in my humble opinion is the best way to go. Most software is now compatible with x64 OSes, and from an x64 development environment, you can develop for both. Also x64 Windows OSes are capable of better utilizing the functionality of the processor, and I've found it to be faster than x86 on my machines.</p> http://stackoverflow.com/questions/725972/n-tiered-linqtosql-question/726021#726021 0 Answer by achinda99 for N-Tiered LinqToSql Question achinda99 2009-04-07T14:28:59Z 2009-04-07T14:28:59Z <p>If I remember correctly, you can create a view from the different tables (Members, States, and MemberAddresses) and add that to the data context. Then any modifications to data in the view object can be saved, and linq to sql will handle the commit correctly as long as all the relationships are clearly setup/defined in both the database and in the data context.</p> http://stackoverflow.com/questions/664017/best-practices-for-column-naming-in-sql/664061#664061 0 Answer by achinda99 for Best practices for column naming in Sql achinda99 2009-03-19T21:01:35Z 2009-03-19T21:01:35Z <p>As much as I hate it, I'd go with Option 1:</p> <pre><code>Student ------- StudentID StudentName MentorID </code></pre> <p>The reason for this is when joining with other tables with the column "Name", say Course or Degree or something, joining requires that you rename the columns to avoid ambiguous names. Dealing with long names that have table name in it is annoying, but it can save you work on the long run.</p> http://stackoverflow.com/questions/661389/tfs-vs-svn/662587#662587 1 Answer by achinda99 for TFS vs SVN achinda99 2009-03-19T15:17:00Z 2009-03-19T15:17:00Z <p>I'd pick SVN. I've worked with SVN from a developer standpoint before and I currently work with TFS, and let me tell you that TFS is painful. While TFS is feature full and is more than just version control, its version control is sloppy at best. Merging is horrendous and many of us now turn to manual merging or merge tools because we can't rely on TFS. Files go missing, aren't downloaded to the local system sometimes, and there are just oddities in its behavior that make you want to bang your head against a desk.</p> <p>That being said, if you want TFS in all its glory, are willing to work with its pain points, it is a great tool to setup automated builds, and releases.</p> http://stackoverflow.com/questions/661942/whats-your-favorite-program-company-tech-name 0 What's your favorite program/company (tech) name? [closed] achinda99 2009-03-19T11:58:46Z 2009-03-19T12:00:19Z <p>I was thinking about program and company names recently, considering what made the name work and catch on. Sometimes a product is so good that as lame or basic the name is, it succeeds because of how good the product is. Other times, the name helps carry the product. </p> <p>What's your favorite name, be it a company, application or website and why do you like it? What do you think makes it work? What do you think the components of a good name are?</p> http://stackoverflow.com/questions/654498/advice-on-platforms-frameworks-languages-etc-for-a-new-project 0 Advice on platforms/frameworks/languages/etc for a new project achinda99 2009-03-17T14:32:47Z 2009-03-19T11:49:03Z <p>I know this is not a programming question per se, but I wanted to get as much input from the SO community on a new project I hope to get started. The project is from being started from scratch and thus every decision for programming languages, databases, frameworks, platforms and what not are up in the air. I'm hoping to get your opinion on the matter, what you feel are the strengths and weaknesses of each option.</p> <p><strong><em>Database:</em></strong> Currently I have the option of using MSSQL or MySQL. While I am leaning towards using MySQL because it is free and most probably has all the features I need. However, there is the possibility of having a lot of hierarchical data and the new hierarchical data type in MSSQL is quite appealing. Does it really simplify matters that much? Also MSSQL supports many more advanced SQL functions that may or may not be useful in the long run. While for development I can get access to Server 2008, multiple licenses as the development team grows and for production, are the costs justified?</p> <p><strong><em>Programming Languages:</em></strong> The project will have a web based front end UI and a server based component that will do some heavy lifting. </p> <p>For the web based UI, I was thinking of maybe doing Apache/IIS with PHP or IIS with ASP.Net in C#. I'd like to use a good framework to properly utilize good design patterns that should structure the code and development of the app. As well as make modifications in the long run easy to implement. I also want the GUI to look good and don't like the idea of buying .Net controls from component vendors. Instead I prefer the idea of using good CSS, and open sources like YUI and javascript to make the UI sleek.</p> <p>For the server based component, I was thinking of using C#. I have no real development experience in C++ and I'd like good libraries and sufficient speed is good enough. However, while the web based UI and server based component is loosely coupled, there may be instances where the UI needs to communicate (call methods and what not) with the server based component and I want to pick languages/frameworks that will play nice with each other.</p> <p>All suggestions on frameworks to incorporate are welcome.</p> <p><strong><em>Version Control:</em></strong> I have had good experiences with SVN and a pretty bad experiences with TFS. I've never worked with GIT. Which do you think is better in terms of features as well as general developer familiarity. I want to pick something that other developers will know and not have trouble with.</p> <p>I apologize if the questions are bit redundant or I'm not providing enough information or using bad terminology. I plan to edit and improve the question as I get feedback. Thanks!</p> <p><strong>EDIT:</strong> Who: This would most probably be a startup formed of college students or junior developers. I want the project to utilize technologies that most people are familiar with or are easy to pick up.</p> <p>What: I'd need hours and days to explain the solution. But in the end when you break it down, its a web based UI (think standard web app to just manage database data) that would be used to knowledgeable clients. The server based component would be very separate except for the fact that it should be able to communicate with the web app.</p> <p>I can provide more information as required but I would appreciate an opportunity for users to answer and provide their ideas before you hastily close the question.</p> http://stackoverflow.com/questions/659911/iphone-installed-base-upgrade-rate/659971#659971 2 Answer by achinda99 for iPhone installed base upgrade rate. achinda99 2009-03-18T20:30:23Z 2009-03-18T20:30:23Z <p>I wouldn't worry about iPhone users not upgrading to 3.0 For all iPhones its a free upgrade and brings many features users have been waiting years for. When it comes to iPod Touches, I'd suspect many users to pay the $9.99 to upgrade the new OS because it has some nifty features and many applications will require 3.0 to function.</p> http://stackoverflow.com/questions/650916/resize-and-repositon-div-using-javascript 0 Resize and repositon div using javascript achinda99 2009-03-16T15:31:52Z 2009-03-18T05:48:01Z <p>I'm trying to do a simple resize and reposition of a div element that shows a ajax loading image. The content it loads can change size, so I want the div element to resize to be the size of the parent, which in this case is a table dimension with the id "thEngineCategories".</p> <pre><code>function resize_divProgress() { var control = document.getElementById('thEngineCategories'); var div = document.getElementById('divProgress'); div.style.left = control.offsetLeft + 'px'; div.style.top = control.offsetTop + 'px'; div.style.width = control.offsetWidth + 'px'; div.style.height = control.offsetHeight + 'px'; } </code></pre> <p>The following is the javascript I have and it errors on </p> <pre><code>div.style.left = control.offsetLeft + 'px'; </code></pre> <p>saying "div.style is undefined". Whats wrong here?</p> <p>The div in html is as follows:</p> <pre><code>&lt;div class="overlay" id="divProgress"&gt; </code></pre> <p>The js function is called as follows:</p> <pre><code>&lt;th id="thEngineCategories" onmouseover="resize_divProgress()" &gt; </code></pre> <p>The CSS is:</p> <pre><code>.overlay { border: black 1px solid; padding: 5px; z-index: 100; width: 300px; position: absolute; background-color: #fff; -moz-opacity: 0.75; opacity: 0.75; filter: alpha(opacity=75); font-family: Tahoma; font-size: 11px; font-weight: bold; text-align: center; } </code></pre> <p>Is there a better way to handle what I'm trying to do?</p> http://stackoverflow.com/questions/651955/fetch-fields-from-a-table-that-has-the-same-relation-to-another-table/652018#652018 0 Answer by achinda99 for Fetch fields from a table that has the same relation to another table achinda99 2009-03-16T20:22:59Z 2009-03-16T20:22:59Z <pre><code>SELECT topic_id FROM topic_tag WHERE tag_id = 1 OR tag_id = 2 OR tag_id = 3 GROUP BY topic_id HAVING COUNT(topic_id) = 3; </code></pre> <p>The above query will get all topic_ids that have all three tag_ids of 1, 2 and 3. Then use this as a subquery:</p> <pre><code>SELECT tag_name FROM tag INNER JOIN topic_tag ON tag.tag_id = topic_tag.tag_id WHERE topic_id IN ( SELECT topic_id FROM topic_tag WHERE tag_id = 1 OR tag_id = 2 OR tag_id = 3 GROUP BY topic_id HAVING COUNT(topic_id) = 3 ) AND ( tag.tag_id &lt;&gt; 1 OR tag.tag_id &lt;&gt; 2 OR tag.tag_id &lt;&gt; 3 ) </code></pre> <p>I think this is what you are looking for.</p> http://stackoverflow.com/questions/631214/get-latest-entry-from-database/631271#631271 1 Answer by achinda99 for Get Latest Entry from Database achinda99 2009-03-10T16:57:29Z 2009-03-14T16:31:38Z <pre><code>SELECT * FROM [Table] ORDER BY [dateColumn] DESC </code></pre> <p>If you want only the first row:</p> <p>In T-SQL:</p> <pre><code>SELECT TOP(1) * FROM [Table] ORDER BY [dateColumn] DESC </code></pre> <p>In MySQL:</p> <pre><code>SELECT * FROM `Table` ORDER BY `dateColumn` DESC LIMIT 1 </code></pre> http://stackoverflow.com/questions/643508/mixing-on-and-using-within-one-join/643729#643729 0 Answer by achinda99 for Mixing ON and USING within one join achinda99 2009-03-13T17:19:11Z 2009-03-13T17:19:11Z <pre><code>SELECT * FROM Tbl1 INNER JOIN Tbl2 ON Tbl1.col1 = Tbl2.col1 AND Tbl1.col2 = Tbl2.col3 </code></pre> http://stackoverflow.com/questions/643207/does-the-order-of-conditions-in-there-where-clause-affect-the-speed-of-the-query/643222#643222 0 Answer by achinda99 for Does the order of conditions in there where clause affect the speed of the query? achinda99 2009-03-13T15:24:29Z 2009-03-13T15:24:29Z <p>Exact duplicate of <a href="http://stackoverflow.com/questions/642784/does-the-order-of-columns-in-a-where-clause-matter">this question</a>.</p> <p>The short answer is yes, but it depends on the query optimizer.</p> http://stackoverflow.com/questions/642822/how-can-i-do-a-before-updated-trigger-with-sql-server/642859#642859 2 Answer by achinda99 for How can I do a BEFORE UPDATED trigger with sql server? achinda99 2009-03-13T14:02:48Z 2009-03-13T14:02:48Z <p>MSSQL does not support BEFORE triggers. The closest you have is INSTEAD OF triggers but their behavior is different to that of BEFORE triggers in MySQL.</p> <p>You can learn more about them <a href="http://msdn.microsoft.com/en-us/library/aa258254%28SQL.80%29.aspx" rel="nofollow">here</a>, and note that INSTEAD OF triggers "Specifies that the trigger is executed instead of the triggering SQL statement, thus overriding the actions of the triggering statements." Thus, actions on the update may not take place if the trigger is not properly written/handled. Cascading actions are also affected.</p> <p>You may instead want to use a different approach to what you are trying to achieve.</p> http://stackoverflow.com/questions/642784/does-the-order-of-columns-in-a-where-clause-matter/642830#642830 3 Answer by achinda99 for Does the order of columns in a WHERE clause matter? achinda99 2009-03-13T13:55:29Z 2009-03-13T13:55:29Z <p>It all depends on the DBMS, query optimizer and rules, but generally it does affect performance.</p> <p>If a where clause is ordered such that the first condition reduces the resultset significantly, the remaining conditions will only need to be evaluated for a smaller set. Following that logic, you can optimize a query based on condition order in a where clause.</p> http://stackoverflow.com/questions/631259/is-there-a-way-in-sql-mysql-to-do-a-round-robin-order-by-on-a-particular-fiel/631297#631297 4 Answer by achinda99 for Is there a way in SQL (MySQL) to do a "round robin" ORDER BY on a particular field? achinda99 2009-03-10T17:02:47Z 2009-03-10T17:02:47Z <p>What you can do is create a temporary column in which you create sets to give you something like this:</p> <pre><code>+-------+------+-----+ | group | name | tmp | +-------+------+-----+ | 1 | A | 1 | | 1 | B | 2 | | 1 | C | 3 | | 2 | D | 1 | | 2 | E | 2 | | 2 | F | 3 | | 3 | G | 1 | | 3 | H | 2 | | 3 | I | 3 | +-------+------+-----+ </code></pre> <p>To learn how to create the sets, have a look at this <a href="http://stackoverflow.com/questions/532878/how-to-perform-grouped-ranking-in-mysql">question/answer</a>.</p> <p>Then its a simple</p> <pre><code>ORDER BY tmp, group, name </code></pre> http://stackoverflow.com/questions/630282/html-coding-in-vs2008-good-idea/630329#630329 0 Answer by achinda99 for HTML coding in VS2008 - good idea? achinda99 2009-03-10T14:04:02Z 2009-03-10T14:04:02Z <p>If you are looking for an IDE to just develop web pages and not web applications, I would suggest something besides VS2008. Vs2008 is much better if you want to build aspx pages and work with code. In your case, you are looking for an app to develop html pages manually and maybe switch to a graphic view to see how it renders. For something like that, stick with HomeSite, Dreamweaver or Aptana.</p> http://stackoverflow.com/questions/608556/biztalk-send-port-group-and-filtering 1 Biztalk Send Port Group and Filtering achinda99 2009-03-03T22:45:19Z 2009-03-10T12:47:04Z <p>So the model I need for my solution is as follows:</p> <p>I need to poll the database and based on a result, create a request to the database for more data, get the response and pass it to a group of ports, for which based on a promoted property, only one of the ports will act.</p> <p>It looks like this:</p> <p><img src="http://i40.tinypic.com/2zq61qh.jpg" width="620"></p> <p>However, if you assign "Temp Out" to a send port group, the message is sent to all the ports in the group, irregardless of the filters set on each port. From my understanding, this is expected behavior (read <a href="http://www.biztalkgurus.com/forums/t/2236.aspx" rel="nofollow">here</a>).</p> <p>So I explored other options such as using Content Based Routing (CBR sample) like in the SDK. You can view this <a href="http://msdn.microsoft.com/en-us/library/ms948408.aspx" rel="nofollow">here</a>. </p> <p>I tried this and completely removed the orchestration (its really not needed). However, there are major routing/subscription errors, and upon further research, it appears that you can't do this if you have solicit-response ports. Some articles on that <a href="http://www.tech-archive.net/Archive/BizTalk/microsoft.public.biztalk.general/2006-02/msg00178.html" rel="nofollow">here</a>. I pretty much have the same issue <a href="http://www.biztalkgurus.com/forums/t/5016.aspx" rel="nofollow">this</a> user does.</p> <p>In the end it doesn't matter to me whether I use an orchestration or not. However, I need a solution in which I can pass the message to multiple send ports, and I can have only one actually use the message and send. This is needed so that I can edit and add ports easily without having to modify anything else or hard code decisions into the orchestration.</p> http://stackoverflow.com/questions/608556/biztalk-send-port-group-and-filtering/629980#629980 0 Answer by achinda99 for Biztalk Send Port Group and Filtering achinda99 2009-03-10T12:47:04Z 2009-03-10T12:47:04Z <p>I found that the CBR example model does indeed work. The problem with routing were the subscriptions. If I was to subscribe a send port to a solicit-response port, I had to set the BTS.SPName (Send Port Name) filter instead of the BTS.ReceivePort filter. By doing this, the message was correctly filter through. You're answer would have worked too, but it requires using an orchestration which I was trying to avoid.</p> http://stackoverflow.com/questions/623033/mysql-indices-and-order-by-clause/623041#623041 -3 Answer by achinda99 for MySQL Indices and Order By Clause achinda99 2009-03-08T04:38:08Z 2009-03-08T04:38:08Z <p>Try selecting the specific columns in order as they are in the table. MySQL indexes don't hold when the order is changed.</p> http://stackoverflow.com/questions/619103/select-from-multiple-tables-where-one-has-distinct-values/623037#623037 1 Answer by achinda99 for Select from multiple tables where one has distinct values achinda99 2009-03-08T04:34:21Z 2009-03-08T04:34:21Z <p>Based on your <a href="http://stackoverflow.com/questions/619103/select-from-multiple-tables-where-one-has-distinct-values/619468#619468">answer</a> I think what you are trying to do is this:</p> <p>Sum FieldB in TableB and then join it with TableA.</p> <pre><code>SELECT TableA.FieldA, tmp.SUMFieldB FROM TableA INNER JOIN (SELECT TableAID, SUM(FieldB) AS SUMFieldB FROM TableB GROUP BY FieldA ORDER BY SUMFieldB DESC ) AS tmp ON TableA.ID = tmp.TableAID ORDER BY tmp.SUMFieldB DESC </code></pre> http://stackoverflow.com/questions/620778/is-c-a-high-level-language/620803#620803 1 Answer by achinda99 for Is C# a high level language? achinda99 2009-03-06T23:01:40Z 2009-03-06T23:01:40Z <p>C# is the very much so a high level language and is more developed than most scripting languages. As far as I've ever learned, there is no such thing as a medium level language and the ones considered low level these days is pretty much any form of assembly or binary code.</p> http://stackoverflow.com/questions/620610/sqlalchemy-obtain-primary-key-with-autoincrement-before-commit/620784#620784 0 Answer by achinda99 for SQLAlchemy Obtain Primary Key With Autoincrement Before Commit achinda99 2009-03-06T22:57:00Z 2009-03-06T22:57:00Z <p>You can use multiple transactions and manage it within scope.</p> http://stackoverflow.com/questions/619398/sql-optimization/619419#619419 1 Answer by achinda99 for SQL Optimization achinda99 2009-03-06T16:22:34Z 2009-03-06T16:22:34Z <p>Generally the rules on joining and performance is this: Do the INNER/OUTER/LEFT/RIGHT/CROSS JOIN first using the ON clause and then if needed use a WHERE clause to further filter the data. The reason this is more efficient is table size. When you are selecting from two tables and joining on the WHERE clause, you do table_size_1 * table_size_2 records and then the WHERE clause is applied to get the actual join. When using a JOIN, you actually limit the records first, thereby reducing the size of your temporary table. Most if not all DBMSes are optimized to handle the JOIN ON over the joining on WHERE.</p> <p>I'm not sure what effect the XML data has on the query, but on the actual table joining, both of your second examples are better.</p> http://stackoverflow.com/questions/619103/select-from-multiple-tables-where-one-has-distinct-values/619256#619256 0 Answer by achinda99 for Select from multiple tables where one has distinct values achinda99 2009-03-06T15:34:25Z 2009-03-06T15:34:25Z <p>How about this?</p> <pre><code>SELECT TableA.FieldA, tmp.FieldB FROM TableA INNER JOIN (SELECT TableAID, FieldB FROM TableB GROUP BY FieldA ORDER BY FieldB DESC ) AS tmp ON TableA.ID = tmp.TableAID ORDER BY tmp.FieldB DESC </code></pre> http://stackoverflow.com/questions/615143/duplicate-a-row-in-sql/615159#615159 -2 Answer by achinda99 for Duplicate a row in SQL? achinda99 2009-03-05T15:04:33Z 2009-03-05T15:04:33Z <p>This should help:</p> <pre><code>INSERT INTO [table] ( userid, courseid ) SELECT userid, 11 FROM [table] WHERE courseid = 6 AND userid NOT IN (SELECT userid FROM [table] WHERE courseid = 11 ); </code></pre> <p>This will select all users in course 6 not in course 11 and add them with course 11 to the table.</p> http://stackoverflow.com/questions/612338/selecting-with-subqueries-in-mysql-subqueries-with-any-and-in/612414#612414 1 Answer by achinda99 for Selecting with subqueries in MySQL (Subqueries with ANY, and IN) achinda99 2009-03-04T21:01:43Z 2009-03-05T14:02:29Z <p>One approach is this:</p> <pre><code>SELECT actions, user FROM userActions WHERE user IN (SELECT user FROM userGroupMap WHERE [group] = 'a' ); </code></pre> <p>However, with large tables, this query tends to be inefficient and doing a join is better:</p> <pre><code>SELECT actions, userActions.user FROM userActions INNER JOIN (SELECT user FROM userGroupMap WHERE [group] = 'a' ) AS tmp ON userActions.user = tmp.user; </code></pre> <p>Alternatively, as Jonathon mentioned, you could have done this and its pretty much as efficient, if not more:</p> <pre><code>SELECT actions, userActions.user FROM userActions INNER JOIN userGroupMap ON userActions.user = userGroupMap.user WHERE [group] = 'a'; </code></pre> http://stackoverflow.com/questions/612612/help-with-a-nested-query-in-mysql/612623#612623 0 Answer by achinda99 for Help with a nested query in MySQL achinda99 2009-03-04T21:53:27Z 2009-03-04T22:01:34Z <p>I think you should get your required result if you remove the GROUP BY</p> <pre><code>SELECT DISTINCT student, classes FROM student_classes WHERE classes &lt;&gt; 'Spanish' </code></pre> <p>The DISTINCT takes care of point 1, 2 and 4. The WHERE clause takes care of point 3.</p> <p>Alternatively, you can group by both:</p> <pre><code>SELECT DISTINCT student, classes FROM student_classes WHERE classes &lt;&gt; 'Spanish' GROUP BY student, classes </code></pre> http://stackoverflow.com/questions/1405988/how-do-you-format-text-strings-in-vba/1406070#1406070 Comment by achinda99 on How do you format text/strings in VBA? achinda99 2009-09-10T16:37:47Z 2009-09-10T16:37:47Z It doesn't seem to like that. I get a &quot;Unable to get the Insert property of the Characters class&quot; error http://stackoverflow.com/questions/1405988/how-do-you-format-text-strings-in-vba/1406070#1406070 Comment by achinda99 on How do you format text/strings in VBA? achinda99 2009-09-10T16:20:16Z 2009-09-10T16:20:16Z Right, but how do you set the ActiveCell's value? ActiveCell.Text = &quot;something&quot; and ActiveCell.Value = &quot;sdd&quot; don't work http://stackoverflow.com/questions/1405988/how-do-you-format-text-strings-in-vba/1406070#1406070 Comment by achinda99 on How do you format text/strings in VBA? achinda99 2009-09-10T15:47:49Z 2009-09-10T15:47:49Z So if in the spreadsheet, I set a cell to =GENERATE_STAFFING_SECTION(.....), how do I go about formatting its text based on the contents? http://stackoverflow.com/questions/1405988/how-do-you-format-text-strings-in-vba/1406006#1406006 Comment by achinda99 on How do you format text/strings in VBA? achinda99 2009-09-10T15:46:26Z 2009-09-10T15:46:26Z This helps with type formatting, not display formatting. http://stackoverflow.com/questions/725972/n-tiered-linqtosql-question Comment by achinda99 on N-Tiered LinqToSql Question achinda99 2009-04-07T14:30:11Z 2009-04-07T14:30:11Z I don't think the fact your application is N-tiered has any influence on the problem/question. http://stackoverflow.com/questions/663275/reset-identity-column-in-sql-server Comment by achinda99 on Reset Identity column in SQL Server achinda99 2009-03-19T18:22:40Z 2009-03-19T18:22:40Z Why exactly do you want to do this? If you need to keep them in order of entry, you can have a date time stamp or add a column to keep rank. http://stackoverflow.com/questions/661389/tfs-vs-svn/661423#661423 Comment by achinda99 on TFS vs SVN achinda99 2009-03-19T17:51:54Z 2009-03-19T17:51:54Z @Brann: Nothing will achieve an integration quality of TFS in VS because its not a plugin. Its a full featured component of VS Team System. How well its integrated doesn't change its sloppiness in checking out/in, merging and branching. http://stackoverflow.com/questions/661389/tfs-vs-svn/661466#661466 Comment by achinda99 on TFS vs SVN achinda99 2009-03-19T15:49:19Z 2009-03-19T15:49:19Z @Brann: VisualSVN is good, so is AnkhSVN http://stackoverflow.com/questions/661389/tfs-vs-svn/661466#661466 Comment by achinda99 on TFS vs SVN achinda99 2009-03-19T15:26:22Z 2009-03-19T15:26:22Z The SVN plugins for VS are pretty good and after the pain I've gone through with TFS, never again. TFS may be fully integrated with VS, but it doesn't mean that it makes the actual version controlling or simple functions any better. http://stackoverflow.com/questions/661389/tfs-vs-svn/661423#661423 Comment by achinda99 on TFS vs SVN achinda99 2009-03-19T15:20:18Z 2009-03-19T15:20:18Z I find it extremely hard to believe how big a proponent of TFS you are, because I use it at work and its the most painful thing I have come across. It does a horrible job at merging and while SVN may add markers on conflicts, those are easy to fix. Files go missing when you use TFS! TFS sucks... http://stackoverflow.com/questions/661942/whats-your-favorite-program-company-tech-name Comment by achinda99 on What's your favorite program/company (tech) name? achinda99 2009-03-19T12:41:18Z 2009-03-19T12:41:18Z @StingyJack: If opposites count, sure! I'll see what I can do to get it fixed. I'm really interested in what people think works in a name. http://stackoverflow.com/questions/661942/whats-your-favorite-program-company-tech-name Comment by achinda99 on What's your favorite program/company (tech) name? achinda99 2009-03-19T12:05:11Z 2009-03-19T12:05:11Z If you are going to close the question, please state why? Its a valid question which is pretty clear. http://stackoverflow.com/questions/654498/advice-on-platforms-frameworks-languages-etc-for-a-new-project/661911#661911 Comment by achinda99 on Advice on platforms/frameworks/languages/etc for a new project achinda99 2009-03-19T11:53:15Z 2009-03-19T11:53:15Z Thanks, thats definitely an interesting angle from which to look at it. http://stackoverflow.com/questions/292787/how-to-use-jquery-with-master-pages/292839#292839 Comment by achinda99 on How to use JQuery with Master Pages? achinda99 2009-03-18T20:34:22Z 2009-03-18T20:34:22Z Using the ClientID to get the control name is a much simpler method and will always work because no matter what the master/content page creates as a ID, the javascript in the content page will correctly hard code in on generation. Though it wouldn't work on any included javascript files. :( http://stackoverflow.com/questions/650916/resize-and-repositon-div-using-javascript/657102#657102 Comment by achinda99 on Resize and repositon div using javascript achinda99 2009-03-18T19:02:54Z 2009-03-18T19:02:54Z You're right. I'll try that, thanks!