Charles Bretana
|
Registered User
|
Business Systems Analyst. Enterprise Systems Architect. Software developer.
Custom applications framework design and implementation. Multi tier applications and database systems architectural design and implementation. Service oriented architecture (SOA) component design & development. Relational Database (schema) design and development. Microsoft .Net applications design and development. Agile, SCRUM, & Waterfall SDLC Methodologies including Test Driven Development (TDD) and Unit Testing (NUnit)
|
|
45m |
comment |
Query to select intervals from a table cause the first row in yr source tabvle has null Start Date.. To fix that, use Coalescee, as in edited version above... |
|
50m |
revised |
Query to select intervals from a table added 21 characters in body |
|
1d |
revised |
How Do I Select the Entire Record When Using MAX() With GROUP BY added 422 characters in body; added 4 characters in body; added 1 characters in body |
|
1d |
answered | How Do I Select the Entire Record When Using MAX() With GROUP BY |
|
1d |
comment |
Query to select intervals from a table what additional rows is it returning. If your data is as you describe above, it should return one row per row in your table. |
|
1d |
comment |
C# get date/time a windows service started @Serge. If we're talking about NT or Windows Services, they always run in their own process space, no? Can you run one in a separate Host Process ? If you can, then I'd venture to say that the "service" you are talking about isn;t really a service in that sense, i.e, it probably does not derive from the .Net class System.ServiceProcess.ServiceBase, |
|
1d |
comment |
C# get date/time a windows service started Code uses processName cause it will work for any process, not just a service host |
|
1d |
comment |
Why does this cause a StackOverFlow error? Yes, and, again, as I mentioned, Generally, with standard ASP.Net session, I don't believe there is any real performance issue with in ASP.Net. As I recall, it might be a bit slower if you elect to store session in a database, or on a shared server, (which you might do if your Web Server is in a farm and you wish to share session state among all the members in the farm) |
|
1d |
revised |
convert number to string added 112 characters in body |
|
1d |
answered | Query to select intervals from a table |
|
1d |
comment |
collections and application wide use? Then you create it in Application's main, when app starts up, and either pass the reference to it around to everywhere you need it, or make it globally accessible (put the single instance of this collection into a static property of some static class) |
|
1d |
answered | collections and application wide use? |
|
1d |
revised |
Fine control over SQL Sort Order added 346 characters in body |
|
1d |
comment |
Fine control over SQL Sort Order @Jonathan, then you need an expression which represents this. It sounds like all rows are sorted by colName except the one with value = second_val, which needs to be sorted immediately after the row(s) with first_val. so see my edit.. |
|
1d |
revised |
Fine control over SQL Sort Order added 174 characters in body; added 41 characters in body |
|
1d |
comment |
Fine control over SQL Sort Order @Jonathan, Sure, you can use Case just about anywhere. @astander, good one.. I wasn't sure you could use In (List) syntax inside a Case... |
|
1d |
accepted | Fine control over SQL Sort Order |
|
1d |
revised |
C# get date/time a windows service started added 69 characters in body |
|
1d |
accepted | C# get date/time a windows service started |
|
1d |
comment |
Why does this cause a StackOverFlow error? He's talking about the difference in read performance accssing a session variable vs. accessing a variable in a method's stack frame. It used to be (some time ago - old classic ASP) that variables or data stored in Session state were substantially more difficult and/or prone to errors than other variables. I don;t believe this is stil the case with ASP.Net, but I'm not sure. |
|
1d |
answered | Fine control over SQL Sort Order |
|
1d |
answered | SQL Virtual Table |
|
1d |
comment |
C# get date/time a windows service started ahhh, If the OP needs to know for a non-running service, when it was last started, then he needs to look in event log. ... Although if service is not running, I'm not sure why the last start time would be helpful. |
|
1d |
comment |
Why does this cause a StackOverFlow error? @Xaisoft, Definitely need "Session["albums"] = value" the other was my bad for copy paste from yr code... |
|
1d |
comment |
Is there a way to not break code if columns in a database change? oh, sorry, I was not clear, by "table names" I meant the "column names in the table" -- and if someone cjhanges the aliases, then someone else needs to go change them back... |
|
1d |
revised |
Is there a way to not break code if columns in a database change? added 14 characters in body |
|
1d |
awarded | ● Nice Answer |
|
1d |
comment |
Why does this cause a StackOverFlow error? @Wim, not at all, But I don;t see them.. Perhaps I was editing at the same time and overwrote yr changes ? If so, please add again... |
|
1d |
revised |
Why does this cause a StackOverFlow error? deleted 1 characters in body |
|
1d |
comment |
Why does this cause a StackOverFlow error? @tanascius, Thx, correctted... |
|
1d |
answered | stored procedure expects parameter which was not supplied |
|
1d |
answered | Is there a way to not break code if columns in a database change? |
|
1d |
comment |
Why does this cause a StackOverFlow error? See my second example... |
|
1d |
revised |
Why does this cause a StackOverFlow error? added 470 characters in body; added 70 characters in body; added 2 characters in body |
|
1d |
answered | Why does this cause a StackOverFlow error? |
|
1d |
comment |
C# get date/time a windows service started Stopping a service terminates the Service process. Starting it runs it again... |
|
1d |
comment |
C# get date/time a windows service started Oh, Sorry, What do you think happens when you "Stop" a service?? The process is terminated. This returns the DateTime when the process was last run, which, for a service, is when it was last started. |
|
1d |
comment |
C# get date/time a windows service started Yes, fixed that |
|
1d |
revised |
C# get date/time a windows service started added 160 characters in body; added 121 characters in body; added 103 characters in body; added 44 characters in body |
|
1d |
answered | C# get date/time a windows service started |
|
1d |
answered | Delete a record and all the record that precede it |
|
1d |
answered | How should i code this paging? |
|
1d |
comment |
Optimizing T-SQL query which constracts the same subtable twice Your quite welcome... As an aside, although you are of course free to format and code as you find most agreeable, it kinda goes without saying that the more readable and clear the SQL in your question is, the more participation and help you are going to get from the other people on this forum. There are some generally accepted techniques for making long SQL statements more readable... Although I am by no means implying that how I formatted yr SQL above is best, please notice for example, the table aliases I added to your code. |
|
1d |
accepted | Optimizing T-SQL query which constracts the same subtable twice |
|
2d |
answered | Corporate developers: Do you feel your code is adding value to the company? |
|
2d |
revised |
Select datetime data from SQL Server colum added 118 characters in body; deleted 16 characters in body |
|
2d |
answered | Select datetime data from SQL Server colum |
|
2d |
revised |
Elegant way to create a nested Dictionary in C# edited body |
|
2d |
comment |
Elegant way to create a nested Dictionary in C# Sorry, I answered original question, which did not make this point clear... Edited my answer to show you, explicitly, how to do that... |
|
2d |
revised |
Elegant way to create a nested Dictionary in C# added 565 characters in body; deleted 4 characters in body |
