rwmnau
|
Registered User
|
I'm a software developer that works with SQL Server .NET (mostly of the VB.NET variety) for a mid-size cable company. On my own time, I build small apps to help get things done a little better, and I've got some of them posted at my website.
|
|
8h |
comment |
Upgrading SQL 2000 32-bit to SQL 2008 64-bit In additional to that info, you could run the database in Compatibility Level 80, which will leave all SQL processing the same way it was in 2000. |
|
8h |
comment |
.NET webservice using an instance of a parameter type? Is there any way around this? Since I'm referencing the same DLL in both projects (the webservice and the project with the web reference), can I force the "proxy class" to be a copy of its actual class? Or is there an easy way to map them between each other? |
|
8h |
comment |
Why .NET code compiles to MSIL? musicfreak - while MS.NET is Windows-only, it still has to consider translating to the APIs under 2000, XP, Vista, 7, and beyond, not to mention x86 vs x64, plus x128 (if 8 supports it), plus whatever's coming. "Windows" is far from homogeneous. |
|
17h |
awarded | ● Popular Question |
|
Dec 11 |
revised |
SQL Server - Why would my SPID be “SUSPENDED” but not blocked, while creating an index? added 188 characters in body |
|
Dec 11 |
comment |
SQL Server - Why would my SPID be “SUSPENDED” but not blocked, while creating an index? But I'm running the command from SSMS, and my session still shows "Executing" - it doesn't appear to be done at all, and it went to "Suspended" way too fast to have actually completed. Interesting link, though - I was unaware of that connection. |
|
Dec 11 |
asked | SQL Server - Why would my SPID be “SUSPENDED” but not blocked, while creating an index? |
|
Dec 5 |
awarded | ● Popular Question |
|
Dec 4 |
comment |
What are the minimal quantity of testers per programmers? I think this answer confuses TDD and unit testing with having people actually test your code for success. While unit tests help development and keep the code stable, the developer is inherently terrible and finding new bugs, because they wrote the code, so they tend not to see things that the end-users might have trouble with or think are incorrect |
|
Dec 3 |
revised |
Does anyone know of a good salesforce.com SOQL resource? fixed link |
|
Dec 1 |
comment |
SQL Join without multiple LEFT Which of the multiple records in Repair or Tow do you want to return in that case? |
|
Dec 1 |
answered | The INSERT statement conflicted with the FOREIGN KEY constraint |
|
Nov 29 |
revised |
Limited user premissions in team foundation server tagging |
|
Nov 29 |
answered | TF10216: Team Foundation services are currently unavailable. (user problem?) |
|
Nov 29 |
comment |
Going live with a project with no bugs generation I wish that was the case - I got a Computer Info Sys degree that taught me how to program, but I didn't learn anything about any of these topics. I wish practical programming was actually a common theme in university classes, but it's unfortunately much more rare than it ought to be. |
|
Nov 26 |
awarded | ● Popular Question |
|
Nov 25 |
revised |
Find last sunday deleted 118 characters in body |
|
Nov 25 |
answered | Find last sunday |
|
Nov 23 |
revised |
How to mix audio samples? fixed link text |
|
Nov 22 |
awarded | ● Popular Question |
|
Nov 22 |
comment |
How to use CONTAINS with inline queries in SQL Server 2008? To remedy this, could you just create the entire sub-query as a temp table and create a full-text index on that temp table, then select from that? |
|
Nov 22 |
comment |
Why don’t statements that don’t do anything throw an exception (or warn the developer)? This is true - there are a number of instances where a developer could choose to ignore the return value, and I'd hate to add throwaway code everywhere, since it makes things more difficult to read. |
|
Nov 20 |
comment |
Why don’t statements that don’t do anything throw an exception (or warn the developer)? Especially given that strings are immutable, it's ridiculous that the compiler doesn't catch this. |
|
Nov 20 |
comment |
Why don’t statements that don’t do anything throw an exception (or warn the developer)? Perhaps I should rephrase my question. It's not about the documentation - which is correct - but about accidentally forming it incorrectly, but in a way that runs without any sign that something's wrong. I don't expect my code to debug itself, but this mistake seems obvious and easy for the compiler to catch. |
|
Nov 20 |
comment |
Why don’t statements that don’t do anything throw an exception (or warn the developer)? Juliet - I like this convention more, because I have to signify that I'm swallowing the return value, as opposed to accidentally doing it. My problem is not so much with functions that don't "do" anything, but with functions I'd expect to be reflexive - like string functions, which are clearly meant to act on the string itself - though I suppose that's harder to qualify objectively... |
|
Nov 20 |
comment |
Why don’t statements that don’t do anything throw an exception (or warn the developer)? I'd considered this but never tried it - I just created a custom function as did nothing but returned a value, then called it and didn't handle the return, with the same effect. It seems like I should be able to decorate my functions with a <ReturnHandlerRequired> or something like that to specify that they have no impact if the return is discarded, to prevent situations like this from happening. The case with VB.NET's string functions is a perfect example - they have no side-effects, and so calling them without handling the results is pointless, so should be flagged. |
|
Nov 20 |
asked | Why don’t statements that don’t do anything throw an exception (or warn the developer)? |
|
Nov 20 |
revised |
What is your tool for version control (FAQ) added licensing details |
|
Nov 20 |
comment |
See if any application has a DLL from the GAC loaded It looks like I get a "NotSupportedException" on the second line - "Feature is not supported for remote machines", though it works like a champ locally. Any ideas about another method that would work on a remote machine? |
|
Nov 20 |
revised |
See if any application has a DLL from the GAC loaded added links and some detail |
|
Nov 20 |
comment |
See if any application has a DLL from the GAC loaded I'd love to do it programmatically - since Process Explorer does it, that means it can be done, which is encouraging. Any ideas how they do? |
|
Nov 19 |
revised |
Source control products that support linked/shared files? changed casing |
|
Nov 19 |
asked | See if any application has a DLL from the GAC loaded |
|
Nov 17 |
answered | How to read and write ID3 tags to an MP3 in C#? |
|
Nov 17 |
comment |
Is there a special sp on SQL server 2008 to get a table change script? Are you just looking to do "ALTER TABLE" commands to change the datatype on that field? If so, then you don't need to script the whole table at all - you can just select from SYSCOLUMNS and SYSOBJECTS to create the ALTER TABLE statements. I can do an example if you want one. |
|
Nov 16 |
accepted | Is there a special sp on SQL server 2008 to get a table change script? |
|
Nov 16 |
comment |
GAC Comparison Tool for multiple servers? Thanks for this - I've been having a horrible time keeping my web servers in sync with each other, and this will help nicely! |
|
Nov 13 |
awarded | ● Enlightened |
|
Nov 13 |
awarded | ● Nice Answer |
|
Nov 12 |
comment |
Deleting a file causes an untrapable error This behavior doesn't seem right - is there a connect bug filed for it? |
|
Nov 12 |
comment |
Deleting a file causes an untrapable error Which version of the framework are you using? This definitely sounds like a bug, as an exception should be thrown here - I wanted to submit one for your version if it's not already out there. |
|
Nov 12 |
comment |
Deleting a file causes an untrapable error The file exists - he's having problems deleting it from the media |
|
Nov 12 |
comment |
Windows Mobile Web Services - works while tethered, not while using cell data network Can you please accept your answer so this question doesn't show up on the "unanswered" list? |
|
Nov 9 |
asked | Why doesn’t SQL Server automatically up-convert DATE to DATETIME for comparison purposes? |
|
Nov 9 |
answered | Is there a special sp on SQL server 2008 to get a table change script? |
|
Nov 3 |
comment |
Downsides to “WITH SCHEMABINDING” in SQL Server? I suppose that's true, and much less invasive than dropping the view for the duration of your DDL. I recently had to change the collation on some columns, and just doing an ALTER/Change collation/ALTER would have been much easier than dropping the view and breaking the application while I was working. |
|
Nov 2 |
comment |
Downsides to “WITH SCHEMABINDING” in SQL Server? Is there a way to make this the default option, or is it always something that needs to be done consciously? |
|
Nov 2 |
revised |
Downsides to “WITH SCHEMABINDING” in SQL Server? added 47 characters in body |
|
Nov 2 |
revised |
Downsides to “WITH SCHEMABINDING” in SQL Server? added 4 characters in body |
|
Nov 2 |
comment |
Downsides to “WITH SCHEMABINDING” in SQL Server? If there are no downsides, and it's safer (which was my initial impression), then why wouldn't people use it? It seems like protecting your views from accidental breakage would be a priority, or like it should be the other way around - WITH is the default, and you have to declare your views WITHOUT if you want that behavior. |
