User rwmnau - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T16:39:48Zhttp://stackoverflow.com/feeds/user/8114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1828376/the-insert-statement-conflicted-with-the-foreign-key-constraint/1828394#18283941Answer by rwmnau for The INSERT statement conflicted with the FOREIGN KEY constraintrwmnau2009-12-01T19:43:47Z2009-12-01T19:43:47Z<p>It looks like you need a row in ItemUnits with that ID first - what does the SELECT statement part of your insert return? No rows?</p>
<p>Also, is there a trigger on the ItemSavedUnits table that could be causing problems?</p>
http://stackoverflow.com/questions/894570/tf10216-team-foundation-services-are-currently-unavailable-user-problem/1814804#18148041Answer by rwmnau for TF10216: Team Foundation services are currently unavailable. (user problem?)rwmnau2009-11-29T06:10:47Z2009-11-29T06:10:47Z<p>By default, only the "Team Foundation Administrators" group has access to the web services, and it only contains the local admins group and the TFS service account (unless you've modified it). You can read about the group here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms253077%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms253077(VS.80).aspx</a></p>
<p>You may need to add other users to this group, or populate some of the other permissions groups in TFS (Project Administrators for various projects, etc).</p>
<p>Also, the URL in your question looks odd - it ought to have a servername section:</p>
<p>http://<strong>SERVERNAME.DOMAIN.NET</strong>:8080/services/v1.0/serverstatus.asmx</p>
http://stackoverflow.com/questions/1794697/find-last-sunday/1794762#17947620Answer by rwmnau for Find last sundayrwmnau2009-11-25T05:04:49Z2009-11-25T05:11:27Z<p>Holy cow, this is ugly, but here goes:</p>
<pre><code>DECLARE @dtDate DATETIME
SET @dtDate = '2009-11-05'
SELECT DATEADD(dd, -1*(DATEPART(dw, DateAdd(day, -1, DateAdd(month, DateDiff(month, 0, @dtDate)+1, 0)))-1),
DateAdd(day, -1, DateAdd(month, DateDiff(month, 0, @dtDate)+1, 0)))
</code></pre>
http://stackoverflow.com/questions/1767171/see-if-any-application-has-a-dll-from-the-gac-loaded1See if any application has a DLL from the GAC loadedrwmnau2009-11-19T22:58:49Z2009-11-20T23:02:40Z
<p>I'm trying to deploy new copies of my DLL to the GAC on remote servers, but I need to identify if any processes currently running have a loaded copy of the DLL I'm replacing - I'd like to restart them, or at least tell the user.</p>
<p>For example, Biztalk seems to load the DLLs it needs the first time they're used, and then replacing them keeps the old copy in memory until the Host Instances are restarted - something I could easily do as part of my deployment.</p>
<p>Is there a way to tell using .NET which processes have loaded a particular DLL from the GAC?</p>
<p>UPDATE:</p>
<p>Some further investigation shows that both Process Explorer has this functionality, and another Sysinternals tool, <a href="http://technet.microsoft.com/en-us/sysinternals/bb896656.aspx" rel="nofollow">ListDLL</a>, does exactly what I want to be able to do. I'd like to know how they do it, since I'd love to replicate this functionality in my application without having to include and screen-scrape ListDLL (if that's even allowed inside the license).</p>
http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel1Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-20T18:13:22Z2009-11-20T18:52:31Z
<p>I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually do anything because they require a target and one isn't provided. For example:</p>
<pre><code>Dim MyString as string = "String to test"
' Neither of these lines do anything '
MyString.Replace(" ", "-")
MyString.Substring(0,5)
' This will return the original string, because neither statement did anything '
Messagebox.Show(MyString)
</code></pre>
<p>In both cases, it doesn't seem to bother .NET that the statement needs a target to assign the result to, and I don't give it one. Is there a reason that the IDE/compiler doesn't warn me of this effect, or that an exception "StatementDoesntDoAnything" isn't thrown? Since the code is formed in such a way that it will never change anything, it's clearly mis-typed.</p>
http://stackoverflow.com/questions/1411681/source-control-products-that-support-linked-shared-files/1411716#14117167Answer by rwmnau for Source control products that support linked/shared files?rwmnau2009-09-11T15:43:18Z2009-11-19T23:08:03Z<p>I've used <a href="http://www.sourcegear.com/fortress/" rel="nofollow">Sourcegear's Fortress</a> (an all-inclusive ALM - for just source control, check out their <a href="http://www.sourcegear.com/vault/" rel="nofollow">Vault</a> product) for years with no complaints, and it supports Sharing. You can essentially branch a file from one project into another, and the second copy will be kept up to date with no additional interaction required.</p>
<p>The product is designed as a replacement for Sourcesafe, and since VSS supports shares, so does Vault.
As an additional feature, they support "Pinning", which is where the recipient of the file link can set it at a particular version and not receive any additional updates, if that's what they want. If they don't pin the file, they'll continue to use the newest version, but the option to pin at any point is there if they want it.</p>
http://stackoverflow.com/questions/1750464/how-to-read-and-write-id3-tags-to-an-mp3-in-c/1750608#17506080Answer by rwmnau for How to read and write ID3 tags to an MP3 in C#?rwmnau2009-11-17T17:52:07Z2009-11-17T17:52:07Z<p>Here's a sourceforge project that's been written to do this and seems to have some good reviews:</p>
<p><a href="http://csid3lib.sourceforge.net/" rel="nofollow">http://csid3lib.sourceforge.net/</a></p>
<p>I've only ever read ID3 tags, never written them, so I can't comment specifically on that. However, I believe this project (in a much earlier stage) was what I used to do it.</p>
http://stackoverflow.com/questions/528810/visual-studio-detaches-from-application-as-soon-as-debugging-starts1Visual Studio detaches from application as soon as debugging startsrwmnau2009-02-09T16:20:18Z2009-11-13T16:56:07Z
<p>I have a web application that I've always been able to run in Visual Studio and it debugs just fine (breakpoints work, I can pause execution, etc). Recently, the behavior changed suddenly, and a few things happen:</p>
<ul>
<li>I start debugging, it lauches IE and loads the application, but after a few seconds (sometimes the page hasn't even displayed yet), Visual Studio acts as if debugging has stopped - I'm able to edit code in VS again, and the "Play" button on the toolbar is enabled. The application continues to run in the IE window just spawned, but I'm not attached to it</li>
<li>During this few seconds that VS is "debugging", because it detaches, my breakpoints show as hollow - as if I'm set to "Release" mode and they won't be hit. In fact, I have a breakpoint set in Page_Load, and it skips right by. I've checked, and I'm set to debug mode, though the compile mode dropdown is missing from my toolbar (I checked in the build properties to ensure I was in debug mode).</li>
</ul>
<p>Can anybody shed some light here?</p>
http://stackoverflow.com/questions/1701311/why-doesnt-sql-server-automatically-up-convert-date-to-datetime-for-comparison-p1Why doesn't SQL Server automatically up-convert DATE to DATETIME for comparison purposes?rwmnau2009-11-09T14:30:48Z2009-11-09T15:29:10Z
<p>I love the new DATE datatype in SQL Server 2008, but when I compare a DATE field to a DATETIME field on a linked server (SQL 2005, in this case), like this:</p>
<pre><code>DECLARE @MyDate DATE
SET @MyDate = CONVERT(DATE, GETDATE())
SELECT *
FROM MySQL2005LinkedServer.SomeDB.dbo.SomeTable
WHERE SomeDatetimeField < @MyDate
</code></pre>
<p>I get this error:</p>
<pre><code>OLE DB provider "SQLNCLI10" returned message "Unspecified error".
OLE DB provider "SQLNCLI10" returned message "The scale is invalid.".
</code></pre>
<p>"The scale is invalid" is obviously because the Native client is passing the DATE datatype back to the linked server, and since it's SQL 2005, it doesn't know what to do with it. Running this same query against a 2008 server works just fine - SQL Server is able to compare the DATE and DATETIME datatypes without a problem.</p>
<p><strong>Here's my question - is there a reason that the Native Client doesn't automatically convert the DATE value of '2009-11-09' to a DATETIME of '2009-11-09 00:00:00.000' so that the previous version of SQL Server won't choke on it?</strong></p>
http://stackoverflow.com/questions/1422697/find-most-recent-sql-server-database-activity0Find most recent SQL Server database activityrwmnau2009-09-14T16:48:22Z2009-11-09T15:21:29Z
<p>Data from another system is replicated into a SQL Server 2005 database in real-time (during the day, it's hundreds of transactions/second) using Goldengate. I'd like to be able to tell if there's been a transaction recently, which will tell me if replication is currently happening. Even in the off-hours, I can expect a transaction every few minutes, though I won't know which of the 400 tables it will go into.</p>
<p>Here's my current process:</p>
<ol>
<li>IUD trigger on most popular replicated table</li>
<li>Updates date in "Sync Notification" table every time there's any activity on that table</li>
<li>SQL Agent job runs every few minutes and compares this date with GETDATE(). If it's been too long, it emails me.</li>
</ol>
<p>This works for the most part, but I get false positives if there's activity in other tables, but not the monitored one, which can happen overnight.</p>
<p>Any other suggestions short of adding this same trigger to every table in the database? If I do add the triggers, how to I prevent deadlocks and contention on the "Sync notification" table? Since I don't care about the most recent date being exact during high-contention periods, is there a way I can have SQL try to update the date but just skip it if some other process has locked it?</p>
<p>The only "application-level" choice I have is to TELNET to the Goldengate monitor and ask for the replica lag, then screen scrape the results. I'm open to that, but I'd like to do something SQL-side if it's more feasible.</p>
http://stackoverflow.com/questions/1697738/is-there-a-special-sp-on-sql-server-2008-to-get-a-table-change-script/1698825#16988250Answer by rwmnau for Is there a special sp on SQL server 2008 to get a table change script?rwmnau2009-11-09T02:36:06Z2009-11-09T02:36:06Z<p>If what you're asking is "Given a table, is there an easy way to get the DML used to create that table?" then I don't believe you can just run a system SP and get it. You'd need write something that selected from the system tables to get columns and datatypes, indexes, and everything else.</p>
<p>I wish there was an easy way to generate the same scripts SSMS does (like right-click -> "Modify" on a stored procedure), but it doesn't seem to be that easy.</p>
http://stackoverflow.com/questions/1659320/downsides-to-with-schemabinding-in-sql-server1Downsides to "WITH SCHEMABINDING" in SQL Server?rwmnau2009-11-02T03:37:19Z2009-11-07T21:13:44Z
<p>I have a database with hundreds of awkwardly named tables in it (CG001T, GH066L, etc), and I have views on every one with its "friendly" name (the view "CUSTOMERS" is "SELECT * FROM GG120T", for example). I want to add "WITH SCHEMABINDING" to my views so that I can have some of the advantages associated with it, like being able to index the view, since a handful of views have computed columns that are expensive to compute on the fly.</p>
<p><strong>Are there downsides to SCHEMABINDING these views?</strong> I've found some articles that vaguely allude to the downsides, but never go into them in detail. I know that once a view is schemabound, you can't alter anything that would impact the view (for example, a column datatype or collation) without first dropping the view, so that's one, but aside from that? It seems that the ability to index the view itself would far outweigh the downside of planning your schema modifications more carefully.</p>
http://stackoverflow.com/questions/1509852/receive-email-from-an-exchange-server-in-biztalk-w-o-using-pop3-or-imap0Receive email from an Exchange server in Biztalk w/o using POP3 or IMAPrwmnau2009-10-02T14:26:16Z2009-11-02T03:39:43Z
<p>I know Biztalk has a POP3 adapter for receiving/processing email, but our network group has disabled both POP3 and IMAP access to our Exchange servers. Since I'm not able to connect using those protocols, I'm looking for other options.</p>
<ol>
<li>Is there some way to connect through OWA? Some kind of API access?</li>
<li>Are there any other protocols/adapters that might be useful here?</li>
<li>Do I need to petition our network group to open up POP3 access, even if it's only to certain accounts/from certain workstations?</li>
<li>(Ugly) Do I install Outlook on the server, and have an Outlook VBA macro process incoming mail and stuff it into a database table, where it can then be processed by Biztalk later?</li>
</ol>
<p>I'm open to any other ideas - thanks for your help!</p>
<p><strong>FOLLOWUP:</strong></p>
<p>We ended up talking the network group into allowing POP3 for the account in question, so we can use the standard Biztalk adapters. However, were we still restricted, the OWA web services seemed to be the only legitimate option, though I'm glad we don't have to go that route.</p>
http://stackoverflow.com/questions/1627681/disparate-database-replication-between-different-types-of-rdbms1Disparate database replication (between different types of RDBMS)rwmnau2009-10-26T22:25:18Z2009-10-26T22:25:18Z
<p>I'm looking for a recommendation for a product that enables replication between different database systems. We're just looking for standard replication (copy this table over here and apply transactions as they happen) - nothing fancy.</p>
<p>We can't use built-in database replication because our source server (Tandem/NSK) doesn't support any kind of push replication at all. We've been using GoldenGate (<a href="http://www.goldengate.com/" rel="nofollow">http://www.goldengate.com/</a>), but I'm interested in other choices out there. If it matters, out destination server is an MSSQL box.</p>
<p>I know it gets expensive, so I'm not just interested in free products, and I'd prefer something with professional support. If you have some experience with a product like GoldenGate, I'd love to hear it, as I imagine there have to be other products on the market that do what GoldenGate does.</p>
http://stackoverflow.com/questions/1625766/maximum-allowed-trigger-depth-in-sql-server0"Maximum allowed trigger depth" in SQL Server?rwmnau2009-10-26T16:27:36Z2009-10-26T16:30:19Z
<p>I know about "Allow Triggers to Fire Others" server setting that allows the action taken by a trigger to fire another trigger (or not), and as I understand it, my only options are True (allow trigger to fire other triggers, which may lead to unending recursion) or False (actions taken by triggers will not fire any other triggers, which may lead to unexpected results or inconsistent data).</p>
<p>Is there a way to enforce a "Maximum trigger depth" in SQL Server? I'm using 2008, if it matters, though I'm not aware of the feature on any version (or in any other RDBMS, for that matter, though my knowledge is admittedly limited). For example, here's what I'd like:</p>
<ol>
<li>Set the "Maximum trigger depth" to "2".</li>
<li>I insert a row into table1</li>
<li>A trigger on table1 inserts into table2</li>
<li>A trigger on table2 inserts into table3</li>
<li>There's a trigger on table3 that would insert into table4, but since the maximum depth is 2, either the trigger just doesn't get run (less ideal, but consistent with current "Recursive triggers=False" behavior on SQL Server), or the whole set of inserts is rolled back and fails with an error like "Maximum trigger depth (2) exceeded - insert failed" message (ideal)</li>
</ol>
<p>Does anybody out there know if this is possible, or if there's an outstanding feature request for this behavior? If I'm crazy and this is a terrible idea for behavior, I'm open to that, but I'd like to know why (unintentional consequences, etc).</p>
http://stackoverflow.com/questions/678202/generate-xsd-file-without-ref-elements-i-just-want-a-literal-xsd-file0Generate XSD file without REF elements - I just want a "literal" XSD filerwmnau2009-03-24T16:33:26Z2009-10-19T20:39:33Z
<p>When I use an XML example file to generate an XSD, using both Visual Studio and Oxygen, it generates a file using tons of <code><xs:element ref="ELEMENTNAME" /></code>, where elementname is an actual element name. Later in the file, it has an element <code><xs:element name="ELEMENTNAME" type="xs:string" /></code> where it defines what that element is. For example, here's an excerpt:</p>
<pre><code><xs:element name="Header">
<xs:complexType>
<xs:sequence>
<xs:element ref="VersionNumber" />
<xs:element ref="BillerGroupID" />
<xs:element ref="BillerGroupShortName" />
<xs:element ref="BillerID" />
<xs:element ref="BillerShortName" />
<xs:element ref="FileIndicator" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VersionNumber" type="xs:string" />
<xs:element name="BillerGroupID" type="xs:string" />
<xs:element name="BillerGroupShortName" type="xs:string" />
<xs:element name="BillerID" type="xs:string" />
<xs:element name="BillerShortName" type="xs:string" />
<xs:element name="FileIndicator" type="xs:string" />
</code></pre>
<p>Here's the problem - I'm using Microsoft Biztalk, and it sees every single "Element" tag as an available schema because they're all at the root level - Header, along with every single child element. I just want to make one schema available - Header, in this case - and hide the rest.</p>
<p>The obvious solution seems to be to manually edit my file to look like this, manually removing the REF statements:</p>
<pre><code><xs:element name="Header">
<xs:complexType>
<xs:sequence>
<xs:element name="VersionNumber" type="xs:string" />
<xs:element name="BillerGroupID" type="xs:string" />
<xs:element name="BillerGroupShortName" type="xs:string" />
<xs:element name="BillerID" type="xs:string" />
<xs:element name="BillerShortName" type="xs:string" />
<xs:element name="FileIndicator" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</code></pre>
<p>However, since my file is huge and contains thousands of elements, this isn't really feasable. Is there a way to tell my tool to generate the file without using REFs, but instead just placing a copy of the element where it ought to be instead of at the root level?</p>
http://stackoverflow.com/questions/568157/copy-sql-server-data-from-one-server-to-another-on-a-schedule2Copy SQL Server data from one server to another on a schedulerwmnau2009-02-20T03:20:00Z2009-10-19T14:02:14Z
<p>I have a pair of SQL Servers at different webhosts, and I'm looking for a way to periodically update the one server using the other. Here's what I'm looking for:</p>
<ol>
<li>As automated as possible - ideally, without any involvement on my part once it's set up.</li>
<li>Pushes a number of databases, in their entirely (including any schema changes) from one server to the other</li>
<li>Freely allows changes on the source server without breaking my process. For this reason, I don't want to use replication, as I'd have to break it every time there's an update on the source, and then recreate the publication and subscription</li>
<li>One database is about 4GB in size and contains binary data. I'm not sure if there's a way to export this to a script, but it would be a mammoth file if I did.</li>
</ol>
<p>Originally, I was thinking of writing something that takes a scheduled full backup of each database, FTPs the backups from one server to the other once they're done, and then the new server picks it up and restores it. The only downside I can see to this is that there's no way to know that the backups are done before starting to transfer them - can these backups be done synchronously? Also, the server being refreshes is our test server, so if there's some downtime involved in moving the data, that's fine.</p>
<p>Does anybody out there have a better idea, or is what I'm currently considering the best non-replication way to go? Thanks for your help, everybody.</p>
<p><strong>UPDATE:</strong>
I ended up designing a custom solution to get this done using BAT files, 7Zip,command line FTP, and OSQL, so it runs in a completely automatic way and aggregates the data from a dozen servers across the country. <a href="http://trycatchfinally.net/post/2009/09/28/Moving-a-SQL-Server-database-to-another-server-on-a-schedule-without-using-replication.aspx" rel="nofollow">I've detailed the steps in a blog entry</a>.</p>
<p>Thanks for all your input!</p>
http://stackoverflow.com/questions/1586049/how-to-understand-business-side-of-software/1586066#15860663Answer by rwmnau for How to understand Business side of Software ?rwmnau2009-10-18T21:22:57Z2009-10-18T22:13:07Z<p>I'm a big reader of Joel's blog, <a href="http://www.joelonsoftware.com" rel="nofollow">www.joelonsoftware.com</a>, and Eric Sink's, <a href="http://www.ericsink.com" rel="nofollow">www.ericsink.com</a> (specifically, the "Business of Software" series and "Marketing for Geeks"). Since they're both geeks that have a great understanding of the business side of things, they can put it into terms that other techies can understand.</p>
<p>I finished my MBA last year, and I found that in a number of classes (especially marketing), the material I'd picked up from these two blogs covered almost all the base curriculum in the class, so I was free to focus on deeper stuff instead of struggling to understand things like "crossing the chasm", for example.</p>
<p>A business understanding is critical for a successful development career. Anybody who says you just need to implement the spec and stop asking questions doesn't know what they're talking about - putting yourself in the customer's shoes and asking what problem you're trying to solve, not just what they asked you to solve, will put you head and shoulders above your competition.</p>
http://stackoverflow.com/questions/1575508/in-what-order-do-net-windows-forms-events-fire1In what order do .NET Windows forms events fire?rwmnau2009-10-15T22:38:46Z2009-10-15T22:54:07Z
<p>I notice that there are a number of different events I can capture when I'm working with a Windows Form in .NET (or any other control, for that matter) - on opening, there's:</p>
<ul>
<li>Load</li>
<li>Activated</li>
<li>Shown</li>
<li>VisibleChanged</li>
</ul>
<p>And when closing, there's:</p>
<ul>
<li>Leave</li>
<li>FormClosed</li>
<li>FormClosing</li>
<li>Disposed</li>
</ul>
<p>Plus any others I've missed. I know I could put a messagebox in each event, and then run my application and write down the order, but I doubt I'll remember it.</p>
<p><strong>Is there a reference online that lists the <em>-order-</em> in which these events occur</strong>, for Forms and other controls? I can't find it on MSDN, though maybe I've missed it somewhere.</p>
http://stackoverflow.com/questions/1573923/converting-sql-server-query-to-oracle-outer-join-issue/1573975#15739750Answer by rwmnau for converting sql server query to oracle outer join issuerwmnau2009-10-15T17:44:06Z2009-10-15T22:08:28Z<p>Why is table1 listed as an OUTER JOIN if you're not returning any data from it? It seems like you'd want table1 to be an inner join to table2, and then do an OUTER between 2 and 3. Like this:</p>
<pre><code>SELECT b.columnB,
b.displayed_name displayName,
c.type_cd,
c.type_desc,
b.month_desc month
FROM table1 a,
table2 b,
table3 c
WHERE b.columnB = a.columnA
AND c.type_cd = a.type_cd(+)
</code></pre>
<p>On another note, I'd recommond switching to ANSI joins (as in Eric's example) - they're much easier to read, though functionally, they're the same thing and are executed the exact same way.</p>
http://stackoverflow.com/questions/1568073/updating-a-field-based-on-values-in-two-other-fields/1568097#15680977Answer by rwmnau for Updating a Field based on Values in Two Other Fieldsrwmnau2009-10-14T18:22:00Z2009-10-14T18:22:00Z<p>I'd do a CASE statement in your update:</p>
<pre><code>UPDATE yourtable
SET Eth = CASE
WHEN Race = 'W' AND Ethnicity = 1 THEN 'Caucasian'
WHEN Race = 'B' AND Ethnicity = 2 THEN 'African-American'
WHEN Race = 'H' THEN 'Hispanic' --Ethnicity is irrelevant
...whatever other pairs of conditions you want...
END
FROM yourtable
</code></pre>
<p>In this case, you can have whatever conditions you want on each line in your case statement. In some lines, you can do two conditions (as in the first two lines), and in others you can do one (as in line three).</p>
http://stackoverflow.com/questions/1555715/duplicate-a-receive-location-in-biztalk0Duplicate a receive location in Biztalkrwmnau2009-10-12T16:55:48Z2009-10-13T13:24:04Z
<p>I have a Biztalk application the requires about a dozen receive locations that are all almost exactly the same (one property, the folder on a remote FTP site, is different between them). Ideally, I'd like to take one location I've already created, and have Biztalk copy it a bunch of times, and I'll just edit the properties for each copy so it's correct.</p>
<p>Is there an easy way to duplicate an existing receive location, or do I have to create all dozen locations by hand?</p>
http://stackoverflow.com/questions/1533139/is-it-possible-to-insert-an-entire-vb-net-datatable-into-a-sql-server-at-once1Is it possible to insert an entire VB.NET DataTable into a SQL Server at oncerwmnau2009-10-07T17:45:30Z2009-10-07T18:01:20Z
<p>I have a SQLClient.DataSet in VB.NET, and I want to insert the entire thing into a SQL Server table without having to do the following:</p>
<pre><code>For Each dr as Datarow in MyDataset
Dim sc As New SqlCommand("INSERT INTO MyNewTable " & _
"VALUES (@column1, @column2)", MyDBConnection)
sc.Parameters.AddWithValue("@column1", dr.Item(0))
sc.Parameters.AddWithValue("@column2", dr.Item(1))
sc.ExecuteNonQuery()
Next
</code></pre>
<p>Since I've got close to a million rows (all pretty skinny, so it's not much space), I obviously don't want to run this loop and generate a million INSERT statements.</p>
<p>I know that one option is to use a linked server when I initially fetch the data, since it's coming from another SQL Server, and just have it to the INSERT from there. However, if I already have the data in my application, is there a more efficient way to bulk insert it? Can I somehow pass the DataTable as a parameter to SQL Server and have it sort it out and insert the rows?</p>
http://stackoverflow.com/questions/1532046/problem-with-random-and-threads-in-net/1532152#15321521Answer by rwmnau for Problem with Random and Threads in .NET rwmnau2009-10-07T14:53:53Z2009-10-07T14:53:53Z<p>It looks as though your loop runs less than half the time it's called - is that what you're looking for (when a random number between 0 and 1 is > 0.5? This could explain why you're getting "1" more often than you'd expect - at least half the time, it's not even running the loop that increments height - it just sets the height to 1, doesn't change it, and then returns "1". I'm not familiar with skip lists, so this might be intentional, but I thought I'd ask.</p>
<p>I'm not too familiar with working with random numbers, but is it possible that you've got a seeding problem? If you're not randomizing the Random object when you instantiate it, it may return a predictable stream of numbers, instead of ones that are truly random. Perhaps not causing the behavior you're seeing here, but something to consider moving forward.</p>
http://stackoverflow.com/questions/1527938/tsql-generate-5-character-length-string-all-digits-0-9-that-doesnt-already-ex/1528083#15280830Answer by rwmnau for TSQL Generate 5 character length string, all digits [0-9] that doesn't already exist in database...rwmnau2009-10-06T21:01:47Z2009-10-06T21:01:47Z<p>Something like this?</p>
<pre><code>CREATE FUNCTION RandNumber2(@Min int, @Max int)
RETURNS float
AS
BEGIN
DECLARE @TheNumber INT
SET @TheNumber = (SELECT CONVERT(INT, Rand()*(@Max-@Min)+@Min))
WHILE (SELECT COUNT(IndexColumn) WHERE CONVERT(INT, IndexColumn) = @TheNumber) > 0
BEGIN
-- Do it again - we have a collision
SET @TheNumber = (SELECT CONVERT(INT, Rand()*(@Max-@Min)+@Min))
END
DECLARE @Result VARCHAR(5)
SET @Result = RIGHT('00000' + CONVERT(VARCHAR(5), @TheNumber), 5)
RETURN @Result
END
</code></pre>
http://stackoverflow.com/questions/1521338/biztalk-processing-a-flat-file-receives-no-subscribers-found-message0Biztalk - processing a flat file receives "no subscribers found" messagerwmnau2009-10-05T17:25:30Z2009-10-05T17:43:20Z
<p>I've created a flat file schema in Visual Studio from an instance of a CSV file I have, and it validates fine, and I've hooked up an orchestration to send and receive ports set to expect a file of that schema. When I publish the orchestration and use it to pick up a file, it's immediately suspended, with the following error:</p>
<blockquote>
<p>The published message could not be
routed because no subscribers were
found. This error occurs if the
subscribing orchestration or send port
has not been enlisted, or if some of
the message properties necessary for
subscription evaluation have not been
promoted. Please use the Biztalk
Administration console to troubleshoot
this failure.</p>
</blockquote>
<p>The send port is enlisted, and since I'm not doing any processing based on the contents, I don't think I need to promote anything. I'm currently using the PassthroughReceive pipeline - the other three pipelines I have give me errors about not being able to disassemble the file, as it seems they're expecting XML.</p>
<p>Am I missing something obvious here? Or, in other words:</p>
<blockquote>
<p>Can I pass the contents of a CSV file
to my orchestration without a custom
pipeline?</p>
</blockquote>
http://stackoverflow.com/questions/1510417/biztalk-can-i-change-the-receive-port-of-an-existing-receive-location0Biztalk - can I change the receive port of an existing receive location?rwmnau2009-10-02T15:56:00Z2009-10-03T02:44:33Z
<p>I have two different receive ports and two receive locations - one location assigned to each port. The ports are set to receive the exact same type of file - I ended up with both because I consolidated two different applications that did the same thing.</p>
<p>I want to combine both locations into a single receive port, but I don't seem to be able to change the location that either belongs to - there's no option to do this that I can find. Essentially, I just want to take one location (either - I don't care), and assign it to the other port, so that one port has two locations and the other has none.</p>
<p>Does somebody know of a way to change the receive port of an existing location?</p>
http://stackoverflow.com/questions/1510417/biztalk-can-i-change-the-receive-port-of-an-existing-receive-location/1510645#15106451Answer by rwmnau for Biztalk - can I change the receive port of an existing receive location?rwmnau2009-10-02T16:35:17Z2009-10-03T02:22:08Z<p>I resorted to the dark side, and updated the SQL table manually. I'd still welcome anybody who has a legitimate, supported way to do this, but to any others who need an answer, here's the script I wrote to fix this problem (no side-effects so far, though it's only been a day):</p>
<pre><code>DECLARE @AppName VARCHAR(255),
@ReceiveLocationName VARCHAR(255),
@NewReceivePortName VARCHAR(255)
SET @AppName = 'Your application name'
SET @ReceiveLocationName = 'Name of your existing receive location'
SET @NewReceivePortName = 'Name of receive port to move location to'
DECLARE @NewPortID INT
DECLARE @ReceiveLocationID INT
SELECT @NewPortID = rp.[nID]
FROM [BizTalkMgmtDb].[dbo].[bts_application] a
JOIN [BizTalkMgmtDb].[dbo].[bts_receiveport] rp
ON a.nID = rp.nApplicationID
WHERE a.nvcName = @AppName
AND rp.nvcName = @NewReceivePortName
SELECT @ReceiveLocationID = Id
FROM [BizTalkMgmtDb].[dbo].[adm_receivelocation]
WHERE Name = @ReceiveLocationName
UPDATE [BizTalkMgmtDb].[dbo].[adm_receivelocation]
SET ReceivePortId = @NewPortID,
IsPrimary = 0
WHERE Id = @ReceiveLocationName
</code></pre>
http://stackoverflow.com/questions/1503524/incorrect-states-on-tfs-2008-project-files/1507595#15075951Answer by rwmnau for Incorrect states on TFS 2008 Project Filesrwmnau2009-10-02T03:19:10Z2009-10-02T03:19:10Z<p>I've had these lists get out of sync before. What was required was a "Force Get Latest" to refresh the statuses. To do that, you select "Get a specific version", and then select "Latest" and "Get file even if they already exist locally" (or some option like that). This will force the files to refresh, even if they're already up to date, and should also correct their status.</p>
<p>You would think VS/TFS would be smart enough to reconcile this on their own, but sometimes they just don't, for whatever reason.</p>
http://stackoverflow.com/questions/565357/comparing-program-flow-between-same-app-in-net-1-1-and-net-2-0/1502021#15020210Answer by rwmnau for Comparing program flow between same app in .net 1.1 and .net 2.0rwmnau2009-10-01T05:19:22Z2009-10-01T05:19:22Z<p>If you know where the recursion if happening, then maybe some well-placed breakpoints, along with copious use of the "Watch" window so you can see the values that are used to decide if another recursive trip is necessary, and you should be able to find where they diverge.</p>
<p>Another option would be using a Diff tool (like <a href="http://www.sourcegear.com/diffmerge/" rel="nofollow">Sourcegear's DiffMerge</a>) to compare the changes you've made between the two versions of your code base. I don't know that the different versions of the framework would process the same code differently, so I would bet that the difference is code that you've modified as part of your upgrade to 2.0.</p>
http://stackoverflow.com/questions/1792496/what-are-the-minimal-quantity-of-testers-per-programmers/1792556#1792556Comment by rwmnau on What are the minimal quantity of testers per programmers?rwmnau2009-12-04T17:48:18Z2009-12-04T17:48:18ZI 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 incorrecthttp://stackoverflow.com/questions/1828515/sql-join-without-multiple-leftComment by rwmnau on SQL Join without multiple LEFTrwmnau2009-12-01T20:05:34Z2009-12-01T20:05:34ZWhich of the multiple records in Repair or Tow do you want to return in that case?http://stackoverflow.com/questions/1814716/going-live-with-a-project-with-no-bugs-generation/1814766#1814766Comment by rwmnau on Going live with a project with no bugs generationrwmnau2009-11-29T06:04:52Z2009-11-29T06:04:52ZI 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.http://stackoverflow.com/questions/1777699/how-to-use-contains-with-inline-queries-in-sql-server-2008/1777749#1777749Comment by rwmnau on How to use CONTAINS with inline queries in SQL Server 2008?rwmnau2009-11-22T03:53:08Z2009-11-22T03:53:08ZTo 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?http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772426#1772426Comment by rwmnau on Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-22T03:03:28Z2009-11-22T03:03:28ZThis 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.http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772382#1772382Comment by rwmnau on Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-20T22:45:43Z2009-11-20T22:45:43Z<b>Especially</b> given that strings are immutable, it's ridiculous that the compiler doesn't catch this.http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772382#1772382Comment by rwmnau on Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-20T18:30:54Z2009-11-20T18:30:54ZPerhaps 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.http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772344#1772344Comment by rwmnau on Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-20T18:29:26Z2009-11-20T18:29:26ZJuliet - 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...http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772344#1772344Comment by rwmnau on Why don't statements that don't do anything throw an exception (or warn the developer)?rwmnau2009-11-20T18:22:43Z2009-11-20T18:22:43ZI'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.http://stackoverflow.com/questions/1767171/see-if-any-application-has-a-dll-from-the-gac-loaded/1770957#1770957Comment by rwmnau on See if any application has a DLL from the GAC loadedrwmnau2009-11-20T17:41:15Z2009-11-20T17:41:15ZIt 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?http://stackoverflow.com/questions/1767171/see-if-any-application-has-a-dll-from-the-gac-loaded/1767233#1767233Comment by rwmnau on See if any application has a DLL from the GAC loadedrwmnau2009-11-20T14:47:44Z2009-11-20T14:47:44ZI'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?http://stackoverflow.com/questions/1697738/is-there-a-special-sp-on-sql-server-2008-to-get-a-table-change-scriptComment by rwmnau on Is there a special sp on SQL server 2008 to get a table change script?rwmnau2009-11-17T05:13:38Z2009-11-17T05:13:38ZAre 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.http://stackoverflow.com/questions/1681148/gac-comparison-tool-for-multiple-serversComment by rwmnau on GAC Comparison Tool for multiple servers?rwmnau2009-11-16T15:09:01Z2009-11-16T15:09:01ZThanks for this - I've been having a horrible time keeping my web servers in sync with each other, and this will help nicely!http://stackoverflow.com/questions/1717121/deleting-a-file-causes-an-untrapable-error/1719839#1719839Comment by rwmnau on Deleting a file causes an untrapable errorrwmnau2009-11-12T17:59:48Z2009-11-12T17:59:48ZThis behavior doesn't seem right - is there a connect bug filed for it?http://stackoverflow.com/questions/1717121/deleting-a-file-causes-an-untrapable-errorComment by rwmnau on Deleting a file causes an untrapable errorrwmnau2009-11-12T17:55:49Z2009-11-12T17:55:49ZWhich 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.