User Eric Tuttleman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T14:12:32Zhttp://stackoverflow.com/feeds/user/25677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/970473/batch-sql-inserts-in-net3Batch SQL inserts in .NETEric Tuttleman2009-06-09T14:43:55Z2009-06-09T15:03:04Z
<p>Is using the .NET DataAdapter's batch insert features any more efficient, as far as DB round-trips, compared to using DbCommand.ExecuteNonQuery() in a loop?</p>
<p>Coming from the Java world, I was hoping to find something similar to it's batch abilities where multiple SQL commands are sent to the database and executed in one operation. When monitoring the database server, I see the DataAdapter making one execute per insert.</p>
<p>I've read a few topics that use the SqlBulkCopy but that's only going to work for MS Sql Server.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/220717/most-efficient-data-type-for-uuid-in-database-besides-a-native-uuid/220764#2207642Answer by Eric Tuttleman for Most efficient data type for UUID in database besides a native UUID.Eric Tuttleman2008-10-21T04:28:00Z2008-10-21T04:28:00Z<p>In my experience, the UUID broken up into two integers will still be more efficient than using a char field. Different DBs react in different ways though. Collation could make a difference there too. That being said, there are usually much bigger performance "sins" all over applications, and I don't think that this would be a major thing either way for many applications. You'll have to judge yourself based off of just how busy is this part of your app going to get? Do you need the absolute fastest querying possibley by UUID? Does 600ns vs 400ns a big time difference to you?</p>
<p>If there's going to be a lot of manual sql doen with the db, then having a key that's comprising a UUID from separate fields kind of stinks when you need to do an insert and theres no db default for it. That's also a problem with chars though.</p>
<p>If you have a database extraction layer, then combining multiple table fields to get your UUID shouldn't be a big deal. </p>
http://stackoverflow.com/questions/201479/what-is-the-use-of-base-64-encoding/201487#2014871Answer by Eric Tuttleman for What is the use of base 64 encoding?Eric Tuttleman2008-10-14T14:52:44Z2008-10-14T14:52:44Z<p>Mostly, I've seen it used to encode binary data in contexts that can only handle ascii - or a simple - character sets.</p>
http://stackoverflow.com/questions/199731/best-practice-how-to-track-outbound-links/199739#1997390Answer by Eric Tuttleman for Best practice: How to track outbound links?Eric Tuttleman2008-10-14T01:45:06Z2008-10-14T01:50:10Z<p>On one system I've worked on, we ended up storing redirects in a database table and creating a redirect page that takes an id as an input. On our content pages, we link to the redirect page with an unique id from this table. Once the redirect page looks up the url via the id from the table, it then sends the client a redirect response, sending them to the ending page.</p>
<p>This does give us logging of external links, and as an added bonus, it makes mass changes to external urls a bit easier in some cases.</p>
http://stackoverflow.com/questions/196897/locking-executing-files-windows-does-linux-doesnt-why/196904#1969043Answer by Eric Tuttleman for Locking Executing Files: Windows does, Linux doesn't. Why?Eric Tuttleman2008-10-13T07:14:24Z2008-10-13T07:22:18Z<p>I think linux / unix doesn't use the same locking mechanics because they are built from the ground up as a multi-user system - which would expect the possibility of multiple users using the same file, maybe even for different purposes.</p>
<p>Is there an advantage to locking? Well, it could possibly reduce the amount of pointers that the OS would have to manage, but now a days the amount of savings is pretty negligible. The biggest advantage I can think of to locking is this: you save some user-viewable ambiguity. If user a is running a binary file, and user b deletes it, then the actual file has to stick around until user A's process completes. Yet, if User B or any other users look on the file system for it, they won't be able to find it - but it will continue to take up space. Not really a huge concern to me.</p>
<p>I think largely it's more of a question on backwards compatibility with window's file systems.</p>
http://stackoverflow.com/questions/189479/trouble-deploying-code-written-on-vs2008-to-server-running-net-framework-2-0/189491#1894911Answer by Eric Tuttleman for Trouble deploying code written on VS2008 to server running .NET Framework 2.0Eric Tuttleman2008-10-09T22:46:44Z2008-10-09T22:46:44Z<p>If you're using features from the 3.5 framework, then you'll have to deploy to a 3.5 machine.</p>
<p>Most information you'd probably need for this issue is in the question and answers here:
<a href="http://stackoverflow.com/questions/167569/problems-executing-compiled-35-code-on-a-server-which-only-has-the-20-framework">problems-executing-compiled-35-code-on-a-server-which-only-has-the-20-framework</a></p>
http://stackoverflow.com/questions/186211/run-time-error-in-asp-net-1-1/186233#1862330Answer by Eric Tuttleman for Run time error in ASP.Net 1.1Eric Tuttleman2008-10-09T07:16:43Z2008-10-09T07:16:43Z<p>Two thoughts...</p>
<p>Is the Interop.MSDASC dll in your web apps bin folder? Is the com components that this interop library uses installed on this machine?<br />
Are there any funky things going on with permissions for these files?</p>
<p>Good luck, sounds like a nasty one.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185517#1855170Answer by Eric Tuttleman for Prevent direct access to a PHP page.Eric Tuttleman2008-10-09T00:47:59Z2008-10-09T04:23:22Z<p>Not sure about this, but possibly check for a referrer header? i think if someone manually typed in your url, it wouldn't have a referrer header, while AJAX calls do (at least in the quickly test I just did on my system).</p>
<p>It's a bad way of checking though. Referrer can be blank for a lot of reasons. Are you trying to stop people from using your web service as a public service or something?</p>
<p>After reading your edit comments, if the forms will be loaded via ajax calls, than you could check window.location to see if the url is your ajax form's url. if it is, go to the right page via document.location</p>
http://stackoverflow.com/questions/183428/why-does-batch-file-for-fail-when-iterating-over-command-output/185907#1859071Answer by Eric Tuttleman for Why does batch file FOR fail when iterating over command output?Eric Tuttleman2008-10-09T04:08:47Z2008-10-09T04:08:47Z<p>Wow, that is odd.</p>
<p>If the same commands work when split into two lines, then I'd guess it has something to do with the way the command gets run in a subshell in the FOR command.</p>
<p>If you were really dying to figure out why it's dying in this particular case, you could run commands like "SET > envvars.txt" as the FOR command and compare that with the top shell.</p>
<p>Or maybe start off simple and try running the REG command via CMD /C to see if that does anything?</p>
<p>One quick guess here, what's the values of COMSPEC and SHELL ?</p>
http://stackoverflow.com/questions/181791/how-can-i-save-the-output-of-windows-internal-ftp-client/185849#1858491Answer by Eric Tuttleman for how can I save the output of windows internal FTP client?Eric Tuttleman2008-10-09T03:36:23Z2008-10-09T03:36:23Z<p>Not sure what's happening to you. I'd check the batch file that's running it, or maybe how you're scheduling the job.</p>
<p>The output is confusing as the error seems out of order, but redirecting stderr seems to work on my XP machine:</p>
<pre><code>C:\Temp>ftp -s:ftpcmds.txt ftp.microsxoft.com >ftplog.txt 2>&1
C:\Temp>type ftplog.txt
ftp> Not connected.
ftp> USER sconners
Invalid command.
ftp> PASS skynet.com
Not connected.
ftp> PUT test.txt test1.txt
BYE
> ftp: connect :Unknown error number
C:\Temp>
</code></pre>
http://stackoverflow.com/questions/185698/how-do-i-copy-files-using-windows-batch/185785#1857854Answer by Eric Tuttleman for How do I copy files using Windows Batch?Eric Tuttleman2008-10-09T03:01:24Z2008-10-09T03:01:24Z<p>Ok. With your edit that says you don't want the directory structure, i think you're going to want to use something like this:</p>
<pre><code>for /F "usebackq" %s IN (`DIR /B /S /A-D SrcDir`) DO @(
XCOPY %s DestDir\%~nxs
)
</code></pre>
http://stackoverflow.com/questions/185698/how-do-i-copy-files-using-windows-batch/185703#1857032Answer by Eric Tuttleman for How do I copy files using Windows Batch?Eric Tuttleman2008-10-09T02:26:29Z2008-10-09T02:32:40Z<p>The Xcopy command should help here.</p>
<pre><code>XCOPY /E SrcDir\*.* DestDir\
</code></pre>
<p>Or if you don't want any of the files in SrcDir, just the sub directories, you can use XCOPY in conjunction with the FOR command:</p>
<pre><code>FOR /D %s IN (SrcDir\*) DO @XCOPY /E %s DestDir\%~ns\
</code></pre>
http://stackoverflow.com/questions/185591/newbie-in-java/185601#1856011Answer by Eric Tuttleman for Newbie in JavaEric Tuttleman2008-10-09T01:29:44Z2008-10-09T01:29:44Z<p>Maybe it's saying that there isn't a method in InteranlFrameDemo called getstring that takes a String argument. Possibly is the method supposed to be getString("mystring")?</p>
<p>method names are case-sensitive in java, which is why I'm guessing this</p>
http://stackoverflow.com/questions/185542/net-logging-framework/185546#1855460Answer by Eric Tuttleman for .NET logging frameworkEric Tuttleman2008-10-09T01:03:04Z2008-10-09T01:03:04Z<p>Yep. <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">Log4Net</a>.</p>
<p>I've been using it for a while, it has been a life saver!</p>
http://stackoverflow.com/questions/185486/which-eclipse-subversion-plugin-should-i-use/185498#1854989Answer by Eric Tuttleman for Which Eclipse Subversion plugin should I use?Eric Tuttleman2008-10-09T00:37:52Z2008-10-09T00:37:52Z<p>I've recently switched from subclipse to subversive. After upgrading our repository from v1.4.x to 1.5, we started having lots of issues with subclipse.</p>
<p>After doing a synch, you'd see updates that you had just accepted, and you wouldn't be able to take other updates without doing "hacks"</p>
<p>So far subversive is pretty nice. it even seems a little faster for lots of small files than subclipse was.</p>
http://stackoverflow.com/questions/185474/c-retrieving-correct-dbconnection-object-by-connection-string/185482#1854821Answer by Eric Tuttleman for C# Retrieving correct DbConnection object by connection stringEric Tuttleman2008-10-09T00:29:26Z2008-10-09T00:29:26Z<p>if you're using framework 2.0 or above, and you can get them to pass in a second string with the driver class, you can use the dbProviderFactory class to load the driver for you.</p>
<pre><code>DbProviderFactory dbProviderFactory = DbProviderFactories.GetFactory(myDriverClass);
DbConnection dbConnection = dbProviderFactory.CreateConnection();
dbConnection.ConnectionString = myConnectionString;
</code></pre>
<p>Here's an MSDN link to the Factory class:
<a href="http://msdn.microsoft.com/en-us/library/wda6c36e.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/wda6c36e.aspx</a></p>
http://stackoverflow.com/questions/185420/issues-with-client-consuming-a-net-web-service-upgraded-from-net-1-1-to-3-5/185476#1854760Answer by Eric Tuttleman for Issues with client consuming a .net web service upgraded from .NET 1.1 to 3.5Eric Tuttleman2008-10-09T00:25:04Z2008-10-09T00:25:04Z<p>If you go directly to the asmx url with a web browser, and then click on the method you want to call, what's the SOAPAction that they want?</p>
<p>next, check the Reference.vb code and see what the SoapDocumentMethodAttribute attribute is set to.</p>
<p>Do they match?</p>
http://stackoverflow.com/questions/185348/virtual-desktop-software-best-practices/185371#1853712Answer by Eric Tuttleman for Virtual Desktop Software - Best practicesEric Tuttleman2008-10-08T23:38:50Z2008-10-08T23:38:50Z<p>Personally, I have focus issues. One trip to google reader, and I'll be sucked into it for a considerable time. So I usually have a virtual desktop setup for personal - non work related stuff and put everything on it that I consider an attention sink.</p>
<p>While doing web development, here's the desktop setup:</p>
<p><strong>Desktop1:</strong><br />
VS.Net<br />
MSDN, or web browser for testing</p>
<p><strong>Desktop2:</strong><br />
email app<br />
web browser for news or fun</p>
<p><strong>Desktop3:</strong><br />
explorer windows (file management)<br />
svn / cvs synch </p>
http://stackoverflow.com/questions/184678/why-does-parsing-this-date-string-throw-an-unparseable-date-exception/184827#1848271Answer by Eric Tuttleman for why does parsing this date string throw an unparseable date exception?Eric Tuttleman2008-10-08T20:48:39Z2008-10-08T20:48:39Z<p>To test if it's the date format, write a test class to prove it out. For these types of things, I like to use bsh (beanshell). Here was my test:</p>
<pre><code>sdf = new java.text.SimpleDateFormat("EEE MM/dd hh:mma");
System.out.println(sdf.format(sdf.parse("Thu 10/9 08:15PM")));
</code></pre>
<p>Which outputted: Fri 10/09 08:15PM</p>
<p>So, at least with my jdk / jre version (1.6), the format strings seem to work just fine. i think the next step is to make sure the string you're dealing with is exactly what you think it is. Can you add logging to your code, and dump out the input string to a log file? Then you could look at it in a nice text editor, run it through your test class, or look at it in a hex editor to make sure that it's just normal text.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/121765/free-affordable-remote-web-based-administration-for-windows-iis/177003#1770030Answer by Eric Tuttleman for Free (affordable) remote web based administration for Windows/IIS?Eric Tuttleman2008-10-07T02:21:01Z2008-10-07T02:21:01Z<p>I've never come across one. Never thought to ask about one either, so I'm glad I came across your question. Hope someone knows of something.</p>
<p>A few of the companies that I've worked for / with have had the same issues: many web servers, outdated documentation (or no documentation) and little time to get anything done.</p>
<p>I've usually just created scripts that export info on them to xml files. Microsoft has a decent IIS 6 scripting repository (though, you're out of luck if you're running pre Win2003):
<a href="http://www.microsoft.com/technet/scriptcenter/scripts/iis/iis6/default.mspx?mfr=true" rel="nofollow">http://www.microsoft.com/technet/scriptcenter/scripts/iis/iis6/default.mspx?mfr=true</a></p>
http://stackoverflow.com/questions/176851/cannot-open-user-default-database-login-failed-sql-2005/176899#1768992Answer by Eric Tuttleman for Cannot open user default database. Login failed. SQL 2005Eric Tuttleman2008-10-07T01:26:22Z2008-10-07T01:31:26Z<p>This is a shot in the dark, so forgive me if it just wastes your time.</p>
<p>Another poster mentioned that a given user has an id for the system and an id for any given database. This can be proven out by comparing sid's between the master.sys.syslogins and dbname.sys.users for the same login / user name. If you restore a backup from another sql server that has it's own copy of the master databases, the sids won't match.</p>
<p>Sql Server 2005 doesn't allow direct editing of system tables with out a lot of pain. To help out with these mis matches, they added a stored procedure to help you fix them:</p>
<p>USE dbName
GO</p>
<p>sp_change_users_login @Action='Report'</p>
<p>That will show you what users have a dbName.sys.users entry, but no master.sys.syslogins one - or where the name exists in both, but differ by sids.</p>
<p>If it shows that your user is out of synch, the procedure also has a mode to change the linking:</p>
<p>USE dbName
GO
sp_change_users_login 'Update_One', 'userNameInDbUsers', 'UserNameInLogins' </p>
<p>If the sid mis-match isn't your problem, I've also seen really screwy stuff with Sql Server 2005. The gui is especially buggy. To fix a problem like this, I had to actually drop the syslogins entry (via the gui or DROP LOGIN command )</p>
<p>sp_change_users_login: <a href="http://msdn.microsoft.com/en-us/library/ms174378" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms174378</a>(SQL.90).aspx</p>
<p>Drop Login syntax: <a href="http://msdn.microsoft.com/en-us/library/ms188012" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms188012</a>(SQL.90).aspx</p>
http://stackoverflow.com/questions/970473/batch-sql-inserts-in-net/970606#970606Comment by Eric Tuttleman on Batch SQL inserts in .NETEric Tuttleman2009-06-09T15:28:18Z2009-06-09T15:28:18ZI've tried this. On MS SQL Server, SQL Profiler shows each insert statement seems to be on it's own. After reviewing your comment, I viewed a TCP Dump of the conversation and do see that it is batching multiple commands together. SQL Profiler shows each insert as a "RPC Completed" event which was confusing me. Thanks for your help.http://stackoverflow.com/questions/970473/batch-sql-inserts-in-net/970512#970512Comment by Eric Tuttleman on Batch SQL inserts in .NETEric Tuttleman2009-06-09T14:59:36Z2009-06-09T14:59:36ZI was worried that this (string concatting to make up the insert statements) would open me up to sql injection, so I was using the command object and parameters to clean input. Otherwise I could do several INSERT table VALUES() terminated by a ';' or as you had suggested.
Thank you for the suggestion!http://stackoverflow.com/questions/220742/seething-over-msys-shell-is-it-replaceableComment by Eric Tuttleman on Seething over MSYS shell - is it replaceable?Eric Tuttleman2008-10-21T04:11:15Z2008-10-21T04:11:15ZI use cygwin's copy of rxvt, and I haven't noticed these issues. At least not with the more normal shell=control keys such as <Ctrl-C> <Ctrl-X> <Ctrl-z> etc. Are you using other stuff than that? Can you try to use MinGW with cygwin?http://stackoverflow.com/questions/220718/using-set-insert-key-as-a-conditionalComment by Eric Tuttleman on Using set.insert( key ) as a conditional?Eric Tuttleman2008-10-21T04:08:11Z2008-10-21T04:08:11ZI think you're telling lies. It would be complaining about missing ')' first. ;-)http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/220681#220681Comment by Eric Tuttleman on Language-agnostic properly-tabbing code editors for Linux?Eric Tuttleman2008-10-21T04:05:38Z2008-10-21T04:05:38ZI don't use it much anymore, but before I learned gvim, I used wine / notepad++ . It does have the tabbing right. RegEx / highlighting / bookmarks and most of everything. One of the worst graphics on a web site too. :)http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/220710#220710Comment by Eric Tuttleman on Language-agnostic properly-tabbing code editors for Linux?Eric Tuttleman2008-10-21T04:03:34Z2008-10-21T04:03:34ZBy default, it doesn't show any gui for tabs. You have to turn on the option with the 'set tabline=2' command. Also, ctrl-tab / ctrl-shift-tab won't work in the MS Windows model unless you write some impressive functions. Next tab / prev tab could be mapped pretty easily though. Great editor.http://stackoverflow.com/questions/217377/how-do-you-use-left-on-a-ntext-sql-server-column/217385#217385Comment by Eric Tuttleman on How do you use LEFT on a NTEXT SQL Server Column?Eric Tuttleman2008-10-20T02:56:45Z2008-10-20T02:56:45ZI'd think that casting it as a NVARCHAR(100) would be enough, right? If the cast works, then the value should already be the left 100 chars.http://stackoverflow.com/questions/206793/why-wont-my-c-connection-string-to-a-sql-server-work-with-windows-authenticatioComment by Eric Tuttleman on Why won't my c# connection string to a SQL server work with Windows authentication?Eric Tuttleman2008-10-15T22:51:59Z2008-10-15T22:51:59ZI like this site a lot for helping out with these types of questions:
<a href="http://www.connectionstrings.com" rel="nofollow">connectionstrings.com</a>http://stackoverflow.com/questions/205198/what-do-you-think-of-programmers-who-hold-part-time-programming-jobs/205214#205214Comment by Eric Tuttleman on What do you think of programmers who hold part time programming jobs?Eric Tuttleman2008-10-15T20:17:38Z2008-10-15T20:17:38ZAnd, we may just need extra income ;)http://stackoverflow.com/questions/199731/best-practice-how-to-track-outbound-links/200167#200167Comment by Eric Tuttleman on Best practice: How to track outbound links?Eric Tuttleman2008-10-14T14:29:32Z2008-10-14T14:29:32ZThat's a good point about sites losing search engine features. I'm not sure if it's true though. If you absolutely must track all links, then doing something like the redirect that I describe will catch all situations that I can think of. Javascript can be lost in some situations.http://stackoverflow.com/questions/199723/nets-equivalent-of-javas-memoryimagesourceComment by Eric Tuttleman on .NET's equivalent of Java's MemoryImageSourceEric Tuttleman2008-10-14T01:54:59Z2008-10-14T01:54:59ZJust curious, what's the java library that impressed you so much?http://stackoverflow.com/questions/196897/locking-executing-files-windows-does-linux-doesnt-why/196908#196908Comment by Eric Tuttleman on Locking Executing Files: Windows does, Linux doesn't. Why?Eric Tuttleman2008-10-13T08:53:28Z2008-10-13T08:53:28ZWindows uses "Handles", though the semantics of what a locked file "feels" like is much different.http://stackoverflow.com/questions/184678/why-does-parsing-this-date-string-throw-an-unparseable-date-exception/184827#184827Comment by Eric Tuttleman on why does parsing this date string throw an unparseable date exception?Eric Tuttleman2008-10-09T22:22:48Z2008-10-09T22:22:48ZI believe it's in the Integer.toString methods.
But, I wouldn't convert the character to a hex string to compare it, unless that makes the code a lot clearer for you. I'd probably just find the dec. value of A0 (160) and match against that. Could also reverse logic to accept chars instead.http://stackoverflow.com/questions/185420/issues-with-client-consuming-a-net-web-service-upgraded-from-net-1-1-to-3-5/185476#185476Comment by Eric Tuttleman on Issues with client consuming a .net web service upgraded from .NET 1.1 to 3.5Eric Tuttleman2008-10-09T16:06:44Z2008-10-09T16:06:44ZThanks for the update, good luck Michael!http://stackoverflow.com/questions/185420/issues-with-client-consuming-a-net-web-service-upgraded-from-net-1-1-to-3-5Comment by Eric Tuttleman on Issues with client consuming a .net web service upgraded from .NET 1.1 to 3.5Eric Tuttleman2008-10-09T15:28:48Z2008-10-09T15:28:48Zwere you able to get your call working?