| bio | website | coehoorn.no-ip.org |
|---|---|---|
| location | York, NE | |
| age | 32 | |
| visits | member for | 4 years, 9 months |
| seen | 6 hours ago | |
| stats | profile views | 25,226 |
2009-2012 Microsoft ASP.Net MVP
It's pronounced: koo-horn
Search StackOverflow
Search MSDN
The avatar is both because I play counter strike and a nod to lambda expressions in C#.
|
21h |
comment |
get the format of a string date in c# In a word: no. If you care, also save the original string. |
|
21h |
comment |
Hiding SQL Server instance across the network Voted to migrate this to dba.stackexchange. Not a bad question, but you'll likely get a better answer there. |
|
21h |
revised |
C# StreamWriter not writing correctly added 4 characters in body |
|
23h |
comment |
Stored Procedures SQL Server Openrowset seems like the wrong way to do this. |
|
23h |
comment |
Stored Procedures SQL Server don't use convert() to compare dates like that. DATEDIFF() will be much faster. |
|
23h |
comment |
SQL Parameters - where does expansion happens @Roddy - sql queries are "compiled" by sql server before execution, to ensure correctness and validate permissions. If the table name changes at run time, sql server can't validate those permissions as effectively. |
|
1d |
comment |
How to convert text column to datetime in SQLHow do I convert it to a datetime format like this: "2013-05-21 09:45:48.000" If you're looking for a specific format, you misunderstand how datetime columns work. They aren't stored in a human-readable format at all, but are merely displayed that way by your query tool for your convenience. |
|
1d |
answered | SQL Parameters - where does expansion happens |
|
1d |
comment |
SQL Parameters - where does expansion happens Performance is a nice side-effect. Parameters were created for security, to protect against sql injection attacks in an absolutely inviolate way. |
|
1d |
comment |
SQL Parameters - where does expansion happens Poor example: you can't typically use a parameter for the name of the table itself. |
|
1d |
comment |
Using loop to read data in SQL Table and passing field value to anoither stored procedure This is actually less efficient, because you'll need to allocate memory for the whole result set, and you won't be able to start processing the second level until all of the first level finishes. Also: Throw Ex? Really? That's an anti-pattern, because it breaks your stack trace. |
|
1d |
comment |
Using loop to read data in SQL Table and passing field value to anoither stored procedure We need to see the stored procedure also. |
|
1d |
revised |
Using loop to read data in SQL Table and passing field value to anoither stored procedure added 4 characters in body |
|
1d |
revised |
Using loop to read data in SQL Table and passing field value to anoither stored procedure added 183 characters in body |
|
1d |
answered | Using loop to read data in SQL Table and passing field value to anoither stored procedure |
|
1d |
comment |
Using loop to read data in SQL Table and passing field value to anoither stored procedure Post both queries: I expect we could write them so that you only need on query in the first place. |
|
1d |
answered | Which loop more efficient/preferable - foreach or while loop |
|
1d |
revised |
SQL Server Delete Statement Timing Out edited tags |
|
2d |
answered | Cannot set the Order By to my SQL Statement, need a workaround |
|
May 17 |
comment |
SqlDataReader returns null This is true, but it's not the cause of his (current) error. The code never makes it that far. |