User Gordon Bell - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T02:44:59Zhttp://stackoverflow.com/feeds/user/16473http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1772831/sql-delete-when-column-a-and-column-b-does-not-exist/1773233#17732330Answer by Gordon Bell for SQL Delete When column a and column b does not exist.Gordon Bell2009-11-20T21:05:09Z2009-11-20T21:05:09Z<pre><code>-- Fix Account Numbers and Equipment Numbers
update ClientPaymentTemp
set SUB_ACCT_NO_SBB = replace(SUB_ACCT_NO_SBB,'"',''),
equipmentNumber = replace(equipmentNumber,'"','')
-- Delete Existing Accounts Mapped to New Equipment
delete e
from ClientEquipments e
inner join clientspaymenttemp t
on e.EquipmentNumber = t.EquipmentNumber
and e.SUB_ACCT_NO_SBB <> t.SUB_ACCT_NO_SBB
-- Insert New Accounts
insert into ClientEquipments
(SUB_ACCT_NO_SBB,
EquipmentDate,
EquipmentText,
EquipmentNumber)
Select
SUB_ACCT_NO_SBB,
getdate() as edate,
'' as etext,
equipmentNumber
from ClientsPaymentTemp a
where not exists (select 1 from ClientEquipments where SUB_ACCT_NO_SBB = a.SUB_ACCT_NO_SBB and EquipmentNumber = a.EquipmentNumber)
</code></pre>
http://stackoverflow.com/questions/1758779/retrieving-data-using-select-sql-statement-in-powershell/1758872#17588721Answer by Gordon Bell for Retrieving data using select SQL statement in PowershellGordon Bell2009-11-18T20:34:40Z2009-11-18T20:34:40Z<pre><code>$SqlConnection = New-Object System.Data.SqlClient.SqlConnection
$SqlConnection.ConnectionString = "Server=HOME\SQLEXPRESS;Database=master;Integrated Security=True"
$SqlConnection.Open()
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = "select name from sysdatabases where name = 'tempdb'"
$SqlCmd.Connection = $SqlConnection
$dbname = $SqlCmd.ExecuteScalar()
$SqlConnection.Close()
Write-output "Database is " $dbname
</code></pre>
http://stackoverflow.com/questions/1739689/most-efficient-way-to-store-number-11-111-in-sql-server/1739710#17397100Answer by Gordon Bell for Most efficient way to store number 11.111 in SQL ServerGordon Bell2009-11-16T02:18:08Z2009-11-16T02:18:08Z<p>Use the decimal data type to set exact precision:</p>
<pre><code>decimal(5,3)
</code></pre>
http://stackoverflow.com/questions/1668478/optimising-sql-query-with-multiple-joins/1668514#16685141Answer by Gordon Bell for Optimising SQL Query With Multiple JoinsGordon Bell2009-11-03T16:35:12Z2009-11-03T16:35:12Z<pre><code>SELECT v.Venue, e.Event, i.Instance
FROM Venue v
INNER JOIN Event e
ON v.EventID = e.EventID
INNER JOIN Instance i
ON e.EventID = i.EventID
WHERE v.Venue = 'X'
AND e.Event = 'Terminator2'
AND i.InstanceDateTime BETWEEN '11/01/2009' AND '11/01/2009 23:59:00'
</code></pre>
<p>Or you can include your criteria in the joins which may perform better, in some cases.</p>
<pre><code>SELECT v.Venue, e.Event, i.Instance
FROM Venue v
INNER JOIN Event e
ON v.EventID = e.EventID
AND e.Event = 'Terminator2'
INNER JOIN Instance i
ON e.EventID = i.EventID
AND i.InstanceDateTime BETWEEN '11/01/2009' AND '11/01/2009 23:59:00'
WHERE v.Venue = 'X'
</code></pre>
http://stackoverflow.com/questions/1640484/background-worker-help-very-basic/1640551#16405511Answer by Gordon Bell for Background worker help. VERY basic.Gordon Bell2009-10-28T22:29:12Z2009-10-29T02:23:28Z<pre><code>backgroundWorker1.RunWorkerAsync();
</code></pre>
<p>The argument is optional, used to pass arguments to DoWork:</p>
<pre><code>backgroundWorker1.RunWorkerAsync(10);
backgroundWorker1.RunWorkerAsync(obj); // Pass multiple arguments using an object
</code></pre>
<p>which can be accessed from DoWork using e.Argument cast to the object type.</p>
http://stackoverflow.com/questions/1415834/save-file-as-dialog-problem-in-visual-studio-2008/1533013#15330130Answer by Gordon Bell for Save File As dialog problem in Visual Studio 2008Gordon Bell2009-10-07T17:18:59Z2009-10-07T17:18:59Z<p>I'm unable to reproduce on Vista.</p>
<p>Do you get the same error with when browsing with IE? Right-click on your HTML file in Solution Explorer and select Open With... IE.</p>
<p>Firefox may be locking the file for some reason.</p>
<p>What Firefox Add-Ons are you running? Perhaps one of those have a strange lock on the file?</p>
http://stackoverflow.com/questions/1494861/trouble-with-local-variables-in-c/1494892#14948921Answer by Gordon Bell for Trouble with local variables in C#Gordon Bell2009-09-29T20:55:51Z2009-09-29T20:55:51Z<p>What's this do?</p>
<pre><code>if (toReturn.Count > 1) {
temp1 = toReturn[toReturn.Count - 2]
temp2 = toReturn[toReturn.Count - 1]
}
</code></pre>
http://stackoverflow.com/questions/1494829/override-asp-net-form-tag/1494851#14948511Answer by Gordon Bell for Override asp.net form tagGordon Bell2009-09-29T20:47:30Z2009-09-29T20:47:30Z<p>You should be able to include a close form tag before your new form tag. Multiple Form Tags are allowed in HTML, but they can't be nested. I use this trick with PayPal in some MasterPages and it works okay.</p>
<pre><code></FORM>
<FORM action="http://externaldomain.com" method="post">
</code></pre>
<p>This will prevent postback of any server controls from that point on though.</p>
http://stackoverflow.com/questions/1412442/ms-access-how-can-i-count-distinct-value-using-access-query/1444782#14447821Answer by Gordon Bell for MS ACCESS: How can i count distinct value using access query?Gordon Bell2009-09-18T14:09:44Z2009-09-18T14:09:44Z<p>Sadat, use a subquery like this:</p>
<pre><code>SELECT DISTINCT Evaluation.ETCode, Training.TTitle, Training.Tcomponent, Training.TImpliment_Partner, Training.TVenue, Training.TStartDate, Training.TEndDate, Evaluation.EDate, Answer.QCode, Answer.Answer, Count(Answer.Answer) AS [Count], Questions.SL, Questions.Question,
(SELECT COUNT(*) FROM Training t2 WHERE t2.TCode = Evalution.ETCode) as TCodeCount
FROM ((Evaluation INNER JOIN Training ON Evaluation.ETCode=Training.TCode) INNER JOIN Answer ON Evaluation.ECode=Answer.ECode) INNER JOIN Questions ON Answer.QCode=Questions.QCode
GROUP BY Evaluation.ETCode, Answer.QCode, Training.TTitle, Training.Tcomponent, Training.TImpliment_Partner, Training.Tvenue, Answer.Answer, Questions.Question, Training.TStartDate, Training.TEndDate, Evaluation.EDate, Questions.SL
ORDER BY Answer.QCode, Answer.Answer;
</code></pre>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/116392#11639215Answer by Gordon Bell for What fun things do you do to release stress at the office?Gordon Bell2008-09-22T17:54:32Z2009-09-17T20:36:13Z<p>Stack Overflow, duh!</p>
<p><img src="http://sstatic.net/so/img/logo.png" alt="Stack Overflow" /></p>
http://stackoverflow.com/questions/1435793/pulling-date-and-time-values-from-excel-csv-to-c/1435816#14358161Answer by Gordon Bell for Pulling date and time values from excel (CSV) to C#Gordon Bell2009-09-16T22:20:55Z2009-09-16T22:20:55Z<p>Get .Text rather than .Value</p>
http://stackoverflow.com/questions/1435238/selecting-2-counts-in-1-query/1435273#14352732Answer by Gordon Bell for Selecting 2 counts in 1 query.Gordon Bell2009-09-16T20:26:44Z2009-09-16T20:26:44Z<pre><code>SELECT
projects.*
, (SELECT count(*) FROM tasks WHERE project_id = projects.project_id AND assigned_user_id = 1) as task_assigned_count,
, (SELECT count(*) FROM tasks WHERE project_id = projects.project_id AND created_user_id = 1) as task_created_count
FROM projects
</code></pre>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/473582#47358214Answer by Gordon Bell for Worst UI You've Ever UsedGordon Bell2009-01-23T16:38:47Z2009-09-08T20:48:15Z<p><strong><a href="http://www.crystalreports.com" rel="nofollow">Crystal Reports</a></strong></p>
<p>I haven't used it in a few years, so hopefully it's improved since.</p>
http://stackoverflow.com/questions/1375029/adobe-livecycle-designer-check-box-values-not-being-saved-when-using-automation0Adobe LiveCycle Designer Check Box Values not being saved when using AutomationGordon Bell2009-09-03T18:11:33Z2009-09-05T23:25:13Z
<p>I'm using Automation to populate and save a set of Adobe LiveCycle created forms from a database.</p>
<p>For testing, I have the form visible while populating it and can see the checkbox values being properly set. But when saving the form, everything <em>EXCEPT</em> the checkboxes/radiobuttons settings are being saved with the form.</p>
<p>I can manually open one of the forms and set various checkbox values and save the form, and they retain their settings.</p>
<p>Does anyone know how to get LiveCycle Designer checkbox values to retain their values on Save when using Automation?</p>
http://stackoverflow.com/questions/1326073/i-want-to-reduce-my-vs-net-projects-compile-time-what-are-your-ideas-for-how-t/1326211#13262110Answer by Gordon Bell for I want to reduce my VS.NET project's compile time - what are your ideas for how to do this? Gordon Bell2009-08-25T05:26:22Z2009-08-25T05:26:22Z<p>Write Better, Less Code! 60K?</p>
http://stackoverflow.com/questions/1316312/how-to-format-a-datetime-variable-to-get-the-month-and-then-put-the-value-into-a/1316317#13163174Answer by Gordon Bell for How to format a DateTime variable to get the Month, and then put the value into a string in C#? [VS2005]Gordon Bell2009-08-22T16:13:36Z2009-08-22T16:13:36Z<pre><code>DateTime dt = Convert.ToDateTime(dateTimePicker1.Text); //taken the DateTime from form
string dt1 = dt.ToString("MMMM yyyy")
</code></pre>
http://stackoverflow.com/questions/1296823/how-can-i-position-this-div-among-other-divs-in-css/1296877#12968771Answer by Gordon Bell for How can I position this DIV among other DIV's in CSS?Gordon Bell2009-08-18T22:18:14Z2009-08-19T21:12:46Z<ul>
<li><p>Add <strong>vertical-align: top;</strong> to each of your divs.</p></li>
<li><p>Change those <strong>float: right</strong>s to <strong>float: left</strong></p></li>
<li><p>Add <strong>text-align: right</strong> to get the contents of a div to align right.</p></li>
</ul>
<p>Also, there's a new StackOverflow-affiliated website for HTML/CSS/Web Design at <a href="http://doctype.com/" rel="nofollow">http://doctype.com/</a></p>
http://stackoverflow.com/questions/1296785/how-to-group-data-into-buckets-in-microsoft-sql/1296805#12968051Answer by Gordon Bell for How to group data into buckets in Microsoft SQLGordon Bell2009-08-18T22:01:36Z2009-08-18T22:01:36Z<pre><code>SELECT NAME,
CASE WHEN [BASE/DAY] <= 325 THEN '300 <= 325'
WHEN [BASE/DAY] <= 350 THEN '325 <= 350'
WHEN [BASE/DAY] <= 400 THEN '350 <= 400'
END AS BUCKET,
[BASE/DAY]
FROM
(
SELECT NAME, ROUND([DR# BASE]/DAYS_WORKED,0) AS 'BASE/DAY' FROM MYTABLE
) T
ORDER BY 1, 2, 3
</code></pre>
http://stackoverflow.com/questions/1287817/create-an-array-containing-filenames-in-a-directory/1288756#12887560Answer by Gordon Bell for Create an Array containing filenames in a directoryGordon Bell2009-08-17T15:54:14Z2009-08-17T16:01:37Z<p>With PowerShell, you can use something like:</p>
<pre><code>Get-ChildItem C:\ | ? {if ($_.PSIsContainer) {Copy-Item -include MyFile1.ABC -path $_.FullName -destination ("E:\Test\" + $_.Name) -recurse}}
</code></pre>
<p>Replace C:\ with the "Root Directory" to copy from and replace "E:\Test\" with the "Root Directory" to copy to (or to use an environmental variable DestX, replace "E:\Test\" with <strong>$env:DestX</strong>.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/1282446#12824466Answer by Gordon Bell for Great programming quotesGordon Bell2009-08-15T17:48:42Z2009-08-15T17:48:42Z<p><strong>"Part of the inhumanity of the computer is that, once it is competently programmed and working smoothly, it is completely honest."</strong></p>
<p><em>--Isaac Asimov</em> </p>
http://stackoverflow.com/questions/932291/calling-powershell-cmdlets-from-windows-batch-file/1282336#12823360Answer by Gordon Bell for Calling powershell cmdlets from Windows batch fileGordon Bell2009-08-15T17:04:14Z2009-08-15T17:04:14Z<pre><code># Test-Args.ps1
param($first, $second)
write-host $first
write-host $second
</code></pre>
<p>Call from Command Prompt:</p>
<pre><code>PowerShell.exe -NoProfile -Command "& {./Test-Args.ps1 'C:\Folder A\One' 'C:\Folder B\Two'}"
</code></pre>
<p>What's confusing is that if the script is in a folder path containing spaces, PowerShell doesn't recognize the script name in quotes:</p>
<pre><code>PowerShell.exe -NoProfile -Command "& {'C:\Folder X\Test-Args.ps1' 'C:\Folder
A\One' 'C:\Folder B\Two'}"
</code></pre>
<p>But you can get around that using something like:</p>
<pre><code>PowerShell.exe -NoProfile -Command "& {set-location 'C:\Folder X';./Test-Args.ps1 'C:\Folder
A\One' 'C:\Folder B\Two'}"
</code></pre>
<p>Don't use spaces in your .PS1 file name, or you're outta luck.</p>
http://stackoverflow.com/questions/1245292/vb6-regex-replace/1245358#12453580Answer by Gordon Bell for VB6 Regex ReplaceGordon Bell2009-08-07T15:17:02Z2009-08-07T15:17:02Z<pre><code>Dim strPattern As String: strPattern = "[^a-zA-Z0-9]*"
Dim regex As New RegExp
regex.Pattern = strPattern
result = regex.Replace(pFileNameWithoutExtension, "_")
</code></pre>
http://stackoverflow.com/questions/1190133/how-to-get-rid-of-jquery-error/1190151#11901513Answer by Gordon Bell for How to get rid of jquery errorGordon Bell2009-07-27T19:32:15Z2009-07-27T19:32:15Z<p>I think you just need to remove the <strong>onchange="getState(this.value)"</strong> attribute from your select tag, since the getState JavaScript function is no longer needed/being used.</p>
http://stackoverflow.com/questions/544354/vb-type-mismatch-issues-inarray/928385#9283850Answer by Gordon Bell for VB Type Mismatch issues - inArray()Gordon Bell2009-05-29T22:14:56Z2009-05-29T22:14:56Z<p>How about something like this instead:</p>
<pre><code>strOut = ""
strIn = strEmail
strTmp = ""
For Each f In rs2.fields
If Instr(strIn, "$*%%" & f.name) > 0 Then
strIn = Replace(strIn, "$*%%" & f.name, rs2(f.Name).Value)
End If
Next
strOut = strIn
</code></pre>
http://stackoverflow.com/questions/800017/why-do-sql-server-scalar-valued-functions-get-slower/800087#8000870Answer by Gordon Bell for Why do SQL Server Scalar-valued functions get slower?Gordon Bell2009-04-28T22:25:30Z2009-04-28T22:41:11Z<p>See if this works better... Or maybe a distinct inner join?</p>
<pre><code>select a.*,
(select top 1 g.Lat from GIS_Location g where g.City = a.City and g.State = a.State) as Lat,
(select top 1 g.Lon from GIS_Location g where g.City = a.City and g.State = a.State) as Lon
from Address_Location a
where a.ID in (select top 100 ID from Address_Location order by ID desc)
</code></pre>
<p>As for the scalar function performance, I'm not sure.</p>
http://stackoverflow.com/questions/770084/response-writefile-pdf-files-corrupted-files/770124#7701240Answer by Gordon Bell for Response.WriteFile PDF files - corrupted filesGordon Bell2009-04-20T21:15:37Z2009-04-20T21:15:37Z<p>For this situation, a Response.Redirect should work just as well:</p>
<pre><code>FileInfo file = new FileInfo(Path.Combine(_module.FileDir, _file.FilePath));
Response.Redirect(file.FullName);
</code></pre>
http://stackoverflow.com/questions/757470/best-way-to-edit-pdfs/757557#7575571Answer by Gordon Bell for Best way to edit PDF'sGordon Bell2009-04-16T18:56:10Z2009-04-16T18:56:10Z<p>Nitro PDF<br />
<a href="http://www.nitropdf.com/" rel="nofollow">http://www.nitropdf.com/</a></p>
http://stackoverflow.com/questions/752145/use-a-custom-thousand-separator-in-c/752190#7521900Answer by Gordon Bell for Use a custom thousand separator in C#Gordon Bell2009-04-15T15:18:55Z2009-04-15T15:18:55Z<p>Easiest way... </p>
<p>num.ToString("### ### ### ### ##0.00")</p>
http://stackoverflow.com/questions/707328/quick-way-to-backup-sql-sp-and-functions/707348#7073481Answer by Gordon Bell for Quick way to backup SQL SP and Functions?Gordon Bell2009-04-01T21:08:37Z2009-04-01T21:08:37Z<p>1) Right-click on your Database name in the Object Explorer</p>
<p>2) Select "Tasks > Generate Scripts..." from the Context menu</p>
<p>3) Select your Database in the list and click Next</p>
<p>4) Click Next on the Chose Script Options</p>
<p>5) In Object Types, check Stored Procedures and User-defined functions, click Next</p>
<p>6) Click Select All on the Stored Procedures selection screen, click Next</p>
<p>7) Click Select All on the Functions selection screen, click Next</p>
<p>8) Select 'Script to New Query Window' and click Finish</p>
http://stackoverflow.com/questions/678900/mystery-having-clause/678910#6789101Answer by Gordon Bell for Mystery HAVING clause.Gordon Bell2009-03-24T19:34:33Z2009-03-24T19:39:50Z<p>Possible if field value is set to spaces...</p>
<p>VBA:</p>
<pre><code>Dim x As String
x = " "
MsgBox "x = " & Format(x, "0000000") & " : Len(x) = " & Len(Format(x, "0000000"))
</code></pre>
http://stackoverflow.com/questions/1739689/most-efficient-way-to-store-number-11-111-in-sql-server/1739710#1739710Comment by Gordon Bell on Most efficient way to store number 11.111 in SQL ServerGordon Bell2009-11-16T02:27:55Z2009-11-16T02:27:55Zyes, so smallmoneyhttp://stackoverflow.com/questions/1668532/what-does-mean-in-tsqlComment by Gordon Bell on What does =+ mean in (T)SQL?Gordon Bell2009-11-03T16:41:33Z2009-11-03T16:41:33ZRemove the +, it serves no purpose.http://stackoverflow.com/questions/1494829/override-asp-net-form-tag/1494851#1494851Comment by Gordon Bell on Override asp.net form tagGordon Bell2009-09-29T20:52:24Z2009-09-29T20:52:24Z+1 ;-) Hey it works.http://stackoverflow.com/questions/1488599/simple-robocopy-script-to-backup-a-harddrive-not-working/1488703#1488703Comment by Gordon Bell on Simple robocopy script to backup a harddrive not workingGordon Bell2009-09-28T19:51:11Z2009-09-28T19:51:11ZYes, don't use /MIR unless you want a mirror copy. The /SL is your problem. It's following/backing up the symbolic links, which you don't want.http://stackoverflow.com/questions/1439151/how-can-i-extract-string-foo-from-a-string-foomail-com/1439171#1439171Comment by Gordon Bell on How can I extract string 'foo' from a string foo@mail.com?Gordon Bell2009-09-17T14:28:21Z2009-09-17T14:28:21Z@StampeedXV, for a@b.com, charindex returns 2, not 1.http://stackoverflow.com/questions/1435269/alphabetize-list-from-query-with-specific-associated-row-selected-in-dropdown/1435339#1435339Comment by Gordon Bell on Alphabetize list from query with specific associated row selected in dropdownGordon Bell2009-09-16T20:44:41Z2009-09-16T20:44:41ZSort values are backwards for Users Location to appear first.http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962109#962109Comment by Gordon Bell on What is the worst programming language you ever worked with?Gordon Bell2009-09-11T18:21:03Z2009-09-11T18:21:03Z@rtperson, RENUM 100 100http://stackoverflow.com/questions/1296785/how-to-group-data-into-buckets-in-microsoft-sql/1296808#1296808Comment by Gordon Bell on How to group data into buckets in Microsoft SQLGordon Bell2009-08-19T17:34:19Z2009-08-19T17:34:19Zchange "FROM MYTABLE)" to "FROM MYTABLE) T"http://stackoverflow.com/questions/1296785/how-to-group-data-into-buckets-in-microsoft-sql/1296805#1296805Comment by Gordon Bell on How to group data into buckets in Microsoft SQLGordon Bell2009-08-19T17:33:40Z2009-08-19T17:33:40ZRichard's query should work, change the "FROM MYTABLE)" to "FROM MYTABLE) T"http://stackoverflow.com/questions/906354/how-to-zip-files-in-vb-net-2005/906364#906364Comment by Gordon Bell on how to Zip files in vb.net 2005Gordon Bell2009-07-27T19:30:10Z2009-07-27T19:30:10ZDotNetZip is actively being improved on CodePlex, and simplifies some methods over SharpZipLib.http://stackoverflow.com/questions/869164/sql-join-condition-ab-or-reverse-to-ba/869378#869378Comment by Gordon Bell on SQL join condition A=B or reverse to B=A?Gordon Bell2009-05-15T16:05:09Z2009-05-15T16:05:09ZExcept if using LINQhttp://stackoverflow.com/questions/869164/sql-join-condition-ab-or-reverse-to-ba/869178#869178Comment by Gordon Bell on SQL join condition A=B or reverse to B=A?Gordon Bell2009-05-15T15:07:14Z2009-05-15T15:07:14Z+1 You're not the only one. And yes, LINQ requires the second format.http://stackoverflow.com/questions/726908/linq-over-stored-procedures/726966#726966Comment by Gordon Bell on Linq over Stored ProceduresGordon Bell2009-04-07T18:17:38Z2009-04-07T18:17:38Z+1 Beat me, that's just what I was typing...http://stackoverflow.com/questions/707328/quick-way-to-backup-sql-sp-and-functions/707337#707337Comment by Gordon Bell on Quick way to backup SQL SP and Functions?Gordon Bell2009-04-01T22:22:17Z2009-04-01T22:22:17ZYou can script Data with Tables... On the Generate Scripts Options screen, set the 'Script Data' option to True.http://stackoverflow.com/questions/659581/replace-giant-switch-statement-with-what/659609#659609Comment by Gordon Bell on Replace giant switch statement with what?Gordon Bell2009-03-18T19:05:10Z2009-03-18T19:05:10ZYeah, probably better to make the tokens slightly more complex, like "[%color%]".