User Eric Ness - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:36:27Z http://stackoverflow.com/feeds/user/18891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1766532/search-if-a-string-word-exists-between-two-different-tables-in-a-comma-delimited/1766893#1766893 1 Answer by Eric Ness for Search if a string word exists between two different tables in a comma-delimited field Eric Ness 2009-11-19T22:03:55Z 2009-11-19T22:03:55Z <p>Here is a script that creates the two test tables and returns a list of the names with 'True' if the name is in both tables. It works by using a left join to find the names that are in both tables or only in table A. This result set is unioned to a right join to get the names that are only in table B.</p> <pre><code>DROP TABLE EmployeeTypeA DROP TABLE EmployeeTypeB GO CREATE TABLE EmployeeTypeA (Name VARCHAR(2000)) GO CREATE TABLE EmployeeTypeB (Name VARCHAR(2000)) GO INSERT INTO EmployeeTypeA VALUES ('john') INSERT INTO EmployeeTypeA VALUES ('sam') INSERT INTO EmployeeTypeA VALUES ('doug') INSERT INTO EmployeeTypeB VALUES ('eric') INSERT INTO EmployeeTypeB VALUES ('sam') INSERT INTO EmployeeTypeB VALUES ('allen') INSERT INTO EmployeeTypeB VALUES ('stephanie') GO SELECT eta.Name, CASE WHEN etb.Name IS NULL THEN 'False' ELSE 'True' END FROM EmployeeTypeA eta LEFT JOIN EmployeeTypeB etb ON eta.Name = etb.Name UNION SELECT etb.Name, 'False' FROM EmployeeTypeA eta RIGHT JOIN EmployeeTypeB etb ON eta.Name = etb.Name WHERE eta.Name IS NULL GO </code></pre> http://stackoverflow.com/questions/279112/retrieving-the-com-class-factory-for-component-with-clsid-xxxx-failed-due-to-th/1689591#1689591 0 Answer by Eric Ness for Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80080005 Eric Ness 2009-11-06T18:59:19Z 2009-11-06T18:59:19Z <p>One thing that you can look at is the DCOM security configuration. It is controlled by the dcomcnfg utility. There are <a href="http://www.opcactivex.com/Support/Tutorials/DCOM%5FTutorial%5F-%5FConfiguring%5Fth/DCOM%5FVideos/dcom%5Fvideos.html" rel="nofollow">helpful tutorial videos</a> on the web to explain how to use it. There is also a <a href="http://forums.asp.net/t/1093228.aspx" rel="nofollow">thread on the ASP.NET</a> forum that discusses how to use dcomcnfg.</p> http://stackoverflow.com/questions/1688853/dcom-failure-of-office-automation 0 DCOM Failure of Office Automation Eric Ness 2009-11-06T16:48:11Z 2009-11-06T16:56:56Z <p>I developed a C# program that pulls data from a SQL Server database and then generates Word documents which include the data. I've set the program up to run as part of an SSIS job on a Windows Server 2003 box. The program runs as user SQLSVC which doesn't have administrative privileges. When I log in as SQLSVC and run the program it executes correctly. However, when the program is run automatically as an SSIS job it freezes at the following line of code</p> <pre><code>Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application(); </code></pre> <p>When I kill the process forcibly, the following error message is generated.</p> <pre><code>Error Message: System.Runtime.InteropServices.COMException (0x80080005): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80080005. at IepGlance.Program.CreateNewIepFiles(Dictionary`2 iepDictionary, EasyIepDataContext dbContext) at IepGlance.Program.Main(String[] args) </code></pre> <p>As far as I can figure out the problem is with DCOM permissions. I've used dcomcnfg to add all possible DCOM permissions to user SQLSVC, but this hasn't helped. Are there any other possible solutions?</p> http://stackoverflow.com/questions/1674490/conditional-formatting-in-access-2007-report 0 Conditional Formatting in Access 2007 Report Eric Ness 2009-11-04T15:22:15Z 2009-11-04T20:11:31Z <p>I have created two reports in Access 2007 that are virtually identical except for the data source. In both of them I have set up conditional formatting on a field to make the font italic when</p> <pre><code>Expression is [Status]="Holding" </code></pre> <p>In one of the reports the conditional formatting is applied and in the other it isn't. I've even tried setting it to</p> <pre><code>Expression is [Status]=[Status] </code></pre> <p>but the conditional formatting still isn't applied. Any ideas on what is going wrong?</p> http://stackoverflow.com/questions/1674490/conditional-formatting-in-access-2007-report/1676299#1676299 0 Answer by Eric Ness for Conditional Formatting in Access 2007 Report Eric Ness 2009-11-04T20:11:31Z 2009-11-04T20:11:31Z <p>I cleared the conditional formatting from all the text boxes where it was set. I then again set the conditional formatting to </p> <pre><code>Expression is [Status]="Holding" </code></pre> <p>This time it worked! Very strange, but at least it's working now.</p> http://stackoverflow.com/questions/266476/is-there-a-public-secure-ftp-site-for-testing 2 Is there a public secure FTP site for testing? Eric Ness 2008-11-05T20:14:09Z 2009-09-29T13:06:11Z <p>I'm working on automating a process that downloads a file from a secure FTP server. I've had problems with the vendor's security certificate and I want to find a clean secure FTP server to test against. Does anyone know if there is a publicly available secure FTP site that can be used to test programs against?</p> http://stackoverflow.com/questions/1374369/ssis-xml-config-file-location 1 SSIS XML Config File Location Eric Ness 2009-09-03T16:06:25Z 2009-09-03T16:13:44Z <p>I'm planning to use XML configuration files to run SSIS jobs on both development and production servers. I'll be using the SQL Server to store the SSIS packages. I'm wondering if there's a standard place to store the XML files. There's no need to create a project folder for the packages since they'll be stored in the database. So is it better to store the XML files in a central location like C:\Program Files\Microsoft SQL Server\100\DTS ?</p> http://stackoverflow.com/questions/1306249/checking-if-database-in-restoring-state 1 Checking If Database In Restoring State Eric Ness 2009-08-20T13:36:42Z 2009-08-20T13:55:42Z <p>I'm running a T-SQL script that drops a database and then restores it. The script runs against a SQL Server 2008 database. Sometimes there is a problem with the backup file and the database gets stuck in the restoring state. </p> <pre><code>IF EXISTS (SELECT 1 FROM master.dbo.sysdatabases WHERE name = 'dbname') BEGIN ALTER DATABASE [dbname] SET SINGLE_USER WITH ROLLBACK IMMEDIATE END IF EXISTS (SELECT 1 FROM master.dbo.sysdatabases WHERE name = 'dbname') BEGIN DROP DATABASE [dbname] END RESTORE DATABASE [dbname] FROM DISK = N'C:\dbname.bak' WITH FILE = 1, NOUNLOAD, STATS = 10 </code></pre> <p>The next time the script runs the script generates the error message</p> <pre><code>ALTER DATABASE is not permitted while a database is in the Restoring state. </code></pre> <p>What is the best way to check if the database is in the restoring state before trying to run the ALTER DATABASE command?</p> <p>EDIT: The RESTORE DATABASE command that I'm running doesn't use the NO RECOVERY option.</p> http://stackoverflow.com/questions/582338/ssrs-email-subscription-configuration 0 SSRS Email Subscription Configuration Eric Ness 2009-02-24T16:01:44Z 2009-05-17T16:00:03Z <p>I was trying to configure Sql Server Reporting Services 2008 to send out email when subscriptions were created. I was running SSRS in Native Mode. Whenever I tried to create a new email subscription this error message would appear in the log files:</p> <pre><code>library!ReportServer_0-3!14e4!01/30/2009-12:58:52:: Call to GetSystemPermissionsAction(). library!ReportServer_0-3!1684!01/30/2009-12:58:52:: Call to GetPermissionsAction(/Report Folder/Report Name). library!ReportServer_0-3!14e4!01/30/2009-12:58:52:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: This operation is not supported on a report server that runs in native mode., ; Info: Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: This operation is not supported on a report server that runs in native mode. extensionfactory!ReportServer_0-3!14e4!01/30/2009-12:58:52:: e ERROR: Exception caught instantiating Report Server DocumentLibrary report server extension: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&gt; System.TypeInitializationException: The type initializer for 'Microsoft.ReportingServices.SharePoint.SharePointDeliveryExtension.DocumentLibraryProvider' threw an exception. ---&gt; Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: This operation is not supported on a report server that runs in native mode. </code></pre> <p>Most of <a href="http://www.eggheadcafe.com/software/aspnet/29844120/reporting--email-deliver.aspx" rel="nofollow">the solutions</a> on <a href="http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/ead32a3e-ebde-4e3b-8a36-d2b2e023e187/" rel="nofollow">the Internet</a> suggested that the problem was caused by</p> <ol> <li>Improper configuration of the receiving SMTP server</li> <li>Improper configuration of the Email Settings in the Reporting Services Configuration Manager</li> <li>Using a non-domain user as the Execution Account</li> </ol> <p>None of these solutions worked for me, however.</p> http://stackoverflow.com/questions/761891/powershell-get-date/761974#761974 2 Answer by Eric Ness for PowerShell Get -Date Eric Ness 2009-04-17T19:59:55Z 2009-04-17T19:59:55Z <p>There are two issues in the code. The first is that the format string should be "dd.MM.yyyy". (Note capital M's) The second is unnecessary assignment of variables. You can just use</p> <pre><code>$HD[$i].CustomProps[‘rep_date’] = Get-Date –date $HD[$i].CustomProps[‘rep_date’] -format "dd.MM.yyyy" </code></pre> http://stackoverflow.com/questions/503673/replace-multiple-strings-in-sql-query 1 Replace Multiple Strings in SQL Query Eric Ness 2009-02-02T15:50:21Z 2009-04-14T17:28:00Z <p>I'm writing a SQL query in SQL Server in which I need to replace multiple string values with a single string value. For example</p> <pre><code>Product Quantity ------- -------- Apple 2 Orange 3 Banana 1 Vegetable 7 Dairy 6 </code></pre> <p>would become</p> <pre><code>Product Quantity ------- -------- Fruit 2 Fruit 3 Fruit 1 Vegetable 7 Dairy 6 </code></pre> <p>The only way I know how to do this is to use a nested REPLACE in the SELECT clause.</p> <pre><code>SELECT REPLACE('Banana', REPLACE('Orange', REPLACE('Banana', Product, 'Fruit'), 'Fruit'), 'Fruit') AS Product FROM Table </code></pre> <p>Is there an easier way?</p> <p>EDIT: There may be other values in the Product category. See edited example above.</p> http://stackoverflow.com/questions/707058/what-is-a-good-method-for-making-a-huge-test-file/707278#707278 0 Answer by Eric Ness for What is a good method for making a huge test file? Eric Ness 2009-04-01T20:49:01Z 2009-04-01T20:49:01Z <p>Here's <a href="http://www.codekeep.net/snippets/d64e194a-f1c7-4c69-b9a7-0ae3a2152beb.aspx" rel="nofollow">a function</a> to do it in Windows PowerShell:</p> <pre><code>function Create-TestFile([string]$location, [long]$sizeInBytes, [int]$numberOfFiles = 1 ,[char]$fillerChar="X") { $fc = new-object string ($fillerChar, $sizeInBytes ) ; 1..$numberOfFiles | %{ [io.file]::WriteAllText("$location\TestFile-$_.txt", $fc) } } </code></pre> <p>And here's how you'd use it:</p> <pre><code>Create-TestFile "C:\temp" 2100 #creates a file 2100 bytes in size. </code></pre> http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/690577#690577 4 Answer by Eric Ness for What's the most painful product to develop against? Eric Ness 2009-03-27T16:56:22Z 2009-03-27T16:56:22Z <p>FileMaker Pro for a few reasons.</p> <ul> <li>The scripting system is so controlled that you do it by point and click</li> <li>No separation of data files and code files</li> <li>Poor performance</li> </ul> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query 4 Combining split date ranges in a SQL query Eric Ness 2008-09-26T15:25:46Z 2009-03-09T23:45:24Z <p>I'm working on a query that needs to have some data rows combined based on date ranges. These rows are duplicated in all the data values, except the date ranges are split. For example the table data may look like</p> <pre><code>StudentID StartDate EndDate Field1 Field2 1 9/3/2007 10/20/2007 3 True 1 10/21/2007 6/12/2008 3 True 2 10/10/2007 3/20/2008 4 False 3 9/3/2007 11/3/2007 8 True 3 12/15/2007 6/12/2008 8 True </code></pre> <p>The result of the query should have the split date ranges combined. The query should combine date ranges with a gap of only one day. If there is more than a one day gap, then the rows shouldn't be combined. The rows that don't have a split date range should come through unchanged. The result would look like</p> <pre><code>StudentID StartDate EndDate Field1 Field2 1 9/3/2007 6/12/2008 3 True 2 10/10/2007 3/20/2008 4 False 3 9/3/2007 11/3/2007 8 True 3 12/15/2007 6/12/2008 8 True </code></pre> <p>What would be the SELECT statement for this query?</p> http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically/608153#608153 5 Answer by Eric Ness for How do I convert Word files to PDF programmatically? Eric Ness 2009-03-03T20:58:44Z 2009-03-03T20:58:44Z <p>Here is a modification of a program that worked for me. It uses Word 2007 with the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&amp;displaylang=en" rel="nofollow">Save As PDF add-in</a> installed. It searches a directory for .doc files, opens them in Word and then saves them as a PDF. Note that you'll need to add a reference to Microsoft.Office.Interop.Word to the solution.</p> <pre><code>using Microsoft.Office.Interop.Word; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; ... // Create a new Microsoft Word application object Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application(); // C# doesn't have optional arguments so we'll need a dummy value object oMissing = System.Reflection.Missing.Value; // Get list of Word files in specified directory DirectoryInfo dirInfo = new DirectoryInfo(@"\\server\folder"); FileInfo[] wordFiles = dirInfo.GetFiles("*.doc"); word.Visible = false; word.ScreenUpdating = false; foreach (FileInfo wordFile in wordFiles) { // Cast as Object for word Open method Object filename = (Object)wordFile.FullName; // Use the dummy value as a placeholder for optional arguments Document doc = word.Documents.Open(ref filename, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); doc.Activate(); object outputFileName = wordFile.FullName.Replace(".doc", ".pdf"); object fileFormat = WdSaveFormat.wdFormatPDF; // Save document into PDF Format doc.SaveAs(ref outputFileName, ref fileFormat, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); // Close the Word document, but leave the Word application open. // doc has to be cast to type _Document so that it will find the // correct Close method. object saveChanges = WdSaveOptions.wdDoNotSaveChanges; ((_Document)doc).Close(ref saveChanges, ref oMissing, ref oMissing); doc = null; } // word has to be cast to type _Application so that it will find // the correct Quit method. ((_Application)word).Quit(ref oMissing, ref oMissing, ref oMissing); word = null; </code></pre> http://stackoverflow.com/questions/582338/ssrs-email-subscription-configuration/582347#582347 1 Answer by Eric Ness for SSRS Email Subscription Configuration Eric Ness 2009-02-24T16:03:32Z 2009-02-24T16:03:32Z <p>I finally got the idea from <a href="http://msdn.microsoft.com/en-us/library/ms159155.aspx" rel="nofollow">an MSDN page</a> to look at the rsreportingservice.config file. I noticed that the config file included a SharePoint Delivery Extension even though the SSRS process was running in Native Mode, not SharePoint mode.</p> <pre><code> &lt;!--&lt;Extension Name="Report Server DocumentLibrary" Type="Microsoft.ReportingServices.SharePoint.SharePointDeliveryExtension.DocumentLibraryProvider,ReportingServicesSharePointDeliveryExtension"&gt; &lt;MaxRetries&gt;3&lt;/MaxRetries&gt; &lt;SecondsBeforeRetry&gt;900&lt;/SecondsBeforeRetry&gt; &lt;Configuration&gt; &lt;DocumentLibraryConfiguration&gt; &lt;ExcludedRenderFormats&gt; &lt;RenderingExtension&gt;HTMLOWC&lt;/RenderingExtension&gt; &lt;RenderingExtension&gt;NULL&lt;/RenderingExtension&gt; &lt;RenderingExtension&gt;RGDI&lt;/RenderingExtension&gt; &lt;/ExcludedRenderFormats&gt; &lt;/DocumentLibraryConfiguration&gt; &lt;/Configuration&gt; &lt;/Extension&gt;--&gt; </code></pre> <p>Once I removed this code from the config file and restarted SSRS the email subscriptions worked.</p> http://stackoverflow.com/questions/570805/how-do-i-copy-and-overwrite-a-database-in-sql-server-2005-with-ssis/571050#571050 1 Answer by Eric Ness for How Do I Copy and Overwrite a Database in SQL Server 2005 with SSIS? Eric Ness 2009-02-20T20:09:27Z 2009-02-20T20:09:27Z <p>You can add an Execute SQL Task into the Control Flow to drop the database. Just set the SQLStatement property to </p> <pre><code>DROP DATABASE Project_UAT </code></pre> <p>After this step is executed the new copy of the Project_UAT database won't have to overwrite the old one.</p> http://stackoverflow.com/questions/541808/best-way-to-prepare-a-read-only-database 2 Best Way To Prepare A Read-Only Database Eric Ness 2009-02-12T15:29:42Z 2009-02-12T21:57:38Z <p>We're taking one of our production databases and creating a copy on another server for read-only purposes. The read-only database is on SQL Server 2008. Once the database is on the new server we'd like to optimize it for read-only use.</p> <p>One problem is that there are large amounts of allocated space for some of the tables that are unused. Another problem I would anticipate would be fragmentation of the indexes. I'm not sure if table fragmentation is an issue.</p> <p>What are the issues involved and what's the best way to go about this? Are there stored procedures included with SQL Server that will help? I've tried running DBCC SHRINKDATABASE, but that didn't deallocate the unused space.</p> <p>EDIT: The exact command I used to shrink the database was</p> <pre><code>DBCC SHRINKDATABASE (dbname, 0) GO </code></pre> <p>It ran for a couple hours. When I checked the table space using sp_spaceused, none of the unused space had been deallocated.</p> http://stackoverflow.com/questions/520905/split-data-into-named-excel-files 1 Split Data Into Named Excel Files Eric Ness 2009-02-06T16:10:22Z 2009-02-06T20:33:46Z <p>I'm working with a set of data from SQL Server that I'd like to get into a group of Excel files. This task needs to be automated to run on a monthly basis. The data looks like</p> <pre><code>Site ID FirstName LastName ------ ------- --------- --------- North 111 Jim Smith North 112 Tim Johnson North 113 Sachin Tedulkar South 201 Horatio Alger South 205 Jimi Hendrix South 215 Bugs Bunny </code></pre> <p>I'd like the results to look like</p> <pre><code>In Excel file named North.xls ID FirstName LastName 111 Jim Smith 112 Tim Johnson 113 Sachin Tedulkar In Excel file named South.xls ID FirstName LastName 201 Horatio Alger 205 Jimi Hendrix 215 Bugs Bunny </code></pre> <p>There are between 70 and 100 values in the Site column that I'd like to split upon. I'm using SSIS to perform this task, but I'm getting stuck after I've pulled the data from SQL Server with a OLE DB Source task. What should come next? If there is an easier way to do this using other tools I'm open to that too.</p> http://stackoverflow.com/questions/413985/commenting-try-catch-statements 4 Commenting try catch statements Eric Ness 2009-01-05T18:10:29Z 2009-01-19T18:36:11Z <p>What is the proper place to explain error handling in a try-catch statement? It seems like you could put explanatory comments at either the beginning of the try block or the catch block. </p> <pre><code>// Possible comment location 1 try { // real code } // Possible comment location 2 catch { // Possible comment location 3 // Error handling code } </code></pre> http://stackoverflow.com/questions/418075/how-can-i-learn-css-easily/421542#421542 0 Answer by Eric Ness for How can i learn CSS easily? Eric Ness 2009-01-07T18:50:06Z 2009-01-07T18:50:06Z <p>There are more suggestions for learning CSS in <a href="http://stackoverflow.com/questions/132587/the-best-css-tutorial-site-blog-book">this question</a>.</p> http://stackoverflow.com/questions/400941/writing-email-messages-to-flat-files-in-outlook-with-vba/400999#400999 2 Answer by Eric Ness for Writing email messages to flat files in Outlook with VBA Eric Ness 2008-12-30T18:07:20Z 2008-12-30T18:07:20Z <p>If you don't mind re-opening the output file each time you append some text, then this should work.</p> <pre><code>Private Sub ProcessMailItem(objMail As MailItem) Dim fso As New FileSystemObject Dim ts As TextStream Set ts = fso.OpenTextFile("C:\Outputfile.txt", ForAppending, True) ts.Write(objMail.Body) ts.Close() Set ts = Nothing Set fso = Nothing End Sub </code></pre> <p>You'll also need to add a reference to the Microsoft Scripting Runtime library. This has FileSystemObject in it.</p> http://stackoverflow.com/questions/398378/get-last-10-lines-of-very-large-text-file-10gb-c/398561#398561 5 Answer by Eric Ness for Get last 10 lines of very large text file > 10GB c# Eric Ness 2008-12-29T20:22:21Z 2008-12-29T20:22:21Z <p>I'm not sure how efficient it will be, but in Windows PowerShell getting the last ten lines of a file is as easy as</p> <pre><code>Get-Content file.txt | Select-Object -last 10 </code></pre> http://stackoverflow.com/questions/389803/is-there-a-setting-in-sql-server-to-have-null-null-evaluate-to-true/389991#389991 0 Answer by Eric Ness for Is there a setting in SQL Server to have null = null evaluate to true? Eric Ness 2008-12-23T20:25:16Z 2008-12-23T20:25:16Z <p>This is similar to <a href="http://stackoverflow.com/questions/191640/get-null-null-in-sql">this question</a>.</p> http://stackoverflow.com/questions/388819/is-it-possible-to-convert-vba-to-c/389147#389147 1 Answer by Eric Ness for Is it possible to convert VBA to C#? Eric Ness 2008-12-23T15:26:40Z 2008-12-23T15:26:40Z <p>One thing to be aware of is that some object name spaces and library references are included automatically when you are coding in VBA. These need to be explicitly added when working in C#. For example,</p> <pre><code>Selection.TypeText("foo") </code></pre> <p>in VBA becomes</p> <pre><code>using Microsoft.Office.Interop.Word; Application word = new Application(); word.Selection.TypeText("foo"); </code></pre> <p>in C#. Library references can be added by right-clicking the References folder in the Solution Explorer and choosing "Add Reference".</p> http://stackoverflow.com/questions/386867/regex-replace-to-assist-orderby-in-linq 2 Regex Replace to assist Orderby in LINQ Eric Ness 2008-12-22T17:47:34Z 2008-12-22T19:57:42Z <p>I'm using LINQ to SQL to pull records from a database, sort them by a string field, then perform some other work on them. Unfortunately the Name field that I'm sorting by comes out of the database like this</p> <pre><code>Name ADAPT1 ADAPT10 ADAPT11 ... ADAPT2 ADAPT3 </code></pre> <p>I'd like to sort the Name field in numerical order. Right now I'm using the Regex object to replace "ADAPT1" with "ADAPT01", etc. I then sort the records again using another LINQ query. The code I have for this looks like </p> <pre><code> var adaptationsUnsorted = from aun in dbContext.Adaptations where aun.EventID == iep.EventID select new Adaptation { StudentID = aun.StudentID, EventID = aun.EventID, Name = Regex.Replace(aun.Name, @"ADAPT([0-9])$", @"ADAPT0$1"), Value = aun.Value }; var adaptationsSorted = from ast in adaptationsUnsorted orderby ast.Name select ast; foreach(Adaptation adaptation in adaptationsSorted) { // do real work } </code></pre> <p>The problem I have is that the foreach loop throws the exception</p> <pre><code>System.NotSupportedException was unhandled Message="Method 'System.String Replace(System.String, System.String, System.String)' has no supported translation to SQL." Source="System.Data.Linq" </code></pre> <p>I'm also wondering if there's a cleaner way to do this with just one LINQ query. Any suggestions would be appreciated.</p> http://stackoverflow.com/questions/379062/best-way-to-understand-complex-sql-statements 7 Best way to understand complex SQL statements? Eric Ness 2008-12-18T20:05:31Z 2008-12-19T02:29:11Z <p>Does anyone have a method to understand complex SQL statements? When reading structural / OO code there are usually layers of abstraction that help you break it down into manageable chunks. Often in SQL, though, it seems that you have to keep track of what's going on in multiple parts of a query all at the same time.</p> <p>The impetus for this question is the SQL query discussed in <a href="http://stackoverflow.com/questions/378548/need-help-with-a-complex-join-statement-in-sql">this question about a complex join</a>. After staring at the answer queries for a number of minutes I finally decided to step through the query using particular records to see what was going on. That was the only way I could think of to understand the query piece by piece.</p> <p>Is there a better way to break a SQL query down into manageable pieces?</p> http://stackoverflow.com/questions/372126/t-sql-comparing-two-tables-records-that-dont-exist-in-second-table/372164#372164 6 Answer by Eric Ness for T-SQL: Comparing Two Tables - Records that don't exist in second table Eric Ness 2008-12-16T18:13:25Z 2008-12-16T18:13:25Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/ms188055.aspx" rel="nofollow">EXCEPT operator</a> to subtract one set from another. Here's a sample of code using EMPLOYEES and PEOPLE temporary tables. You'll need to use the field names with the EXCEPT operator as far as I know.</p> <pre><code>CREATE TABLE #PEOPLE (ID INTEGER, Name NVARCHAR(50)) CREATE TABLE #EMPLOYEE (ID INTEGER, Name NVARCHAR(50)) GO INSERT #PEOPLE VALUES (1, 'Bob') INSERT #PEOPLE VALUES (2, 'Steve') INSERT #PEOPLE VALUES (3, 'Jim') INSERT #EMPLOYEE VALUES (1, 'Bob') GO SELECT ID, Name FROM #PEOPLE EXCEPT SELECT ID, Name FROM #EMPLOYEE GO </code></pre> <p>The final query will return the two rows in the PEOPLE table which do not exist in the EMPLOYEE table.</p> http://stackoverflow.com/questions/363721/job-application-code-samples/363999#363999 1 Answer by Eric Ness for Job Application Code Samples Eric Ness 2008-12-12T20:14:26Z 2008-12-12T20:14:26Z <p>Something small, elegant and self-contained would be the way to go. The average time spent evaluating a resume is ten seconds. I don't imagine that interviewers are going to spend more that a few minutes looking through the code. Make it easy for them to see that you are a competent programmer who knows how to follow the standards of your chosen language.</p> http://stackoverflow.com/questions/352906/how-do-you-approach-intermittent-bugs/353594#353594 1 Answer by Eric Ness for How do you approach intermittent bugs? Eric Ness 2008-12-09T17:32:13Z 2008-12-09T17:32:13Z <p>I've run into bugs on systems that seem to consistently cause errors, but when stepping through the code in a debugger the problem mysteriously disappears. In all of these cases the issue was one of timing.</p> <p>When the system was running normally there was some sort of conflict for resources or taking the next step before the last one finished. When I stepped through it in the debugger, things were moving slowly enough that the problem disappeared.</p> <p>Once I figured out it was a timing issue it was easy to find a fix. I'm not sure if this is applicable in your situation, but whenever bugs disappear in the debugger timing issues are my first suspects.</p> http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically/608153#608153 Comment by Eric Ness on How do I convert Word files to PDF programmatically? Eric Ness 2009-12-22T16:19:19Z 2009-12-22T16:19:19Z I haven't tried this with a web application so I can't guarantee that it will work in that environment. http://stackoverflow.com/questions/1766532/search-if-a-string-word-exists-between-two-different-tables-in-a-comma-delimited/1767012#1767012 Comment by Eric Ness on Search if a string word exists between two different tables in a comma-delimited field Eric Ness 2009-11-20T14:13:33Z 2009-11-20T14:13:33Z Hi, Bill. Can you give some code for the full outer join? I'm not seeing how it would work. http://stackoverflow.com/questions/1688853/dcom-failure-of-office-automation/1688907#1688907 Comment by Eric Ness on DCOM Failure of Office Automation Eric Ness 2009-11-06T19:14:29Z 2009-11-06T19:14:29Z Thanks Jay. That's helpful. http://stackoverflow.com/questions/1674490/conditional-formatting-in-access-2007-report Comment by Eric Ness on Conditional Formatting in Access 2007 Report Eric Ness 2009-11-04T15:38:03Z 2009-11-04T15:38:03Z @Raj More Enclosing it in parentheses didn't help. http://stackoverflow.com/questions/1674490/conditional-formatting-in-access-2007-report Comment by Eric Ness on Conditional Formatting in Access 2007 Report Eric Ness 2009-11-04T15:34:53Z 2009-11-04T15:34:53Z @Pace Yes, both data sources have &quot;Holding&quot; in them. When I create a query that filters for rows with [Status]=&quot;Holding&quot;, multiple rows are returned. http://stackoverflow.com/questions/628928/is-there-any-way-to-enable-full-text-search-on-installed-sql2008-without-uninstal/729183#729183 Comment by Eric Ness on Is there any way to enable Full Text Search on installed sql2008,without uninstalling it again Eric Ness 2009-04-30T18:10:38Z 2009-04-30T18:10:38Z Awesome! This is exactly what I needed. Thanks! http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically/608153#608153 Comment by Eric Ness on How do I convert Word files to PDF programmatically? Eric Ness 2009-03-04T14:28:30Z 2009-03-04T14:28:30Z Yes, it's not the fastest but it's hard to beat the price. :-) Glad I could help. http://stackoverflow.com/questions/541808/best-way-to-prepare-a-read-only-database/541894#541894 Comment by Eric Ness on Best Way To Prepare A Read-Only Database Eric Ness 2009-02-12T18:05:24Z 2009-02-12T18:05:24Z The minimum size of the database is much smaller than the amount of data in it. I'll try the TRUNCATEONLY option. Thanks! http://stackoverflow.com/questions/541808/best-way-to-prepare-a-read-only-database/542233#542233 Comment by Eric Ness on Best Way To Prepare A Read-Only Database Eric Ness 2009-02-12T18:04:08Z 2009-02-12T18:04:08Z Thanks for the helpful tips. http://stackoverflow.com/questions/522112/what-is-an-easy-way-to-tell-if-a-list-of-words-are-anagrams-of-each-other/522140#522140 Comment by Eric Ness on What is an easy way to tell if a list of words are anagrams of each other? Eric Ness 2009-02-06T22:03:30Z 2009-02-06T22:03:30Z Once the lists of letters are sorted you could compare the first to the last instead of comparing each one. If the first is the same as the last, then they are all equal. http://stackoverflow.com/questions/520905/split-data-into-named-excel-files/522052#522052 Comment by Eric Ness on Split Data Into Named Excel Files Eric Ness 2009-02-06T20:38:18Z 2009-02-06T20:38:18Z Thanks. I'll take a look. http://stackoverflow.com/questions/520905/split-data-into-named-excel-files/520983#520983 Comment by Eric Ness on Split Data Into Named Excel Files Eric Ness 2009-02-06T16:29:42Z 2009-02-06T16:29:42Z Although I only included 2 values in the example, there are about 70 to 100 values that have to be split into Excel files. Would I have to manually create a file for each one? Thanks. http://stackoverflow.com/questions/87735/how-do-you-transfer-or-export-sql-server-2005-data-to-excel/87772#87772 Comment by Eric Ness on How do you transfer or export SQL Server 2005 data to Excel. Eric Ness 2009-02-04T19:54:14Z 2009-02-04T19:54:14Z Perfect! This helped me a lot. http://stackoverflow.com/questions/24470/sql-server-pivot-examples/40434#40434 Comment by Eric Ness on SQL Server PIVOT examples? Eric Ness 2009-02-04T16:11:24Z 2009-02-04T16:11:24Z Awesome answer. Saved me a ton of time and frustration. Wish I could give you more than just one up vote! http://stackoverflow.com/questions/503673/replace-multiple-strings-in-sql-query/503687#503687 Comment by Eric Ness on Replace Multiple Strings in SQL Query Eric Ness 2009-02-02T18:10:30Z 2009-02-02T18:10:30Z This is helpful. Thanks.