Nathan Koop
|
Registered User
|
|
|
12m |
comment |
Left JOIN faster or Inner Join faster? @OMG Ponies, wouldn't you then have the same amount of columns, but with null values in those columns? |
|
32m |
comment |
Left JOIN faster or Inner Join faster? @JMD I don't see why they would return different columns. Contrarily, there is a strong possibility that they will return different rows. |
|
39m |
comment |
Left JOIN faster or Inner Join faster? This question should be rephrased, "How can I figure out which query runs faster?" |
|
3h |
comment |
stored procedure exception handling in asp.net note link in answer is in Portuguese, here is the US english link msdn.microsoft.com/en-us/library/… |
|
1d |
comment |
Update DataColumn’s with latest column information Thanks, I didn't try the delete and re-create the datatable, there are other queries attached to it. I'll give it a shot |
|
1d |
comment |
Update DataColumn’s with latest column information the column length value isn't being updated. So it's still at varchar 20 |
|
1d |
asked | Update DataColumn’s with latest column information |
|
2d |
revised |
SQL join two tables without keys/relations added 17 characters in body |
|
2d |
comment |
How to add an item to a list of generics declared as a list of an abstract object in C# Have you tried it with the CheckingSavingsAccount type? |
|
2d |
comment |
How to add an item to a list of generics declared as a list of an abstract object in C# shouldn't your last line be lstTemp.Add(newCC1)? |
|
Nov 20 |
comment |
Using App.config to set strongly-typed variables doesn't this fail the "strongly-typed variables" portion of the requirements, you're still storing a string in app.config |
|
Nov 18 |
awarded | ● Popular Question |
|
Nov 17 |
revised |
Is using an arraylist of chars faster for performing multiple string concatenation? Added micro framework tag & added .net MF to question |
|
Nov 17 |
comment |
About Detailsview Have you debugged this? Try placing breakpoints after both if statements. Perhaps Home is getting changed at some point |
|
Nov 17 |
revised |
About Detailsview edited tags |
|
Nov 13 |
comment |
Need some help with SQL GroupBY @OMG Ponies, you are correct |
|
Nov 13 |
comment |
Need some help with SQL GroupBY Duplicate of stackoverflow.com/questions/1715351/… |
|
Nov 12 |
comment |
HTTP POST XML content from cucumber @mbuf, if one of the answers resolved your issue you should mark it as "answered" by clicking the checkmark below the voting area. |
|
Nov 11 |
revised |
Dev Express GridView TemplateControl New Record Popup Popup Blocker by IE Clarified position |
|
Nov 11 |
comment |
Performance Issue when setting connection information Crystal Reports I have also posted a question at the SAP/Crystal Reports forums and received a response there from the author of this article suggesting that it may be of assistance. (sdn.sap.com/irj/boc/…) |
|
Nov 11 |
comment |
What is a good resource for making high-level software architectural decisions @pc1load1etter, this is a pretty vague question. You're going to get a lot of reasonable, but quite vague answers. Perhaps, like hrnt eluded to, you should ask more specific questions on StackOverflow. That is, if it's appropriate. |
|
Nov 11 |
comment |
Performance Issue when setting connection information Crystal Reports I've got a StopWatch starting and stopping around these chunks of code, so I don't think it's the Load() method. I don't actually call the Load method anywhere, I do however do myReport.ExportToDisk() and then I also show the report in a new report form display window. |
|
Nov 10 |
asked | Performance Issue when setting connection information Crystal Reports |
|
Nov 5 |
comment |
What coding mistakes are a telltale giveaway of an inexperienced programmer? yeah, the real wtf is that he's using a switch statement, he should create a list of command objects that have the proper encapsulation that way he could foreach over the objects and call the doStuff() method and the polymorphism would take care of everything. |
|
Nov 5 |
comment |
What’s your favorite “programmer” cartoon? @tuinstoel, you are making an incorrect assumption, if the aliens use base 4 and the aliens have 2 fingers on their hands, they will respond "We have 2 fingers", if they have 4 fingers on their hands they will respond "We have 10 fingers". |
|
Nov 5 |
answered | SQL: deleting data where parent doesn’t exist |
|
Nov 5 |
comment |
Why can I tamper the file? Not programming related - belongs on superuser |
|
Nov 4 |
comment |
Returning data from database in .net: Return a DataTable or LIst<T>? @Peter, you should do the data filtering at the database level. You could pass in New.GetAllNews(usersConcerned) and handle the array in your proc. This could dramatically reduce the amount of network traffic depending on your data. |
|
Nov 3 |
awarded | ● Notable Question |
|
Nov 3 |
awarded | ● Nice Question |
|
Nov 2 |
comment |
What constitutes an expensive method or resource? +1 for "it depends" :-) |
|
Oct 30 |
answered | T-SQL: Concept similar to C# params |
|
Oct 27 |
comment |
How should I answer a client when they ask when something will be done? 6-8 weeks...... |
|
Oct 26 |
revised |
Best Practice: Should functions return null or an empty object? Made it if (!DataExists) |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF @JonH I didn't dv you, I thought the question was clear and concise. If it wasn't then you can request further information in the comments. I did monitor this question closely and made edits when it appeared that the question was misinterpreted. I truly appreciate any effort that you have made to assist me in resolving my issue. |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF see my edit..... |
|
Oct 22 |
revised |
Pass table as parameter into sql server UDF Added additional information |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF I am trying to pass a table that contains only one column, I'd like it to throw an error if I pass it a table with more than one column. Just like if I passed an int to a UDF that expected a float |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF Ahhh, this is exactly what I want, but it appears as though this is available for SqlServer 2008. I've tried in sqlserver 2005 and I'm getting syntax errors and the documentation mentions specifically 2008. I looked at the SqlServer 2005 documentation for Create Type and it does not have TABLE listed in the options (msdn.microsoft.com/en-us/library/…) |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF I'm not trying to get the count of the columns on the table. |
|
Oct 22 |
comment |
Pass table as parameter into sql server UDF I'm not requesting to pass a table name, I'd like to pass the entire table of data |
|
Oct 22 |
asked | Pass table as parameter into sql server UDF |
|
Oct 21 |
awarded | ● Notable Question |
|
Oct 20 |
comment |
What is your best programmer joke? agreed, we'd be asking, "so what size is you monitor?" |
|
Oct 18 |
revised |
ASP.NET - ListView binding - Clarification edited body |
|
Oct 16 |
comment |
Replace View with Stored Procedure I've realized my problem was PEBKAC, the view was actaully being replaced by the proc, but the name of the datasource was still the of the view. So the update datasource worked, it just didn't look like it worked, you just need to look at the properties. |
|
Oct 15 |
revised |
Crystal Reports class conflict in namespace Added edit |
|
Oct 13 |
revised |
Replace View with Stored Procedure added 139 characters in body |
|
Oct 13 |
asked | Replace View with Stored Procedure |
|
Oct 13 |
revised |
Insert exception when using linqtosql Clarified title and first sentence |
