User Nathan Koop - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T04:19:59Zhttp://stackoverflow.com/feeds/user/18821http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805299/update-datacolumns-with-latest-column-information0Update DataColumn's with latest column informationNathan Koop2009-11-26T19:23:44Z2009-11-26T19:59:53Z
<p>I have a dataset with a number of data columns, due to sizing issues I've updated a number of the varchar columns from say VARCHAR(20) to VARCHAR(50).</p>
<p>I'd like the DataTable to automatically grab the new column information, is this possible? I'd rather not go through each column in the table and update the length.</p>
http://stackoverflow.com/questions/1710124/performance-issue-when-setting-connection-information-crystal-reports0Performance Issue when setting connection information Crystal Reports Nathan Koop2009-11-10T18:25:23Z2009-11-25T03:21:10Z
<p>I have developed a method that sets the Crystal Reports Connection.</p>
<p>This method first grabs the connection string from the config file creates a Crystal Reports ConnectionInfo object.</p>
<p>The following code then takes over 5 seconds to run:</p>
<pre><code>Dim myTables As Tables = report.Database.Tables
Dim myTableLogonInfo As TableLogOnInfo = New TableLogOnInfo()
myTableLogonInfo.ConnectionInfo = myConnectionInfo
</code></pre>
<p>Then this code takes over 6 seconds to run:</p>
<pre><code>For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
myTable.ApplyLogOnInfo(myTableLogonInfo)
myTable.LogOnInfo.ConnectionInfo.DatabaseName = myTableLogonInfo.ConnectionInfo.DatabaseName
myTable.LogOnInfo.ConnectionInfo.ServerName = myTableLogonInfo.ConnectionInfo.ServerName
myTable.LogOnInfo.ConnectionInfo.UserID = myTableLogonInfo.ConnectionInfo.UserID
myTable.LogOnInfo.ConnectionInfo.Password = myTableLogonInfo.ConnectionInfo.Password
Next
</code></pre>
<p>This only occurs the first time that the form is loaded, the subsequent times it is</p>
<p>335ms (as compared to 5349ms)
and
52ms (as compared to 6228ms)</p>
<p>However, when the application is reloaded the same slow times re-occur.</p>
<p>There are not many different tables in my report generally 3 or less. Only 1 table in this case.</p>
<p>This is currently in test and VS2008 and SQLServer2005 are both running locally. The same issue does occur in the QA environment as well, where the application is run on the client and the database is on a server on the same LAN.</p>
<p>So my question is, can I improve the speed of this portion of code? Why does it take so long to set the report connection information? Am I doing connections to the report incorrectly?</p>
<p>Any ideas?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1680785/sql-deleting-data-where-parent-doesnt-exist/1680797#16807970Answer by Nathan Koop for SQL: deleting data where parent doesn't existNathan Koop2009-11-05T14:06:38Z2009-11-05T14:06:38Z<pre><code>SELECT id
--DELETE
FROM myTable
WHERE id_parent IS NULL
</code></pre>
<p>or</p>
<pre><code>SELECT id
--DELETE
FROM myTable
WHERE id_parent IS NOT IN (SELECT id FROM myTable)
</code></pre>
http://stackoverflow.com/questions/1651660/t-sql-concept-similar-to-c-params/1651738#16517380Answer by Nathan Koop for T-SQL: Concept similar to C# paramsNathan Koop2009-10-30T19:06:47Z2009-10-30T19:06:47Z<p>I've used a little function to separate a CSV string into a table</p>
<p>That way I could go</p>
<pre><code>SELECT col1, col2
FROM myTable
WHERE myTable.ID IN (SELECT ID FROM dbo.SplitIDs('1,2,3,4,5...'))
</code></pre>
<p>My function is below:</p>
<pre><code>CREATE FUNCTION [dbo].[SplitIDs]
(
@IDList varchar(500)
)
RETURNS
@ParsedList table
(
ID int
)
AS
BEGIN
DECLARE @ID varchar(10), @Pos int
SET @IDList = LTRIM(RTRIM(@IDList))+ ','
SET @Pos = CHARINDEX(',', @IDList, 1)
IF REPLACE(@IDList, ',', '') <> ''
BEGIN
WHILE @Pos > 0
BEGIN
SET @ID = LTRIM(RTRIM(LEFT(@IDList, @Pos - 1)))
IF @ID <> ''
BEGIN
INSERT INTO @ParsedList (ID)
VALUES (CAST(@ID AS int)) --Use Appropriate conversion
END
SET @IDList = RIGHT(@IDList, LEN(@IDList) - @Pos)
SET @Pos = CHARINDEX(',', @IDList, 1)
END
END
RETURN
END
</code></pre>
<p>I'm sure there are better ways to implement this, this is one way I found online and it works well for what I'm doing. If there are some improvement that can be made please comment.</p>
http://stackoverflow.com/questions/1609115/pass-table-as-parameter-into-sql-server-udf0Pass table as parameter into sql server UDFNathan Koop2009-10-22T18:28:49Z2009-10-22T19:13:27Z
<p>I'd like to pass a table as a parameter into a scaler UDF. </p>
<p>I'd also prefer to restrict the parameter to tables with only one column. (optional)</p>
<p>Is this possible?</p>
<p><strong>EDIT</strong></p>
<p>I don't want to pass a table name, I'd like to pass the table of data (as a reference I presume)</p>
<p><strong>EDIT</strong></p>
<p>I would want my Scaler UDF to basically take a table of values and return a CSV list of the rows.</p>
<p>IE</p>
<pre><code>col1
"My First Value"
"My Second Value"
...
"My nth Value"
</code></pre>
<p>would return</p>
<pre><code>"My First Value, My Second Value,... My nth Value"
</code></pre>
<p>I'd like to do some filtering on the table though, IE ensuring that there are no nulls and to ensure there are no duplicates. I was expecting something along the lines of:</p>
<pre><code>SELECT dbo.MyFunction(SELECT DISTINCT myDate FROM myTable WHERE myDate IS NOT NULL)
</code></pre>
http://stackoverflow.com/questions/869984/remove-dbo-schema-prefix-from-sqlserver-2005-management-studios-object-explor1Remove dbo. schema prefix from SQLServer (2005) Management Studio's Object ExplorerNathan Koop2009-05-15T17:40:33Z2009-10-20T02:45:13Z
<p>I'd like to remove the dbo prefix from the Object Explorer so I can press the 'S' key and go to the tables that begin with 'S', having dbo there is irritating (to me).</p>
<p>I have searched on the net and there was an answer at <em>that other site</em> that said I should use F7 in the summary tab, but I couldn't find a summary tab, and pressing F7 in the Object Explorer didn't work for me.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1473262/crystal-reports-class-conflict-in-namespace0Crystal Reports class conflict in namespaceNathan Koop2009-09-24T18:05:21Z2009-10-15T14:13:49Z
<p>I have recently created a new crystal report. Things were fine, report looked good, I was previewing it fine, I could run my project and things looked great. I then made a minor formatting change (made the details section slightly larger and added a line across the top)</p>
<p>I then previewed the report and noticed that it created a second copy of the associated .vb file. So I had</p>
<ul>
<li>MyReport.rpt </li>
<li>MyReport.vb </li>
<li>MyReport1.vb</li>
</ul>
<p>I then ran a rebuild and got this error:</p>
<pre><code>class 'MyReport' and class 'MyReport',
declared in 'c:\...\reports\ MyReport.vb',
conflict in namespace 'MyNamespace'. c:\...\reports\MyReport1.vb
</code></pre>
<p><strike>These .vb files MyReport.vb and MyReport1.vb are exactly the same (check with winmerge).</strike> <strong>EDIT</strong> Sometimes of the files have differences.</p>
<p>I have deleted the file MyReport1.vb and rebuilt, it then built fine. But I then made another change to the report (enlarged details section again) the second file appeared again.</p>
http://stackoverflow.com/questions/1561859/replace-view-with-stored-procedure0Replace View with Stored ProcedureNathan Koop2009-10-13T17:50:46Z2009-10-13T18:17:11Z
<p>I currently need to replace an existing crystal report datasource from a View to a Stored Procedure.</p>
<p>I tried doing "Set Datasource Location", but it wouldn't allow it.</p>
<p>I then thought to add the proc to the datasources and just modify all the fields to point to the proc, but wasn't sure how to do this.</p>
<p>Any ideas?</p>
<p><strong>EDIT</strong></p>
<p>I should clarify, I have used procs in Crystal Reports before, my current issue is replacing the existing View with a Proc.</p>
http://stackoverflow.com/questions/1545883/conditional-group-sum-in-crystal-reports0Conditional group SUM in Crystal ReportsNathan Koop2009-10-09T20:26:19Z2009-10-09T21:01:04Z
<p>I've been doing some accounting reports and have been summing up my different currencies using a formula</p>
<p>IE</p>
<p><strong>CanadianCommissionFormula</strong></p>
<pre><code>if {myData;1.CurrencyType} = "CDN" then
{myData;1.Commission}
else
0
</code></pre>
<p><br />
<strong>CanadianCommissionSum</strong></p>
<pre><code>SUM({@CanadianCommissionFormula})
</code></pre>
<p>Then I'd just display the CanadianCommissionSum at the bottom of the report and things were great.</p>
<p>I've just come across the requirement to do this, but grouped by Sales Rep. I tried using my previous formula, but this sums for the whole report. Is there an easy way to sum like this, based on which group it's in?</p>
http://stackoverflow.com/questions/114807/should-i-learn-become-proficient-in-javascript4Should I learn/become proficient in Javascript?Nathan Koop2008-09-22T13:18:52Z2009-10-09T13:28:45Z
<p>I am a .NET webdev using ASP.NET, C# etc... I "learned" javascript in college 5+ years ago and can do basic jobs with it. But I wonder if it is useful to become proficient in it.</p>
<p>Why should I learn Javascript?
Is it more advantageous then learning JQuery or a different <a href="http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why">library</a>?</p>
http://stackoverflow.com/questions/1536267/export-crystal-report-to-csv-format/1538993#15389930Answer by Nathan Koop for Export Crystal Report to CSV FormatNathan Koop2009-10-08T16:35:29Z2009-10-08T16:35:29Z<p>Are you using the free version of Crystal reports that comes with .NET?</p>
<p>If so, apparently you can't. There is a post <a href="http://www.crystalreportsbook.com/Forum/forum%5Fposts.asp?TID=1216" rel="nofollow">here</a> that states</p>
<blockquote>
<p>The free version of VS.NET doesn't have the CSV export options. You have to upgrade to get that capability.</p>
</blockquote>
http://stackoverflow.com/questions/1537923/prioritize-section-of-if-statement0Prioritize section of IF statementNathan Koop2009-10-08T13:50:18Z2009-10-08T14:03:35Z
<p>I've got an IF statement that validates data.</p>
<p>Basically looks like this:</p>
<pre><code>Dim s As String = Nothing
If s Is Nothing Or s.Length = 0 Then
Console.WriteLine("Please enter a value")
End If
Console.Read()
</code></pre>
<p>I'd like to check to see if it's nothing first because if I write it this way, it throws a NullReferenceException.</p>
<p>I've thought of re-writing it like this:</p>
<pre><code>If s Is Nothing Then
Console.WriteLine("Please enter a value")
ElseIf s.Length = 0 Then
Console.WriteLine("Please enter a value")
End If
</code></pre>
<p>But if I do this I've got the same error message twice and I believe it's less clear what my intent is.</p>
<p>I've also tried throwing parenthesis around the s Is Nothing clause, but it doesn't work.</p>
<p>Is there an elegant what to test if the object is nothing and then test a property of it?</p>
http://stackoverflow.com/questions/1531365/free-alternative-of-toad-for-db2/1532008#15320081Answer by Nathan Koop for Free alternative of TOAD for DB2Nathan Koop2009-10-07T14:33:54Z2009-10-07T14:33:54Z<p>I've used Embarcadero's <a href="http://www.embarcadero.com/products/dbartisan" rel="nofollow">DBArtisan</a> in the past. It worked great on our DB2 environment, but was able to work against our SQLServer as well.</p>
http://stackoverflow.com/questions/1522090/sql-profiler-not-connecting-to-my-server0SQL Profiler not connecting to my serverNathan Koop2009-10-05T20:03:47Z2009-10-05T20:04:11Z
<p>My SQL Profiler was working previously against my Server. I have not (AFAIK) made any modifications to the configuration of my server.</p>
<p>When I go into SQL Profiler I attempt to "Connect to SQL Server", I enter my SQL Server (which is on my local dev machine), I get the error</p>
<blockquote>
<p>To connect to this server you must use SQL Server Management Studio or Sql Server Management Objects</p>
</blockquote>
<p>How do I resolve this?</p>
<p>I'm using SQL Profiler 8.00.2039
SQL Server 2005</p>
http://stackoverflow.com/questions/1522090/sql-profiler-not-connecting-to-my-server/1522095#15220950Answer by Nathan Koop for SQL Profiler not connecting to my serverNathan Koop2009-10-05T20:04:11Z2009-10-05T20:04:11Z<p>I wrote up the whole question and got to the end and realized the answer:</p>
<p>Problem was I was using SQL Profiler 8, I should have been using SQL Profiler 9</p>
http://stackoverflow.com/questions/1520345/when-i-clicked-on-a-subreport-recieved-exception-the-communication-channel-has0When I clicked on a subreport recieved exception: "The communication channel has not been created"Nathan Koop2009-10-05T14:12:50Z2009-10-05T14:12:50Z
<p>I have a report, this report with several subreports, sometimes throws an error when loading "Could not load report", but however still loads the report. (not my current issue, just as some additional information)</p>
<p>I clicked on a subreport, and an exception was thrown "The communication channel has not been created."</p>
<p>Stacktrace is:</p>
<blockquote>
<p>CrystalDecisions.ReportAppServer.Controllers.DatabaseControllerClass.ReplaceConnection(Object
oldConnection, Object newConnection,
Object parameterFields, Object
crDBOptionUseDefault) at
CrystalDecisions.CrystalReports.Engine.Table.ApplyLogOnInfo(TableLogOnInfo
logonInfo)</p>
</blockquote>
<p>This is on my dev machine with local SQL Server running, everything is working fine otherwise.</p>
http://stackoverflow.com/questions/1478853/summary-report-grouped-on-multiple-date-ranges0Summary report grouped on multiple date rangesNathan Koop2009-09-25T18:24:29Z2009-09-25T18:42:16Z
<p>I need to create a sales & commission report</p>
<p>Basically it goes (please forgive the blatent craziness of the SaleDate table, but I'm simplifying the business logic, and in reality it actually makes sense to have it this way)</p>
<pre><code>SELECT agentName,
SUM(sales.Amount) AS Gross,
SUM(sales.Amount * sales.Commission) AS Commission
FROM agent
INNER JOIN sales ON agent.agentId = sales.agentId
WHERE sales.saleId IN (SELECT saleId FROM saleDate WHERE saleDate.myDate BETWEEN @minDate AND @maxDate)
GROUP BY agentName
</code></pre>
<p>So this query works absolutely fine. The problem occurs when I need to add a second date range.</p>
<p>IE, where they want to compare 2007 sales & 2008 sales side by side.</p>
<p>I currently have basically the same query, but I've added aliases to the sales table and added another one</p>
<pre><code>SELECT agentName,
SUM(sales1.Amount) AS Gross1,
SUM(sales1.Amount * sales1.Commission) AS Commission1,
SUM(sales2.Amount) AS Gross2,
SUM(sales2.Amount * sales2.Commission) AS Commission2,
SUM(sales3.Amount) AS Gross3,
SUM(sales3.Amount * sales3.Commission) AS Commission3
FROM agent
INNER JOIN sales1 ON agent.agentId = sales1.agentId
INNER JOIN sales2 ON agent.agentId = sales2.agentId
INNER JOIN sales3 ON agent.agentId = sales3.agentId
WHERE sales1.saleId IN (SELECT saleId FROM saleDate WHERE saleDate.myDate BETWEEN @minDate1 AND @maxDate1) OR
sales2.saleId IN (SELECT saleId FROM saleDate WHERE saleDate.myDate BETWEEN @minDate2 AND @maxDate2) OR
sales3.saleId IN (SELECT saleId FROM saleDate WHERE saleDate.myDate BETWEEN @minDate3 AND @maxDate3)
GROUP BY agentName
</code></pre>
<p>This query however is taking forever (over 20 minutes before I cancelled it), the original took less than a second and if I only use two groups it takes 9 seconds.</p>
<p>Any ideas on how to improve this performance?</p>
<p>I'm willing to change the design of this query.</p>
http://stackoverflow.com/questions/1461289/determine-if-crystal-report-has-no-data-before-showing0Determine if Crystal Report has no data before showingNathan Koop2009-09-22T17:00:18Z2009-09-22T17:20:21Z
<p>I have a winforms application, when a user runs a report there may be no data to display.</p>
<p>I'd like to intercept the fact that there is no data an instead of showing the blank report, display an error message using .NET.</p>
<p>Is there a property I can check before the report displays?</p>
http://stackoverflow.com/questions/1456288/where-can-i-get-regex-for-us-canadian-western-europe-postal-code-address-ph/1456312#14563120Answer by Nathan Koop for where can i get regex for US / Canadian / Western Europe Postal Code, address, phone, fax etc ?Nathan Koop2009-09-21T19:18:53Z2009-09-21T19:46:26Z<p>Using information I got from <a href="http://stackoverflow.com/questions/331426/common-regular-expressions">this question</a> I searched <a href="http://regexlib.com/" rel="nofollow">http://regexlib.com/</a> and found what you are looking for</p>
<p>This matches either postal code or zip</p>
<pre><code>^\d{5}-\d{4}|\d{5}|[A-Z]\d[A-Z] \d[A-Z]\d$
</code></pre>
<p>Phone or fax:</p>
<pre><code>^\+[0-9]{1,3}\([0-9]{3}\)[0-9]{7}$
</code></pre>
<p>Like Ben has mentioned, you won't be able to verify whether or not the address is valid or not, but you can verify that the format is correct.</p>
http://stackoverflow.com/questions/1446054/set-model-property-to-boolean-in-entity-framework0Set model property to boolean in Entity FrameworkNathan Koop2009-09-18T18:05:30Z2009-09-18T18:10:18Z
<p>I am just starting to learn a bit about the entity framework and don't have much experience with ORM's.</p>
<p>In my little app I have one table, this sql server table has several columns including a PrimaryKey (int) a Name (string) and a Flag (tinyint).</p>
<p>When I imported this table into it automatically assigned the Flags' datatype as a byte. This is fine, but the Flag should really be a boolean, so I</p>
<ol>
<li>Clicked on the Mapping Details</li>
<li>Selected my Flag property</li>
<li>Changed the Type from Byte to Boolean</li>
<li>Rebuilt the application</li>
</ol>
<p>I then got this error:</p>
<blockquote>
<p>Error 2019: Member Mapping specified
is not valid. The type
'Edm.Boolean[Nullable=True,DefaultValue=]'
of member 'MyFlag' in type
'MyModel.MyItem' is not compatible
with
'SqlServer.tinyint[Nullable=True,DefaultValue=]'
of member 'MyFlag' in type
'MyModel.Store.MyItem'.</p>
</blockquote>
<p>Is there a way to have</p>
<pre><code>MyItem item = new MyItem();
item.Flag = true;
</code></pre>
<p>and have Flag save to 1 in the database?</p>
http://stackoverflow.com/questions/1440276/why-can-i-pass-a-nullable-valuetype-into-a-non-nullable-valuetype1Why can I pass a Nullable valuetype into a non nullable valuetype?Nathan Koop2009-09-17T17:40:40Z2009-09-17T17:55:10Z
<p>I accidently wrote some code today that was like this:</p>
<pre><code>Private Sub Foo()
Dim i as Nullable(Of Integer)
Bar(i)
End Sub
Private Sub Bar(myInt as Integer)
''//Do Stuff
End Sub
</code></pre>
<p>I immediately noticed the issue, but I had already hit the run button. It compiled successfully, I ran it through to the section and it threw an exception.</p>
<p>You can't do this in C#, it gives a compile error "cannot convert from 'int?' to 'int'".</p>
<p>Is there an 'Option Explicit' type switch that I can turn on to ensure that this sort of error does not occur again?</p>
http://stackoverflow.com/questions/1434717/cross-tab-storing-different-dates-meeting1-meeting2-meeting-3-etc-in-the-sa/1434776#14347760Answer by Nathan Koop for Cross Tab - Storing different dates (Meeting1, Meeting2, Meeting 3 etc) in the same columnNathan Koop2009-09-16T18:44:27Z2009-09-16T19:38:05Z<p>I don't have personal experience with the pivot operator, it may provide a better solution.</p>
<p>But I've used a case statement in the past</p>
<pre><code>SELECT
TaskDescription,
CASE(DateTypeID = 1, Tasks_DateType.Date) AS DDr1,
CASE(DateTypeID = 2, Tasks_DateType.Date) AS DDr2,
...
FROM Tasks
INNER JOIN Tasks_DateType ON Tasks.ID = Tasks_DateType.TasksID
INNER JOIN DateType ON Tasks_DateType.DateTypeID = DateType.DateTypeID
GROUP BY TaskDescription
</code></pre>
<p>This will work, but will require you to change the SQL whenever there are more Task descriptions added, so it's not ideal.</p>
<p><strong>EDIT:</strong></p>
<p>It appears as though the PIVOT keyword was added in SqlServer 2005, <a href="http://jdixon.dotnetdevelopersjournal.com/pivot%5Ftable%5Fdata%5Fin%5Fsql%5Fserver%5F2000%5Fand%5F2005.htm" rel="nofollow">this example</a> shows how to do a pivot query in both 2000 & 2005, but it is similar to my answer.</p>
http://stackoverflow.com/questions/1429111/how-do-i-reboot-a-computer-in-net/1429127#142912713Answer by Nathan Koop for How do I reboot a computer in .NET?Nathan Koop2009-09-15T19:18:32Z2009-09-15T19:18:32Z<p>You can use the Diagnosics, Process, Start and pass it ShutDown</p>
<pre><code>System.Diagnostics.Process.Start("ShutDown", "/r")
</code></pre>
<p>Other options include</p>
<ul>
<li><p>/s = shutdown</p></li>
<li><p>/r = restart</p></li>
<li><p>/t = timed shutdown</p></li>
</ul>
<p>Code snippet from <a href="http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/b9948921-cfdc-4fe3-b04e-c5f718646de4" rel="nofollow">social.msdn</a></p>
http://stackoverflow.com/questions/1278261/when-should-i-start-to-use-a-third-party-batch-email-system3When should I start to use a third party batch email systemNathan Koop2009-08-14T14:41:31Z2009-09-13T06:30:04Z
<p>Inspired by this <a href="http://stackoverflow.com/questions/1272109/sending-email-broadcasts">question</a> regarding email broadcasts</p>
<p>I was wondering at what point I should begin to use a third party to handle batch emails (opt-in).</p>
<p>I'm currently expecting several emails a week ranging between 10-500 email addresses.</p>
<p>Is it worth-while to use a third party for this scale?</p>
<p>I don't expect these emails to contain any significant amount of images (company logo is all)</p>
http://stackoverflow.com/questions/1405632/override-the-refresh-crystal-report-that-brings-up-their-criteria-page0Override the Refresh Crystal Report that brings up their criteria pageNathan Koop2009-09-10T14:31:55Z2009-09-10T16:24:40Z
<p>I have a vb.net winforms application.</p>
<p>I have created a criteria form that populates parameters in a Crystal Report. These parameters are pretty simple, IE customerId, StartDate, EndDate, etc...</p>
<p>This works fine, but if the user presses the crystal reports "Refresh" button on the CrystalReportViewer control then the CrystalReports criteria page displays. Obviously my user doesn't know the CustomerId so I'd rather not display this screen.</p>
<p>Is there a way to override the CR criteria page with my own? Failing that, can I disable that option on the CrystalReportViewer?</p>
http://stackoverflow.com/questions/1403295/crystal-reports-xi-convert-csv-input-string-parameter-to-number-array-for-use-i/1406238#14062382Answer by Nathan Koop for Crystal Reports XI - convert csv input string parameter to number array for use in record selection formulaNathan Koop2009-09-10T16:12:02Z2009-09-10T16:12:02Z<p>I've got code similar to the:</p>
<pre><code>{Schools.schoolId} in schoolIdsArray
</code></pre>
<p>and it works properly.</p>
<p>Are you sure your array is getting populated properly? </p>
<p>You can test this quickly by adding a new unbound string field and placing this in the formula</p>
<pre><code>ToText(schoolIdsArray[1]) + ", " + ToText(schoolIdsArray[2])
</code></pre>
http://stackoverflow.com/questions/1395367/return-temp-table-of-continuous-dates1Return temp table of continuous datesNathan Koop2009-09-08T17:54:39Z2009-09-08T18:51:59Z
<p>I need to create a function that returns a table of continuous dates. I would pass in a min & max date.</p>
<p>I expect it to be able to be called like this:</p>
<pre><code>SELECT * FROM GetDates('01/01/2009', '12/31/2009')
</code></pre>
<p>I currently have a stored proc that does this, but requirements changed and now I need to do include the returned data from within a union:</p>
<pre><code> with mycte as
(
select cast(@minDate as datetime) DateValue
union all
select DateValue + 1
from mycte
where DateValue + 1 <= @maxDate
)
select DateValue
from mycte
option (maxrecursion 1000)
</code></pre>
<p>The problem, however, is that I need to set the recursion to be greater than 100. According to a post by Gail Erickson [MS] on <a href="http://www.eggheadcafe.com/conversation.aspx?messageid=30160250&threadid=30160167" rel="nofollow">eggheadcafe</a>, this is not currently supported.</p>
<p>Without creating a real <em>(not temporary)</em> table with just date in it, is there a way to do this?</p>
<p>I am using SqlServer2005.</p>
http://stackoverflow.com/questions/1381811/add-item-to-right-click-menu1Add item to right click menuNathan Koop2009-09-04T22:35:16Z2009-09-04T23:22:06Z
<p>I'd like to add an item into the right click menu (like TortoiseSVN does, or 7zip etc...)</p>
<p>I'm not sure how to do this or what it is specifically called.</p>
<p>It would be preferable if this option was only available while my program was running.</p>
<p><strong>Use case:</strong></p>
<p>User would select some text on a webpage (or word document or anything on their computer) and right click, select my item from menu and my sub DoSomething(string myString) would run.</p>
<p>EDIT:</p>
<p>I'm currently developing on XP, but I'd like this program to work on Vista/Win7</p>
http://stackoverflow.com/questions/1380477/whats-the-best-way-to-manage-sql-change-scripts-for-two-developers/1380524#13805241Answer by Nathan Koop for What's the best way to manage sql change scripts for two developers?Nathan Koop2009-09-04T17:19:40Z2009-09-04T17:19:40Z<p>I currently store my sql change scripts in a folder and name them, script order number, tablename, description of change</p>
<blockquote>
<p>1-User-create-table.sql</p>
<p>2-User-added-columns.sql </p>
<p>...</p>
<p>n</p>
</blockquote>
<p>When I've executed these scripts I move them into a new folder, named "release 2009-09-01" and and then continue with the next number</p>
http://stackoverflow.com/questions/1373510/use-naming-convention-to-apply-class-if-label-contains-text/1373532#13735320Answer by Nathan Koop for Use naming convention to apply class if label contains text Nathan Koop2009-09-03T13:53:49Z2009-09-03T13:53:49Z<p>If the idea is to provide say, have different font and/or background if there is an error and display nothing if there is no text in the error label then you could make the control a literal instead of a label. The literal control does not create a control with no text (<a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.literal.aspx" rel="nofollow">MSDN doc</a>)</p>
http://stackoverflow.com/questions/1810465/left-join-faster-or-inner-join-fasterComment by Nathan Koop on Left JOIN faster or Inner Join faster?Nathan Koop2009-11-27T20:38:11Z2009-11-27T20:38:11Z@OMG Ponies, wouldn't you then have the same amount of columns, but with null values in those columns?http://stackoverflow.com/questions/1810465/left-join-faster-or-inner-join-fasterComment by Nathan Koop on Left JOIN faster or Inner Join faster?Nathan Koop2009-11-27T20:17:42Z2009-11-27T20:17:42Z@JMD I don't see why they would return different columns. Contrarily, there is a strong possibility that they will return different rows.http://stackoverflow.com/questions/1810465/left-join-faster-or-inner-join-fasterComment by Nathan Koop on Left JOIN faster or Inner Join faster?Nathan Koop2009-11-27T20:11:04Z2009-11-27T20:11:04ZThis question should be rephrased, "How can I figure out which query runs faster?"http://stackoverflow.com/questions/1809812/stored-procedure-exception-handling-in-asp-net/1809884#1809884Comment by Nathan Koop on stored procedure exception handling in asp.netNathan Koop2009-11-27T17:47:25Z2009-11-27T17:47:25Znote link in answer is in Portuguese, here is the US english link <a href="http://msdn.microsoft.com/en-us/library/ms175976.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1805299/update-datacolumns-with-latest-column-information/1805435#1805435Comment by Nathan Koop on Update DataColumn's with latest column informationNathan Koop2009-11-26T20:03:14Z2009-11-26T20:03:14ZThanks, I didn't try the delete and re-create the datatable, there are other queries attached to it. I'll give it a shot http://stackoverflow.com/questions/1805299/update-datacolumns-with-latest-column-informationComment by Nathan Koop on Update DataColumn's with latest column informationNathan Koop2009-11-26T19:34:19Z2009-11-26T19:34:19Zthe column length value isn't being updated. So it's still at varchar 20http://stackoverflow.com/questions/1797584/how-to-add-an-item-to-a-list-of-generics-declared-as-a-list-of-an-abstract-object/1797650#1797650Comment by Nathan Koop on How to add an item to a list of generics declared as a list of an abstract object in C#Nathan Koop2009-11-25T15:31:06Z2009-11-25T15:31:06ZHave you tried it with the CheckingSavingsAccount type?http://stackoverflow.com/questions/1797584/how-to-add-an-item-to-a-list-of-generics-declared-as-a-list-of-an-abstract-objectComment by Nathan Koop on How to add an item to a list of generics declared as a list of an abstract object in C#Nathan Koop2009-11-25T15:20:57Z2009-11-25T15:20:57Zshouldn't your last line be lstTemp.Add(newCC1)?http://stackoverflow.com/questions/1772140/using-app-config-to-set-strongly-typed-variables/1772183#1772183Comment by Nathan Koop on Using App.config to set strongly-typed variablesNathan Koop2009-11-20T18:13:03Z2009-11-20T18:13:03Zdoesn't this fail the "strongly-typed variables" portion of the requirements, you're still storing a string in app.confighttp://stackoverflow.com/questions/1746324/about-detailsviewComment by Nathan Koop on About DetailsviewNathan Koop2009-11-17T03:15:28Z2009-11-17T03:15:28ZHave you debugged this? Try placing breakpoints after both if statements. Perhaps Home is getting changed at some pointhttp://stackoverflow.com/questions/1731177/need-some-help-with-sql-groupbyComment by Nathan Koop on Need some help with SQL GroupBYNathan Koop2009-11-13T19:13:30Z2009-11-13T19:13:30Z@OMG Ponies, you are correcthttp://stackoverflow.com/questions/1731177/need-some-help-with-sql-groupbyComment by Nathan Koop on Need some help with SQL GroupBYNathan Koop2009-11-13T19:05:00Z2009-11-13T19:05:00ZDuplicate of <a href="http://stackoverflow.com/questions/1715351/sql-2005-join-results" rel="nofollow" title="sql 2005 join results">stackoverflow.com/questions/1715351/…</a>http://stackoverflow.com/questions/1722153/http-post-xml-content-from-cucumberComment by Nathan Koop on HTTP POST XML content from cucumberNathan Koop2009-11-12T19:44:51Z2009-11-12T19:44:51Z@mbuf, if one of the answers resolved your issue you should mark it as "answered" by clicking the checkmark below the voting area.http://stackoverflow.com/questions/1710124/performance-issue-when-setting-connection-information-crystal-reportsComment by Nathan Koop on Performance Issue when setting connection information Crystal Reports Nathan Koop2009-11-11T17:36:50Z2009-11-11T17:36:50ZI have also posted a question at the SAP/Crystal Reports forums and received a response there from the author of this article suggesting that it may be of assistance. (<a href="http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/8029cc96-6ff3-2b10-47a2-b30ea790ea5b&overridelayout=true" rel="nofollow">sdn.sap.com/irj/boc/…</a>)http://stackoverflow.com/questions/1715927/what-is-a-good-resource-for-making-high-level-software-architectural-decisionsComment by Nathan Koop on What is a good resource for making high-level software architectural decisionsNathan Koop2009-11-11T15:40:20Z2009-11-11T15:40:20Z@pc1load1etter, this is a pretty vague question. You're going to get a lot of reasonable, but quite vague answers. Perhaps, like hrnt eluded to, you should ask more specific questions on StackOverflow. That is, if it's appropriate.