User Christopher Klein - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T09:37:06Zhttp://stackoverflow.com/feeds/user/17632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/857866/microsoft-sql-case-when-vs-isnull-nullif0Microsoft SQL: CASE WHEN vs ISNULL/NULLIFChristopher Klein2009-05-13T13:13:05Z2009-11-03T15:52:49Z
<p>Besides readability is there any significant benifit to using a CASE WHEN statement vs ISNULL/NULLIF when guarding against a divide by 0 error in SQL?</p>
<pre><code>CASE WHEN (BeginningQuantity + BAdjustedQuantity)=0 THEN 0
ELSE EndingQuantity/(BeginningQuantity + BAdjustedQuantity) END
</code></pre>
<p>vs</p>
<pre><code>ISNULL((EndingQuantity)/NULLIF(BeginningQuantity + BAdjustedQuantity,0),0)
</code></pre>
http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643560#16435601Answer by Christopher Klein for Why no love for SQL?Christopher Klein2009-10-29T13:01:42Z2009-10-29T13:01:42Z<p>try saying that over here...
<a href="http://ask.sqlservercentral.com/" rel="nofollow">http://ask.sqlservercentral.com/</a></p>
<p>Thems fighting words! :P</p>
http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1600925#16009250Answer by Christopher Klein for Exposing SQL Server database objects as files in a file systemChristopher Klein2009-10-21T13:43:53Z2009-10-21T13:43:53Z<p>Do you necessarily need to track EVERY change made to an object or just the last one? We wrote a solution in C# which works against TFS in that we have a baseline of all the SQL objects in the database and then using the methods from Microsoft.SqlServer.Management.Smo we just go thru each database object and compare the 'working set' to the server version. We run it at night as part of our evening processing and it takes about 15 minutes to go thru the entire server of 9 databases. We've found that it works great, doesn't involve any direct modification to SQL servers/databases and it works for SQL 2005/2008. It generates a report that gets mailed out to our database admin letting them know what objects have changed, then allows them to go thru TFS and see whats what.</p>
<p>I had originally started here;
<a href="http://odetocode.com/blogs/scott/archive/2008/02/02/versioning-databases-change-scripts.aspx" rel="nofollow">http://odetocode.com/blogs/scott/archive/2008/02/02/versioning-databases-change-scripts.aspx</a></p>
<p>but found that what I was looking for wasn't so much a way to push changes to a server but to simply know the changes. The blog link has a few decent suggestions, might be helpful hopefully.</p>
<p>regards.</p>
http://stackoverflow.com/questions/1560528/how-to-change-the-color-of-expanded-regions-titles-in-vs2008/1560584#15605841Answer by Christopher Klein for How to change the color of expanded regions' titles in VS2008?Christopher Klein2009-10-13T14:27:41Z2009-10-13T17:36:07Z<p>You can change the #region and #endregion preprocessor keyword under the 'Font and Colors' option under Tools-->Options... but I've never seen where you can change the text that you put after the tag.</p>
<p>You might want to poke around <a href="http://blogs.msdn.com/saraford/" rel="nofollow">http://blogs.msdn.com/saraford/</a> and check out her blog since she is the queen of UI customization for visual studio.</p>
<p>post it if you find it :)</p>
<p>EDIT: I found this from a Microsoft website;
"You can only change the preprocessor keywords. To get more advanced formatting you're going to have to look for third-party addons. I use CodeRush from DevExpress (<a href="http://www.devexpress.com" rel="nofollow">http://www.devexpress.com</a>) and it can do what you want. They have a free Express version available but I don't know if the region coloring is in the free version."</p>
http://stackoverflow.com/questions/1477818/anyway-to-make-a-ilist-contains-act-more-like-a-wildcard-contains0Anyway to make a IList.Contains() act more like a wildcard contains?Christopher Klein2009-09-25T14:59:49Z2009-09-25T15:06:04Z
<p>Hi there,</p>
<p>I am trying to parse thru a csv string, put the results into a IList collection and then trying to find a way to do a wildcard 'contains' based on what was passed in. Right now I have the following:</p>
<pre><code> public static IList<string> DBExclusionList
{
get
{
Regex splitRx = new Regex(@",\s*", RegexOptions.Compiled);
String list = (string)_asr.GetValue("DBExclusionList",typeof(string));
string[] fields = splitRx.Split(list);
return fields;
}
}
if (DBExclusionList.Contains(dbx.Name.ToString())==false)
{...}
</code></pre>
<p>So if the string I am parsing (key value from .config file) contains:
key="DBExclusionList" value="ReportServer,ReportServerTempDB,SQLSentry20,_TEST"</p>
<p>The DBExclusionList.Contains() works very well for exact matches on the first 3 items in the list, but I want to be able to ALSO have it for any partial match of the fourth item '_TEST'</p>
<p>is there any way to do it? I could certainly hardcode it to always exclude whatever but I'd rather not.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1428790/comparing-two-database-tables/1428870#14288700Answer by Christopher Klein for Comparing two database tablesChristopher Klein2009-09-15T18:23:45Z2009-09-15T18:23:45Z<pre><code>
ALTER PROCEDURE dbo.CompareTables
(
@table1 VARCHAR(100),
@table2 VARCHAR(100),
@T1ColumnList VARCHAR(1000),
@T2ColumnList VARCHAR(1000) = ''
)
AS
/*
Table1, Table2 are the tables or views to compare.
T1ColumnList is the list of columns to compare, from table1.
Just list them comma-separated, like in a GROUP BY clause.
If T2ColumnList is not specified, it is assumed to be the same
as T1ColumnList. Otherwise, list the columns of Table2 in
the same order as the columns in table1 that you wish to compare.
<pre><code>The result is all rows from either table that do NOT match
the other table in all columns specified, along with which table that
row is from.
</code></pre>
<p>*/</p>
<p>DECLARE @SQL VARCHAR(8000)</p>
<p>IF @t2ColumnList = '' SET @T2ColumnList = @T1ColumnList</p>
<p>SET @SQL = 'SELECT ''' + @table1 + ''' AS TableName, ' + @t1ColumnList +
' FROM ' + @Table1 + ' UNION ALL SELECT ''' + @table2 + ''' As TableName, ' +
@t2ColumnList + ' FROM ' + @Table2</p>
<p>SET @SQL = 'SELECT Max(TableName) as TableName, ' + @t1ColumnList +
' FROM (' + @SQL + ') A GROUP BY ' + @t1ColumnList +
' HAVING COUNT(*) = 1'</p>
<p>EXEC ( @SQL)</pre></code></p>
http://stackoverflow.com/questions/1244729/how-do-you-count-the-lines-of-code-in-a-visual-studio-solution/1244812#12448122Answer by Christopher Klein for How do you count the lines of code in a Visual Studio solution?Christopher Klein2009-08-07T13:51:25Z2009-08-07T13:51:25Z<p>In Visual Studio Team System 2008 you can do from the menu Analyze--> 'Calculate Code Metrics for Solution' and it will give you a line count of your entire solution (among other things <em>g</em>)</p>
http://stackoverflow.com/questions/1202374/saving-excel-2007-documents/1244609#12446091Answer by Christopher Klein for Saving Excel 2007 documentsChristopher Klein2009-08-07T13:07:46Z2009-08-07T13:07:46Z<p><a href="http://www.codeplex.com/ExcelPackage" rel="nofollow">ExcelPackage</a> works pretty good for that. It hasn't been worked on by the primary author I dont think for a little while but it has a good following of people on its forum that work any issues out.</p>
<pre><code> FileInfo template = new FileInfo(Path.GetDirectoryName(Application.ExecutablePath)+"\\Template.xlsx");
try
{
using (ExcelPackage xlPackage = new ExcelPackage(strFileName,template))
{
//Enable DEBUG mode to create the xl folder (equlivant to expanding a xlsx.zip file)
//xlPackage.DebugMode = true;
ExcelWorksheet worksheet = xlPackage.Workbook.Worksheets["Sheet1"];
worksheet.Name = WorkSheetName;
foreach (DataRow row in dt.Rows)
{
int c = 1;
if (r > startRow) worksheet.InsertRow(r);
// our query has the columns in the right order, so simply
// iterate through the columns
foreach (DataColumn col in dt.Columns)
{
if (row[col].ToString() != null)
{
worksheet.Cell(r, c).Value = colValue;
worksheet.Column(c).Width = 10;
}
c++;
}
r++;
}
// change the sheet view to show it in page layout mode
worksheet.View.PageLayoutView = false;
// save our new workbook and we are done!
xlPackage.Save();
xlPackage.Dispose();
}
}
</code></pre>
http://stackoverflow.com/questions/1173200/need-c-function-to-convert-grayscale-tiff-to-black-white-monochrome-1bpp-tif/1173220#11732201Answer by Christopher Klein for Need C# function to convert grayscale TIFF to black & white (monochrome/1BPP) TIFFChristopher Klein2009-07-23T17:16:08Z2009-07-23T17:16:08Z<p>might want to check out 'Craigs Utility Library' I believe he has that functionality in place.
<a href="http://www.gutgames.com/page/Craigs-Utility-Library.aspx" rel="nofollow">Craig's Utility Library</a></p>
http://stackoverflow.com/questions/687434/programatically-checking-files-into-tfs-getting-more-than-expected0Programatically checking files into TFS getting more than expected...Christopher Klein2009-03-26T20:23:47Z2009-07-21T20:12:41Z
<p>Hi there,
<br>
So I have a .NET app which goes thru and generates a series of files, outputs them to a local directory and then determines if it needs to update an existing file or add a new file into a TFS (Team Foundation Server) project.
<br>
I have a single workspace on my local machine and there are 10 different working folders that are other coding projects I have worked on from this particular machine. My problem happens when I go to check if the file already exists in the TFS project and an update is required or if needs to be added to the project as a new file.
<br>
snipet:</p>
<pre>
static string TFSProject = @"$/SQLScripts/";
static WorkspaceInfo wsInfo;
static VersionControlServer versionControl;
static string argPath = "E:\\SQLScripts\\";
wsInfo = Workstation.Current.GetLocalWorkspaceInfo(argPath);
TeamFoundationServer tfs = new TeamFoundationServer(wsInfo.ServerUri.AbsoluteUri);
versionControl = (VersionControlServer)tfs.GetService(typeof(VersionControlServer));
Workspace workspace = versionControl.GetWorkspace(wsInfo);
workspace.GetLocalItemForServerItem(TFSProject);
</pre>
<p><br>
At this point I check if the file exists and I do one of two things. if the file exists, then I mark the file for EDIT and then I writeout the file to the local directory, otherwise I will script the file first and then ADD the file to the workspace. I dont care if the physical file is identical to the one I am generating as I am doing this as a SAS70 requirement to 'track changes'<br><br>
If it exists I do:<br>
workspace.PendEdit(filename,RecurisionType.Full);<br>
scriptoutthefile(filename);<br>
<br>
or if it doesn't exist<br>
scriptoutthefilename(filename);<br>
workspace.PendAdd(filename,true);<br>
<br>
Ok, all of that to get to the problem. When I go to check on pending changes against the PROJECT I get all the pending changes for all of the projects I have on my local machine in the workspace.</p>
<pre>
// Show our pending changes.
PendingChange[] pendingChanges = workspace.GetPendingChanges();
foreach (PendingChange pendingChange in pendingChanges)
{
dosomething...
}
</pre>
<p>I thought that by setting the workspace to workspace.GetLocalItemForServerItem(TFSProject) that it would give me ONLY the objects for that particular working folder.
<br><br>If there any way to force the workspace object to only deal with a particular working folder?<br></p>
<p>Did that make any sense? Thanks in advance...</p>
http://stackoverflow.com/questions/1069665/how-do-i-bypass-fan-on-my-inspiron-1501-mobo/1069688#10696880Answer by Christopher Klein for How do I bypass fan on my Inspiron 1501 moboChristopher Klein2009-07-01T15:09:24Z2009-07-01T15:09:24Z<p>only slightly off topic but I've found that cooling pads work wonders for alot of laptops that have overheating problems. I've used them with both Toshiba and Dell laptops to decent levels of sucess.
So as an alternative I offer: <a href="http://www.xpad4laptop.com/" rel="nofollow">xpadforlaptop</a></p>
http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065530#10655300Answer by Christopher Klein for How can I find the Month when all I have is the week number in c#Christopher Klein2009-06-30T19:26:13Z2009-06-30T19:26:13Z<p>Might want to check this out:
<a href="http://msdn.microsoft.com/en-us/library/aa328527%28VS.71%29.aspx" rel="nofollow">GregorianCalendar.AddWeeks</a></p>
<p>Initialize a new date time for the 1st of Jan for the required year and then
call the AddWeeks method.</p>
http://stackoverflow.com/questions/361395/best-way-to-handle-file-uploads-through-http/1065008#10650080Answer by Christopher Klein for Best way to handle file uploads through HTTPChristopher Klein2009-06-30T17:40:20Z2009-06-30T17:40:20Z<p>I use this one for a fairly simple and complete tool. The base sourcecode is good and you can easily customize it if necessary.
<a href="http://en.fileuploadajax.subgurim.net/" rel="nofollow">AJAX File Upload</a></p>
http://stackoverflow.com/questions/1052041/how-to-geocode-non-standard-business-addresses/1052934#10529342Answer by Christopher Klein for How to geocode non-standard business addressesChristopher Klein2009-06-27T14:43:35Z2009-06-27T14:43:35Z<p>Personally I use <a href="http://developer.yahoo.com/maps/rest/V1/geocode.html" rel="nofollow">YAHOO's geocoder</a> for getting the long/lat information and I use Google's API to map the data. I ran into the same issue where Google just wasn't quite up to the job of more complicated addresses but the Yahoo API has more flexibility. I'm also running a very small application and its not an issue using both but your mileage may vary.</p>
http://stackoverflow.com/questions/1027677/how-can-i-return-row-information-on-a-failed-insert-update-in-mssql0how can I return row information on a failed insert/update in MSSQL?Christopher Klein2009-06-22T14:55:29Z2009-06-22T15:21:33Z
<p>Ok, so suppose I am doing an insert or an update on a table. So in the BEGIN CATCH/END CATCH I can define a variable to ERROR_MESSAGE() and get back my error message:<br>
Cannot insert the value NULL into column 'columnname', table 'Table'; column does not allow nulls. INSERT fails.</p>
<p>Is there any way I could return say the primary key of the offending record or anything to identify which row actually failed? I rollback the transaction on failure so it's not like I can look at the 'last' record to see the next one which has the problem.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1026895/if-there-one-thing-you-learned-along-the-way-that-you-would-tell-new-developers/1027061#10270612Answer by Christopher Klein for If there one thing you learned along the way that you would tell new developers, what would it be?Christopher Klein2009-06-22T12:54:52Z2009-06-22T12:54:52Z<p>Never get complacent. If you actually make the mistake of thinking you have no more to learn and you can just 'coast' on your existing knowledge you are headed for a fall...</p>
<p>many programmers stop actively seeking new informationand techniques and instead rely on accidental, on-the-job exposure to new information. If you devote a small percentage of your time to reading and learning about programming, after a few months or years you will dramatically distinguish yourself from the programming mainstream.</p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/986701#9867010Answer by Christopher Klein for What is the most important thing you weren't taught in school?Christopher Klein2009-06-12T13:43:31Z2009-06-12T13:43:31Z<p>That unlike school and if you played sports, there is no such thing as good sportsmanship. Two people going for the same job, there will be blood. The person sitting in the cube next to you WILL throw you under the bus at review time, and when projects come late your boss will sacrifice you up to their boss in order to save their own arses.</p>
<p>It's nice that we teach little kids that all is fair, and that we can't keep score and that despite the fact that the other team kicked your ass 10-0 you still have to smile and shake their hands and all go get ice cream... Reality is a cruel wakeup call and kids are shown a great injustice by not being prepared to be kicked in the gut now and then.</p>
http://stackoverflow.com/questions/977021/can-a-stored-procedure-have-dynamic-parameters-to-be-used-in-an-in-clause/977049#9770490Answer by Christopher Klein for Can a stored procedure have dynamic parameters to be used in an "IN" clause?Christopher Klein2009-06-10T17:31:00Z2009-06-10T17:31:00Z<p>declare a @temp table and split the values into it. then you could do</p>
<p>select * from Studio s inner join
@temptable tb
on s.ID=tb.ID</p>
http://stackoverflow.com/questions/956507/how-can-i-check-the-sql-syntax-in-a-sql-file/956595#9565951Answer by Christopher Klein for How can I check the SQL syntax in a .sql file?Christopher Klein2009-06-05T15:40:58Z2009-06-05T15:48:08Z<p>There are a few free/try-ware products out there that will allow you to connect to a MySQL database or just paste in the script to validate it. Google is your friend here.
<a href="http://developer.mimer.se/validator/index.htm" rel="nofollow">Mimer will check ANSI-Standard syntax validation</a> but probably not handle any MySQL specifics.</p>
http://stackoverflow.com/questions/955924/tsql-dynamic-adding-of-columns-in-stored-procedure/955981#9559811Answer by Christopher Klein for TSQL dynamic adding of columns in stored procedureChristopher Klein2009-06-05T13:56:01Z2009-06-05T13:56:01Z<p>Cannot get around having to do it dynamically I believe so change your BEGIN block to something like this:</p>
<p>DECLARE @sql VARCHAR(8000)</p>
<p>BEGIN<br />
SET @sql = 'ALTER TABLE Table_1 ADD '+@columnname+' VARCHAR(50) NULL'</p>
<pre><code> EXEC(@sql)
</code></pre>
<p>END</p>
http://stackoverflow.com/questions/955377/easy-performance-metrics-for-sql-server-2000/955602#9556021Answer by Christopher Klein for Easy performance metrics for SQL Server 2000Christopher Klein2009-06-05T12:28:42Z2009-06-05T12:28:42Z<p>You should be able to go thru the sys.dm_exec_query_stats table, which keeps information on all queries against a database.</p>
<pre><code>SELECT creation_time
,last_execution_time
,total_physical_reads
,total_logical_reads
,total_logical_writes
, execution_count
, total_worker_time
, total_elapsed_time
, total_elapsed_time / execution_count avg_elapsed_time
,SUBSTRING(st.text, (qs.statement_start_offset/2) + 1,
((CASE statement_end_offset
WHEN -1 THEN DATALENGTH(st.text)
ELSE qs.statement_end_offset END
- qs.statement_start_offset)/2) + 1) AS statement_text
FROM sys.dm_exec_query_stats AS qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) st
ORDER BY last_execution_time,total_elapsed_time / execution_count DESC;
</code></pre>
<p>Gives you basic timing information of how long, historically, queries took.</p>
http://stackoverflow.com/questions/941547/how-can-i-fix-this-sql-error-on-this-query/941620#9416200Answer by Christopher Klein for How can I fix this SQL error on this queryChristopher Klein2009-06-02T20:06:50Z2009-06-02T20:06:50Z<p>declare @params NVARCHAR(4000)<br>
declare @sql NVARCHAR(4000)</p>
<p>SET @providerIdList = '(1, 5, 15)'</p>
<p>SET @sql = 'SELECT u.Id FROM [user] u LEFT JOIN Provider p ON u.Provider_FK = p.Id LEFT JOIN Providers2Users pu ON pu.user_FK = u.Id LEFT JOIN Provider ap ON ap.Id = pu.provider_fk WHERE p.Id IN ' + @providerIdList'</p>
<p>SELECT @params = N'@providerIdList VARCHAR OUTPUT'</p>
<p>exec sp_executesql @sql, @params,@providerIdList=@providerIdList</p>
http://stackoverflow.com/questions/779370/should-qa-report-to-development/941415#9414151Answer by Christopher Klein for Should QA report to development ?Christopher Klein2009-06-02T19:20:07Z2009-06-02T19:20:07Z<p>Seriously, this question has been around forever. At least as long as there has been QA & Developers.</p>
<p>Personally – I don’t think the org. chart matters as long as you have a good, ethical & honest manager.<br />
The argument that an “R&D Manager” could pressure QA folks to do/report certain things is true. You can also have a QA manager who likes flexing their muscles & proving a point. You can also have 2 separate departments & if you have a poor manager you can still have problems or people being pressured to “tweak” things. Any way you cut it you could end up w/infighting & political BS – which leads to a poor release.</p>
<p>However if you have a manager who understands & values both pieces of the process and is truly focused on the best possible release it doesn’t matter what the org. chart looks like. QA could report to the front desk or janitorial staff and if they are able to honestly report their results & the information is given appropriate weight & consideration, then everything is okay.</p>
http://stackoverflow.com/questions/939381/company-standards-c-net-vs-vb-net-vs-whatever-net4Company standards: C#.NET vs VB.NET vs. whatever.NETChristopher Klein2009-06-02T13:04:26Z2009-06-02T14:26:33Z
<p>Just a question that came up from time to time at my old job when we were considering fleshing out our development staff with additional bodies. Does it really matter, if you are a .NET development house, if your developers all code in one language vs another.</p>
<p>I probably started out like alot of the 4million other folks there with Visual Basic way back when, and then migrated to VB.NET. Another developer we had at the time came from a C background and migrated over to C#.NET. Basically he was able to code very quickly in his native language and I was able to do so in mine and since our projects did not really overlap there was no issue until our boss basically said we need to switch to C#... for no other reason than standardization.</p>
<p>So I guess the 'subjective' part of the question is, is it better to sacrifice productivity for consistency? Now I should quantify this in saying we were a SMALL shop, less than 5 developers and given how most of our project plans were done on cocktail napkins its not like we were going for 6-Sigma anytime soon so it was not like 'standards' were a hard and fast rule.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/935849/sql-server-management-studio-using-multiple-filters-in-table-list/936014#9360140Answer by Christopher Klein for SQL Server Management Studio - using multiple filters in table list?Christopher Klein2009-06-01T18:12:45Z2009-06-01T18:12:45Z<p>You might be able to roll your own addon to SMSS that would allow you to do what you are looking for:</p>
<p><a href="http://jcooney.net/archive/2007/11/26/55358.aspx" rel="nofollow">The Black Art of Writing a SQL Server Management Studio 2005 Add-In</a></p>
<p><a href="http://aspalliance.com/1374%5FExtend%5FFunctionality%5Fin%5FSQL%5FServer%5F2005%5FManagement%5FStudio%5Fwith%5FAddins.all" rel="nofollow">Extend Functionality in SQL Server 2005 Management Studio with Add-ins
</a></p>
<p>The first one is specifically for searching and displaying all schema objects with a given name so you might be able to expand upon that for what you are looking for.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/934662#9346622Answer by Christopher Klein for What is your solution to the FizzBuzz problem?Christopher Klein2009-06-01T12:41:23Z2009-06-01T12:41:23Z<pre><code>WITH Nbrs(n) AS (
SELECT 1
UNION ALL
SELECT 1 + n FROM Nbrs WHERE n < 100)
SELECT CASE WHEN n%5=0 AND n%3=0 THEN 'BizzBuzz'
WHEN n%3 = 0 THEN 'Bizz'
WHEN n%5 = 0 THEN 'Buzz'
ELSE CAST(n AS VARCHAR(8))
END
FROM Nbrs
OPTION (MAXRECURSION 100);
</code></pre>
http://stackoverflow.com/questions/920776/mssql-view-how-to-add-missing-rows-using-interpolation2MSSQL view: how to add missing rows using interpolationChristopher Klein2009-05-28T13:15:09Z2009-06-01T12:21:47Z
<p>Running into a problem.</p>
<p>I have a table defined to hold the values of the daily treasury <a href="http://www.treas.gov/offices/domestic-finance/debt-management/interest-rate/yield.shtml" rel="nofollow"><strong>yield curve</strong></a>.</p>
<p>It's a pretty simple table used for historical lookup of values.</p>
<p>There are notibly some gaps in the table on year <code>4</code>, <code>6</code>, <code>8</code>, <code>9</code>, <code>11-19</code> and <code>21-29</code>.</p>
<p>The formula is pretty simple in that to calculate year <code>4</code> it's <code>0.5*Year3Value + 0.5*Year5Value</code>.</p>
<p>The problem is how can I write a <code>VIEW</code> that can return the missing years?</p>
<p>I could probably do it in a stored procedure but the end result needs to be a view.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/927724/what-is-a-sql-statement-to-select-an-item-that-has-several-attributes-in-an-item/927745#9277450Answer by Christopher Klein for What is a SQL statement to select an item that has several attributes in an item/attribute list?Christopher Klein2009-05-29T19:34:29Z2009-05-29T19:34:29Z<p>create two tables, one of items and one of attributes.<br />
Items could be name, intAttributeID, where intAttributeID is a foreign key reference to the Attributes table. That way you can do a select statement based off whatever you care about.</p>
http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/898310#8983101Answer by Christopher Klein for What are the worst working conditions you have written code in?Christopher Klein2009-05-22T14:58:48Z2009-05-22T14:58:48Z<p>Probably the worst situation/conditions I've ever had to code in was when, at a previously company, we released a 'finished' software product to a customer that was about 3 months short of finished. The product was functional but it was far from a polished product. So the situation was our trainer was scheduled to be on-site for 2 weeks for full training of the product, plus conversion of an existing product's data. The trainer would do her job during the day, compile a list of problems and then myself and another developer would work all night to solve that days problems since we couldn't take the system down during the day to make changes. We did that for the full two weeks and pretty much kept the process seamless to the customer who appreciated all the hard work we had put in. If it wasn't for the damned sales person who promised the delivery dates it could of been a much more pleasant process.</p>
http://stackoverflow.com/questions/897885/how-to-source-control-stored-procedures-with-sql-server-2005-and-visual-source-sa/897953#8979530Answer by Christopher Klein for How to source control stored procedures with SQL Server 2005 and Visual Source Safe 2005?Christopher Klein2009-05-22T13:52:49Z2009-05-22T13:52:49Z<p>Check out this site:
<a href="http://cwashington.netreach.net/depo/view.asp?Index=1071" rel="nofollow">VBScript with SQLDMO</a>
basically what we do in-house is we wrote a vbscript file that uses SQLDMO to output the contents of all of the SQL objects out to a directory, then we use the SourceSafe object thru vbscript to manage the version control. Unfortunately I cannot post the code since my boss also frequents this site ocassionally ;)</p>
<p>We have recently switched from VSS to TFS and wrote a process to manage that in .NET, handles alot cleaner.</p>
http://stackoverflow.com/questions/1690520/how-to-undo-another-users-checkout-in-tfs/1690543#1690543Comment by Christopher Klein on How to undo another user’s checkout in TFS?Christopher Klein2009-11-06T21:53:43Z2009-11-06T21:53:43Z+1; <a href="http://www.attrice.info/cm/tfs/" rel="nofollow">attrice.info/cm/tfs</a>
http://stackoverflow.com/questions/1613507/should-programmers-read-the-spec-before-coding/1613543#1613543Comment by Christopher Klein on Should programmers read the spec before coding?Christopher Klein2009-10-23T13:52:59Z2009-10-23T13:52:59Zyeah...wow... you guys get specs to work from? I've heard of them before... :(http://stackoverflow.com/questions/1613086/help-me-delete-the-last-three-chars-of-any-string-please/1613129#1613129Comment by Christopher Klein on Help me delete the last three chars of any string please!Christopher Klein2009-10-23T12:44:31Z2009-10-23T12:44:31Zsince he said 'any string' this seems to work fine, dont need to do the UrlDecoding.http://stackoverflow.com/questions/1586697/exposing-sql-server-database-objects-as-files-in-a-file-system/1600925#1600925Comment by Christopher Klein on Exposing SQL Server database objects as files in a file systemChristopher Klein2009-10-22T13:21:23Z2009-10-22T13:21:23Zyeah, it serves the purposes of our SAS70 auditors who just need to know what was changed and when, not necessarily that it changed 20 times during the development process. The deployment on our production server is very sporadic so it provides a good way to basically roll-back an entire update, or partially, if needed since you have all the history.
http://stackoverflow.com/questions/1561272/sql-server-2000-search-through-out-database/1561292#1561292Comment by Christopher Klein on SQL Server 2000: search through out databaseChristopher Klein2009-10-13T16:20:49Z2009-10-13T16:20:49Zi hate the formatting...
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/894283#894283Comment by Christopher Klein on Hidden Features of SQL ServerChristopher Klein2009-09-28T20:45:22Z2009-09-28T20:45:22Zyou can also use COALESCE() to do the same thing without the need to initialize the variable.
SELECT @nvcConcatonated = COALESCE(@nvcConcatonated+',','')+CAST(C.CompanyName as VARCHAR(255)) FROM...http://stackoverflow.com/questions/1477818/anyway-to-make-a-ilist-contains-act-more-like-a-wildcard-contains/1477854#1477854Comment by Christopher Klein on Anyway to make a IList.Contains() act more like a wildcard contains?Christopher Klein2009-09-28T15:52:57Z2009-09-28T15:52:57ZI went with this one since the .Any returns a bool. thanks :)
http://stackoverflow.com/questions/1477818/anyway-to-make-a-ilist-contains-act-more-like-a-wildcard-containsComment by Christopher Klein on Anyway to make a IList.Contains() act more like a wildcard contains?Christopher Klein2009-09-25T17:25:45Z2009-09-25T17:25:45Znice... (but true)http://stackoverflow.com/questions/1428790/comparing-two-database-tables/1428870#1428870Comment by Christopher Klein on Comparing two database tablesChristopher Klein2009-09-16T17:38:54Z2009-09-16T17:38:54Zguess a link is worth 48 lines of code ;)http://stackoverflow.com/questions/842731/net-webbrowser-control-automationComment by Christopher Klein on .NET webbrowser control automationChristopher Klein2009-08-06T13:38:06Z2009-08-06T13:38:06Zplaying EVONY or something else? ;)
http://stackoverflow.com/questions/1171331/how-can-i-update-my-sql-server-database-schema/1171347#1171347Comment by Christopher Klein on How can I update my SQL Server database schema?Christopher Klein2009-07-23T12:43:58Z2009-07-23T12:43:58ZLove the RedGate compare, although there are other apps out there. Still, biggest issue to consider is order of dependency which RedGate will not help you figure out except manually.http://stackoverflow.com/questions/1133581/is-23-148-855-308-184-500-a-magic-number-or-sheer-chanceComment by Christopher Klein on Is 23,148,855,308,184,500 a magic number, or sheer chance?Christopher Klein2009-07-15T19:56:30Z2009-07-15T19:56:30Zwell Obama did say that he had a new stimulus plan in the works to ease the deficet...http://stackoverflow.com/questions/1127269/passive-logging-in-an-existing-net-web-applicationComment by Christopher Klein on Passive Logging in an existing .NET Web Application?Christopher Klein2009-07-14T19:16:36Z2009-07-14T19:16:36Z+1 for making me go to two different wiki sites before I found the definition of a 'brownfield application'. I need to keep up with the lingo better...http://stackoverflow.com/questions/1065465/how-can-i-find-the-month-when-all-i-have-is-the-week-number-in-c/1065530#1065530Comment by Christopher Klein on How can I find the Month when all I have is the week number in c#Christopher Klein2009-06-30T19:38:37Z2009-06-30T19:38:37Zdoesnt seem to get much simplier than 1-52 according to the OPhttp://stackoverflow.com/questions/1064812/how-to-make-this-sql-task-faster-to-complete/1064839#1064839Comment by Christopher Klein on How to Make this SQL Task Faster to CompleteChristopher Klein2009-06-30T17:14:04Z2009-06-30T17:14:04Z+1 as much as I liked the old 'UPSERT' in previous SQL versions, MERGE makes life so much easier