User Terrapin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T08:47:56Zhttp://stackoverflow.com/feeds/user/357http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/174600/t-sql-is-there-a-way-to-disable-a-trigger-in-the-scope-of-a-transaction5T-SQL - Is there a way to disable a trigger in the scope of a transaction?Terrapin2008-10-06T14:48:39Z2009-11-24T12:28:37Z
<p>In SQL Server 2005, is there a way for a trigger to find out what object is responsible for firing the trigger? I would like to use this to disable the trigger for one stored prodecure.</p>
<p>Is there any other way to disable the trigger only for the current transaction? I could use the following code, but if I'm not mistaken, it would affect concurrent transactions as well - which would be a bad thing.</p>
<pre><code>DISABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL } ON { object_name | DATABASE | ALL SERVER } [ ; ]
ENABLE TRIGGER { [ schema_name . ] trigger_name [ ,...n ] | ALL } ON { object_name | DATABASE | ALL SERVER } [ ; ]
</code></pre>
<p>If possible, I would like to avoid the technique of having a "NoTrigger" field in my table and doing a <code>NoTrigger = null</code>, because I would like to keep the table as small as possible.</p>
<p>The reason I would like to avoid the trigger is because it contains logic that is important for manual updates to the table, but my stored procedure will take care of this logic. Because this will be a highly used procedure, I want it to be fast.</p>
<blockquote>
<p>Triggers impose additional overhead on the server because they initiate an implicit transaction. As soon as a trigger is executed, a new implicit transaction is started, and any data retrieval within a transaction will hold locks on affected tables.</p>
</blockquote>
<p>From: <a href="http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1170220,00.html#trigger" rel="nofollow">http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1170220,00.html#trigger</a></p>
http://stackoverflow.com/questions/481395/t-sql-identity-scopeidentity-output-and-other-methods-of-retrieving-last4T-SQL: @@IDENTITY, SCOPE_IDENTITY(), OUTPUT and other methods of retrieving last identityTerrapin2009-01-26T21:19:38Z2009-11-02T15:07:41Z
<p>I have seen various methods used when retrieving the value of a primary key identity field after insert.</p>
<pre><code>declare @t table (
id int identity primary key,
somecol datetime default getdate()
)
insert into @t
default values
select SCOPE_IDENTITY() --returns 1
select @@IDENTITY --returns 1
</code></pre>
<p>Returning a table of identities following insert:</p>
<pre><code>Create Table #Testing (
id int identity,
somedate datetime default getdate()
)
insert into #Testing
output inserted.*
default values
</code></pre>
<p>What method is proper or better? Is the OUTPUT method scope-safe?</p>
<p>The second code snippet was borrowed from <a href="http://sqlinthewild.co.za/index.php/2008/12/31/on-the-output-of-a-data-modification/#more-124" rel="nofollow">SQL in the Wild</a></p>
http://stackoverflow.com/questions/20675/asp-vbscript-int-vs-cint2ASP/VBScript - Int() vs CInt()Terrapin2008-08-21T18:02:48Z2009-10-22T04:22:08Z
<p>What is the difference in ASP/VBScript between Int() & CInt()?</p>
http://stackoverflow.com/questions/228518/palindrome-golf/231639#2316392Answer by Terrapin for Palindrome GolfTerrapin2008-10-23T21:41:39Z2009-09-27T12:38:06Z<p>C# <strong>Without Reverse Function</strong> 84 chars </p>
<pre><code>int p(char[]s){int i=0,l=s.Length,t=1;while(++i<l)if(s[i]!=s[l-i-1])t&=0;return t;}
</code></pre>
<p>C# <strong>Without Reverse Function</strong> 86 chars </p>
<pre><code>int p(char[]s){int i=0;int l=s.Length;while(++i<l)if(s[i]!=s[l-i-1])return 0;return 1;}
</code></pre>
<p>VBScript 41 chars</p>
<pre><code>function p:p=s=strreverse(s):end function
</code></pre>
http://stackoverflow.com/questions/734760/oo-design-do-you-use-public-properties-or-private-fields-internally4OO Design - do you use public properties or private fields internally?Terrapin2009-04-09T15:35:43Z2009-09-25T16:35:27Z
<p>I'm working in C# 2.0, but this would apply to most object oriented languages. When I create classes with public properties that wrap private fields, I switch back & forth between whether I should use the property or field internally. Of course C# 3.0 makes this easier with auto-properties, but it could still apply.</p>
<p>Does it matter?</p>
<pre><code>public class Person
{
private string _name = "";
public string Name
{
get { return _name; }
set { _name = value; }
}
public Person(string name)
{
_name = name; //should I use the property or field here?
}
}
</code></pre>
http://stackoverflow.com/questions/1466624/httprequest-gethashcode-implementation-how-often-do-collisions-occur2HttpRequest.GetHashCode() implementation - how often do collisions occur?Terrapin2009-09-23T15:09:34Z2009-09-23T15:31:18Z
<p>I'm trying to find a reliable to way to uniquely identify and track distinct HttpRequests in an ASP.NET web site.</p>
<p>Does anybody know anything about the implementation of HttpRequest.GetHashCode()? Specifically, how often do collisions occur? </p>
<p>I understand that HashCodes are not guaranteed to be unique. What I'm trying to understand is statistically how often I could expect a HashCode to repeat itself.</p>
<p>The system I have in mind would gracefully handle HashCode collisions, but I want to make sure they're at least as unique as 1 in 1000 or so.</p>
http://stackoverflow.com/questions/1407389/asp-net-can-i-write-my-own-messages-to-etw1ASP.NET - Can I write my own messages to ETW?Terrapin2009-09-10T19:56:56Z2009-09-10T21:30:16Z
<p>With the ASP.NET Events ETW (Event Tracing for Windows) provider, can I write custom messages to the trace from an ASP.NET page?</p>
http://stackoverflow.com/questions/18783/sql-what-are-your-favorite-performance-tricks29SQL - What are your favorite performance tricks?Terrapin2008-08-20T20:45:15Z2009-08-05T10:55:52Z
<p>When you have a query or stored procedure that needs performance tuning, what are some of the first things you try?</p>
http://stackoverflow.com/questions/2702/how-do-i-use-t-sql-group-by1How do I use T-SQL Group ByTerrapin2008-08-05T18:55:35Z2009-07-27T01:51:20Z
<p>I know I need to have (although I don't know why) an Order By clause on the end of a SQL query that uses any aggregate functions like count, sum, avg, etc:</p>
<pre><code>select count(userID), userName from users group by userName<br></code></pre>
<p>When else would GROUP BY be useful, and what are the performance ramifications?</p>
http://stackoverflow.com/questions/9228/ado-net-connection-pooling-sqlserver1ADO.NET Connection Pooling & SQLServerTerrapin2008-08-12T20:48:30Z2009-07-17T11:27:44Z
<ul>
<li>What is it?</li>
<li>How do I implement connection pooling with MS SQL?</li>
<li>What are the performance ramifications when</li>
<ul>
<li>Executing many queries one-after-the other (i.e. using a loop with 30K+ iterations calling a stored procedure)?</li>
<li>Executing a few queries that take a long time (10+ min)?</li>
</ul>
<li>Are there any best practices?</li>
</ul>
http://stackoverflow.com/questions/28110/sql-server-datetime-conversion-failure1SQL Server DateTime conversion failureTerrapin2008-08-26T14:01:43Z2009-07-17T11:19:21Z
<p>I have a large table with 1 million+ records. Unfortunately, the person who created the table decided to put dates in a varchar(50) field.</p>
<p>I need to do a simple date comparison -</p>
<pre><code>datediff(dd, convert(datetime, lastUpdate, 100), getDate()) < 31
</code></pre>
<p>But it fails on the convert():</p>
<pre><code>Conversion failed when converting datetime from character string.
</code></pre>
<p>Apparently there is something in that field it doesn't like, and since there are so many records, I can't tell just by looking at it. How can I properly sanitize the entire date field so it does not fail on the convert()? Here is what I have now:</p>
<pre><code>select count(*)
from MyTable
where
isdate(lastUpdate) > 0
and datediff(dd, convert(datetime, lastUpdate, 100), getDate()) < 31
</code></pre>
http://stackoverflow.com/questions/20840/sql-server-dirty-reads-pros-cons0SQL Server - Dirty Reads Pros & ConsTerrapin2008-08-21T19:12:59Z2009-07-03T20:44:41Z
<p>Why should I or shouldn't I use dirty reads:</p>
<pre><code>set transaction isolation level read uncommitted
</code></pre>
<p>in SQL Server?</p>
http://stackoverflow.com/questions/1012726/how-do-ado-net-datatable-constraints-affect-performance3How do ADO.NET DataTable Constraints affect performance?Terrapin2009-06-18T13:49:39Z2009-06-27T16:20:49Z
<p>Do constraints on a DataTable (e.g. PrimaryKey & UniqueContraint) make Selects more efficient in the same way that they would in SQL Server? Or is their only purpose to enforce rules on the data?</p>
<pre><code>myDT.Constraints.Add("PK", myDT.Columns["UniqueID"], true); //add a primary key
myDT.Constrinats.Add(new UniqueConstraint(new DataColumn[] { //add a unique constraint for UserID
myDT.Columns["UserID"], myDT.Columns["UniqueID"]
}));
</code></pre>
<p>Would these examples potentially have better performance when looking up data in the DataTable by <code>UniqueID</code> or <code>UserID</code>?</p>
http://stackoverflow.com/questions/4269/programmatic-sms20Programmatic SMSTerrapin2008-08-07T01:28:03Z2009-06-18T18:43:25Z
<p>What is the best way to programmatically send an SMS text message?</p>
<p>Are there any free Web Service based SMS gateways?</p>
<p>I know that if I happen to know the user's carrier (Sprint, AT&T, etc), I can send an <a href="http://en.wikipedia.org/wiki/SMS_gateways" rel="nofollow">SMS by emailing an address</a> based on phone number + carrier. I would like a good solution that does not require me to know the carrier. Barring that, is there an easy way to lookup carrier given a cell phone number?</p>
<p>I understand that there are some services independent of the major mobile carriers that offer a per-message fee-based service, with API. What I would like to know is how such organizations tap into the SMS networks. Do they have contracts with mobile carriers to resell their services?</p>
http://stackoverflow.com/questions/488811/tinyint-vs-bit1Tinyint vs BitTerrapin2009-01-28T18:43:01Z2009-06-13T02:46:16Z
<p>I don't want to touch-off a religious war here, but there seem to be two schools of thoughts in how to represent boolean values in a database. Some say <code>bit</code> is the appropriate data type, while others argue <code>tinyint</code> is better.</p>
<p>The only differences I'm aware of are these:</p>
<ul>
<li><code>bit</code>: storage size is 1 bit, possible values are 0 or 1</li>
<li><code>tinyint</code>: storage size is 1 byte, possible values are 0-255</li>
</ul>
<p>Which data type is better when you need to represent boolean values? Is <code>tinyint</code> worth the extra overhead "just in case" you need to values > 1?</p>
http://stackoverflow.com/questions/180046/sql-server-using-clr-integration-to-consume-a-web-service4SQL Server - Using CLR integration to consume a Web ServiceTerrapin2008-10-07T19:46:28Z2009-05-21T20:38:47Z
<p>There are a few <a href="http://www.simple-talk.com/sql/sql-server-2005/practical-sql-server-2005-clr-assemblies/" rel="nofollow">tutorials</a> on the web that describe consuming a Web Service using SQL Server 2005's CLR integration. For the most, the process seems pretty convoluted. I've run into several issues including the need to change my database's trust level, and using the sgen tool to create a static XmlSerializer assembly; and I still haven't gotten it working right... (I'm sure I just need to put a little more time and energy into it)</p>
<p>What are the security, performance, and maintenance implications when going to this type of architecture? This would likely be a fairly heavily-used process, and ease of maintenance is relatively important.</p>
<p>I do have freedom to choose whether to integrate this into SQL Server as a UDF, or have it be a stand alone .NET library for console/Web applications. Is the SQL CLR integration with external assemblies worth the trouble?</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows19SQL - How can I remove duplicate rows?Terrapin2008-08-20T21:51:29Z2009-05-08T13:09:03Z
<p>What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)?</p>
<p>The rows of course will not be perfect duplicates because of the existence of the RowID identity field.</p>
<pre><code>MyTable
-----------
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
</code></pre>
http://stackoverflow.com/questions/6414/c-loop-break-vs-continue11C# loop - break vs. continueTerrapin2008-08-08T21:49:01Z2009-04-28T23:20:03Z
<p>In a C# (feel free to answer for other languages) loop, what's the difference between break and continue as a means to leave the structure of the loop, and go to the next iteration?</p>
<p>Example:</p>
<pre><code>foreach (DataRow row in myTable.Rows)<br>{<br> if (someConditionEvalsToTrue)<br> {<br> break; //what's the difference between this and continue ?<br> //continue;<br> }<br>}<br></code></pre>
http://stackoverflow.com/questions/606686/how-can-i-throttle-failed-logins-in-sql-server-20051How can I throttle failed logins in SQL Server 2005?Terrapin2009-03-03T14:53:57Z2009-04-24T10:20:18Z
<p>I believe my server has been the ongoing target of a brute-force attack on SQL Server 2005 (SQLExpress). My Event Viewer log is filled with "Failure Audit" messages for SQL Server. The attempts usually last for an hour or two, with 1-2 seconds between attempts.</p>
<blockquote>
<p>Login failed for user 'sa' [CLIENT: 222.169.224.163]</p>
</blockquote>
<p>Event ID: 18456. Based on matching entries in the SQL Server log, I have found that each login fails due to a mismatched password. I have also seen attempts for other users, including 'administrator' and 'administrador'. Each session comes from a different IP address, and are from countries like Italy and China.</p>
<p><strong>What countermeasures can be taken?</strong> I do not want to lock out the user account, because then my site and applications will not have access to the server. Is there a way to throttle login attempts through SQL Server 2005? E.g. geometrically increase the 'wait period' between failed login attempts?</p>
http://stackoverflow.com/questions/22623/net-throwing-exceptions-best-practices17.NET - Throwing Exceptions best practicesTerrapin2008-08-22T15:12:15Z2009-04-22T11:38:41Z
<p>What are the best practices to consider when catching exceptions, and re-throwing them. I want to make sure that the Exception object's InnerException and stack trace are preserved. Is there a difference between the following code blocks in how they handle this?</p>
<pre><code>try
{
//some code
}
catch (Exception ex)
{
throw ex;
}
//......
try
{
//some code
}
catch
{
throw;
}
</code></pre>
http://stackoverflow.com/questions/731930/how-do-i-override-page-load-lifecycle-in-asp-net-to-prevent-aspx-form-from-loadin/731945#7319455Answer by Terrapin for How do I override page load lifecycle in ASP.NET to prevent ASPX form from loading?Terrapin2009-04-08T21:32:21Z2009-04-08T21:32:21Z<p>Probably the easiest way to do it - use <code>Page_Load()</code>.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
bool customResponse = true;
if (customResponse)
{
Response.Write("I am sending a custom response");
Response.End(); //this is what keeps it from continuing on...
}
}
</code></pre>
http://stackoverflow.com/questions/731685/learning-web-development-choosing-a-language-and-framework/731698#7316983Answer by Terrapin for Learning Web Development-Choosing a Language and FrameworkTerrapin2009-04-08T20:33:56Z2009-04-08T20:39:54Z<p>The first thing you should consider is whether you're more comfortable using Windows or Linux (or some derivative thereof, including MacOS X). That will certainly limit your options.</p>
<p>Though most Web technologies crossover to both platforms, there is more support on their native platform. An exception to this would perhaps be Java.</p>
<p>If you're looking to get into .NET, then you should be comfortable with Windows.</p>
<p>If you're looking to get into Python or Perl, then you should be comfortable with Linux (or Unix or a derivative).</p>
<p>PHP could go both ways, but I see at as more of a *nix native.</p>
<p>The same consideration would apply to database systems. MSSQL is well-proven and has a lot of support, but is more expensive in terms of licensing (and hosting) than say MySQL (*nix native), although SQLExpress (MSSQL derivative) is free and works well for non-enterprise applications. However, MSSQL will not cross-over to *nix platforms, while MySQL enjoys cross relatively good cross-platform support.</p>
http://stackoverflow.com/questions/731662/how-do-i-combine-these-two-sql-statements-into-one-in-a-manner-compatible-with-b/731682#7316820Answer by Terrapin for How do I combine these two SQL statements into one, in a manner compatible with both MSSQL 2000 and 2005?Terrapin2009-04-08T20:27:56Z2009-04-08T20:27:56Z<pre><code>if not exists (
SELECT f.name AS ForeignKey
FROM sys.foreign_keys AS f
WHERE OBJECT_NAME(f.parent_object_id) = 'myTableName')
begin
ALTER TABLE myTableName
WITH CHECK
ADD CONSTRAINT [FK_myTableName_otherTable]
FOREIGN KEY([columnName])
REFERENCES otherTable ([otherColumn])
end
</code></pre>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730732#7307321Answer by Terrapin for Why do my ASP.NET pages render slowly when placed on the server?Terrapin2009-04-08T16:15:41Z2009-04-08T16:15:41Z<p>If you're not already compressing the HTTP Response, you should <a href="http://terrapinstation.wordpress.com/2008/06/12/aspnet-http-comression-and-reducing-response-size/" rel="nofollow">look into doing that</a>.</p>
<ul>
<li>Look at <a href="http://developer.yahoo.com/yslow/" rel="nofollow">Yslow</a> for FireFox (start here)</li>
<li>Compress your response with standard gzip/deflate compression</li>
<li>Do what you can to reduce the amount of data in your GridView. Elminate unecessary columns, etc.</li>
<li>Turn off viewstate</li>
<li>Use <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">jsmin</a> to reduce the size of your JavaScript files (if any)</li>
<li>Reduce the size of your CSS (if any)</li>
</ul>
http://stackoverflow.com/questions/730366/whats-the-impact-of-select-from-a-view-on-building-the-execution-plan/730442#7304423Answer by Terrapin for What's the impact of 'select *' from a view on building the execution plan?Terrapin2009-04-08T15:04:59Z2009-04-08T15:04:59Z<p>There is no difference in terms of the query plan, but explicitly defining columns is considered good practice for a number of reasons, including:</p>
<ul>
<li>Adding columns to the table will not break legacy code that depends on the old column setup.</li>
<li>Selecting data from columns that you don't need means more data transfer, which is often the slowest part of getting data from the database.</li>
</ul>
http://stackoverflow.com/questions/730395/refresh-a-web-page-in-asp-net-automatically-and-capture-the-time-until-the-next-r/730412#7304123Answer by Terrapin for Refresh a web page in ASP.NET automatically and capture the time until the next refresh...Terrapin2009-04-08T14:56:37Z2009-04-08T14:56:37Z<p>Instead of using <code>window.location.reload()</code>, try doing a redirect to the current URL:</p>
<pre><code>window.location = window.location;
</code></pre>
<p>This way, the browser will not be doing a post back, but a new request to the server. You'll want to test this in various browsers. I just tested FF 3 & IE8 quickly; both look good.</p>
http://stackoverflow.com/questions/730154/how-do-i-test-the-visual-accessibility-of-web-pages-under-development/730167#7301672Answer by Terrapin for How do I test the visual accessibility of web pages under development?Terrapin2009-04-08T14:04:20Z2009-04-08T14:04:20Z<p>You could screen-shot it and send it to me :)</p>
http://stackoverflow.com/questions/727629/function-trying-to-put-dot-after-n-characters/727653#7276530Answer by Terrapin for function trying to put dot after n charactersTerrapin2009-04-07T21:25:21Z2009-04-07T21:25:21Z<p>What language?</p>
<p>In C#:</p>
<pre><code>public string PutDots(string input, int n)
{
char[] c = input.ToCharArray();
StringBuilder output = new StringBuilder();
for (int i = 0; i < c.Length; i++)
{
output.Append(c[i]);
if (i % n == 0 && i > 0)
{
output.Append(".");
}
}
return output.ToString();
}
</code></pre>
http://stackoverflow.com/questions/727528/tools-for-coding-conventions-and-analyzing-html-css-javascript-client-side-code/727566#7275667Answer by Terrapin for Tools for coding conventions and analyzing HTML, CSS, Javascript client side codeTerrapin2009-04-07T20:59:48Z2009-04-07T21:06:18Z<p>W3C has a <a href="http://validator.w3.org/" rel="nofollow">Markup Validation Service</a> for validating (X)HTML.</p>
<p>Also, W3C has tools:</p>
<ul>
<li>For <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow">CSS</a></li>
<li>For <a href="http://validator.w3.org/feed/" rel="nofollow">Atom & RSS</a> feeds</li>
</ul>
<p>And <a href="http://www.jslint.com/" rel="nofollow">JSLint</a> is a tool for checking your JavaScript.</p>
http://stackoverflow.com/questions/727173/c-3-0-how-can-i-order-a-list-by-week-name-starting-on-monday/727189#7271891Answer by Terrapin for C# 3.0 - How can I order a list by week name starting on monday?Terrapin2009-04-07T19:11:12Z2009-04-07T19:20:45Z<p>You would want your sort field to be an integer that corresponds to day of the week:</p>
<pre><code>1 = Monday
2 = Tuesday
3 = Wednesday
...
</code></pre>
<p>Without more specifics, it is hard to give you a code sample. If your weekday is stored as varchar, I suggest that you create a database scalar function that takes day of week as a string argument and returns the appropriate integer. </p>
<p>Here is a sample in T-SQL:</p>
<pre><code>create function dbo.GetDayNumber (
@dayOfWeek varchar(9)
) returns tinyint
as begin
declare @dayNum tinyint
set @dayNum = 0
select @dayNum =
case
when @dayOfWeek = 'Monday' then 1
when @dayOfWeek = 'Tuesday' then 2
when @dayOfWeek = 'Wednesday' then 3
when @dayOfWeek = 'Thursday' then 4
when @dayOfWeek = 'Friday' then 5
when @dayOfWeek = 'Saturday' then 6
when @dayOfWeek = 'Sunday' then 7
end
return @dayNum
end
</code></pre>
<p>Be careful - the above code returns 0 for invalid day names, which could screw with your results if your data is not perfect.</p>
<pre><code>select
MyEvent,
DayOfWeek
from MyEventTable
order by dbo.GetDayNumber(DayOfWeek)
</code></pre>
http://stackoverflow.com/questions/1012726/how-do-ado-net-datatable-constraints-affect-performance/1012827#1012827Comment by Terrapin on How do ADO.NET DataTable Constraints affect performance?Terrapin2009-06-18T14:10:32Z2009-06-18T14:10:32ZIs there a way to add an index to an ADO.NET DataTable that would give me an efficient lookup on those columns?
I didn't see one, hence the UniqueConstraint, which in SQL Server would give me an implicit index. I just don't know if the same efficiency translates to .NET.http://stackoverflow.com/questions/731685/learning-web-development-choosing-a-language-and-framework/731698#731698Comment by Terrapin on Learning Web Development-Choosing a Language and FrameworkTerrapin2009-04-08T21:49:38Z2009-04-08T21:49:38ZTrue. I've never used Mono, but it <b>seems</b> like there is implicitly better support for using the .NET framework in Windows. Do you ever run into roadblocks because you're running on Mono?http://stackoverflow.com/questions/731917/how-to-display-data-from-txt-file-in-specific-formatComment by Terrapin on How to display data from txt file in specific formatTerrapin2009-04-08T21:27:04Z2009-04-08T21:27:04Zis this homework?http://stackoverflow.com/questions/730088/problem-in-updating-a-database-through-windows-applicationComment by Terrapin on Problem In updating a database through windows application.Terrapin2009-04-08T13:54:23Z2009-04-08T13:54:23ZHave you manually run a query after the update to ensure that the update is taking place?http://stackoverflow.com/questions/701030/whats-the-significance-of-oct-12-1999/722753#722753Comment by Terrapin on What's the significance of Oct 12 1999?Terrapin2009-04-07T21:17:19Z2009-04-07T21:17:19Z2PS/N/P: 2 peas in a pod ?http://stackoverflow.com/questions/726662/what-characters-are-unsafe-in-query-strings/726717#726717Comment by Terrapin on What characters are unsafe in query strings?Terrapin2009-04-07T17:16:47Z2009-04-07T17:16:47ZIf you want to completely filer out bad characters, you'll need to use Regular Expressions. If you want to simply translate (encode) those characters into safe ones, use URL Encoding.http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725876#725876Comment by Terrapin on OutOfMemoryException in Regex Matches when processing large filesTerrapin2009-04-07T14:13:55Z2009-04-07T14:13:55ZIt's possible, and I'm not sure if StringBuilder somehow allows Regex to work more efficiently, but IMO that's not something you should rely on. If you're running out of memory, that may be indicative of a larger design problem that should be addressed.http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725876#725876Comment by Terrapin on OutOfMemoryException in Regex Matches when processing large filesTerrapin2009-04-07T14:06:05Z2009-04-07T14:06:05ZI'm betting that the performance difference between line-by-line for small files, and applying the regex all at once is going to be minimal enough that it won't have a noticeable impact.http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-filesComment by Terrapin on OutOfMemoryException in Regex Matches when processing large filesTerrapin2009-04-07T14:02:19Z2009-04-07T14:02:19ZCan you list the code that is using the regex?http://stackoverflow.com/questions/3830/have-you-become-addicted-to-crack-overflowComment by Terrapin on Have you become addicted to Crack Overflow?Terrapin2009-02-24T22:47:35Z2009-02-24T22:47:35Zrolled title back to "Crack Overflow". After the term was coined, a domain was registered, and stack-founder Jeff Atwood himself mentioned it on his twitter feed. I think "Crack Overflow" has become accepted terminology.http://stackoverflow.com/questions/105642/connection-timeout-exception-for-a-query-using-ado-net/105667#105667Comment by Terrapin on Connection Timeout exception for a query using ADO.NetTerrapin2009-02-20T22:41:41Z2009-02-20T22:41:41ZThat's not the way I answered the question - the user is asking what he can do if increasing the timeout is <i>not</i> an option. So I answered him by suggesting he should decrease the time in which his query executes so as to stay within the timeout limit. The timeout can be arbitrarilty set up or down.http://stackoverflow.com/questions/509185/pageload-is-not-hit-in-subfolder-default-aspx-after-redirect-to-that-page/509308#509308Comment by Terrapin on Page_Load Is not Hit in SubFolder Default.aspx after Redirect to that PageTerrapin2009-02-04T00:06:38Z2009-02-04T00:06:38Zthanks. Glad I was able to help, and good luckhttp://stackoverflow.com/questions/509185/pageload-is-not-hit-in-subfolder-default-aspx-after-redirect-to-that-page/509382#509382Comment by Terrapin on Page_Load Is not Hit in SubFolder Default.aspx after Redirect to that PageTerrapin2009-02-03T23:15:05Z2009-02-03T23:15:05ZThe reason Page_Load isn't firing is because you are not using the Visual Studio debugger. Either use the debugger (hit F5 and it will open in a new browser for you), or do a Response.Write() in Page_Load() to see if it is firing.http://stackoverflow.com/questions/509185/pageload-is-not-hit-in-subfolder-default-aspx-after-redirect-to-that-page/509226#509226Comment by Terrapin on Page_Load Is not Hit in SubFolder Default.aspx after Redirect to that PageTerrapin2009-02-03T22:39:59Z2009-02-03T22:39:59ZHow are you determining that Page_Load doesn't fire? Do you have a Response.Write() that isn't firing?http://stackoverflow.com/questions/493000/sql-server-server-side-blob-cursor/493056#493056Comment by Terrapin on SQL Server: Server-side blob cursor?Terrapin2009-01-30T14:49:52Z2009-01-30T14:49:52ZI don't think it will be possible to seek around in the data. I believe SQL Server will want to return the entire field.