Ode to My Mouse
Friday, November 30, 2007I return from the heathen wilderness of touchpads
To the glory of your navigational precision.
Ode to My MouseFriday, November 30, 2007I return from the heathen wilderness of touchpads To the glory of your navigational precision. Good IntentionsI hardly ever do the stuff I mention. Seems that I should realize, But I thought of the greatest thing last night! - to the tune of "Good Intentions" by Toad the Wet Sprocket Labels: To the Tune of How to retrieve the RETURN value from a stored procedure in .NETWednesday, November 21, 2007(Pretend you have an open SqlConnection called "conn".) SqlCommand sqlCommand = new SqlCommand("webmail_getMessageCount"); sqlCommand.Connection = conn; sqlCommand.CommandType = CommandType.StoredProcedure; SqlParameter messageCount = new SqlParameter("@count", SqlDbType.Int); messageCount.Direction = ParameterDirection.ReturnValue; sqlCommand.Parameters.Add(messageCount); sqlCommand.ExecuteNonQuery(); return (int)messageCount.Value; Labels: ASP.NET, SQL Server, SQL Server - Scripts Delphi Dichroic Slide Fusing ResultsSaturday, November 10, 2007Dichroic slides vary wildly in color depending on the background glass, and the result looks nothing like the unfused foil. High Cyan / Copper Red ![]() Rainbow ![]() Magenta Green ![]() Clear Red ![]() Cyan / Copper ![]() Blue Gold ![]() Labels: Art - Glass - Fusing Microsoft Log ParserWednesday, November 7, 2007I wished therefore not to use an environment variable. I tried specifying the full path to the executable in my call to xp_cmdshell, with and without quotes. No dice. I finally hit upon using the DOS "short names" (the ancient 8.3 names from the bad old days of Windows), which works. Presuming the default installation location (c:\Program Files\Log Parser 2.2), the DOS short path is c:\PROGRA~1\LOGPAR~1.2\LogPar~1.exe on an x86 server, and c:\PROGRA~2\LOGPAR~1.2\LogPar~1.exe on an x64 server (Progra~2 is the "Program Files (x86)" directory). Labels: SQL Server |
|||