Volleynerd Knowledge Base |
Volleynerd's Things to Remember
Hot TopicsFirefox Extensions
DVD issues (latest)
Site Feed (Atom) Archives here
February 2016
January 2016 November 2015 August 2014 February 2014 January 2014 December 2012 December 2011 August 2011 April 2011 March 2011 February 2011 December 2010 November 2010 September 2010 August 2010 May 2010 March 2010 January 2010 December 2009 October 2009 September 2009 August 2009 July 2009 May 2009 April 2009 February 2009 January 2009 December 2008 November 2008 September 2008 August 2008 July 2008 June 2008 May 2008 January 2008 December 2007 November 2007 October 2007 September 2007 August 2007 July 2007 May 2007 March 2007 February 2007 January 2007 December 2006 November 2006 October 2006 September 2006 August 2006 July 2006 June 2006 May 2006 April 2006 March 2006 February 2006 January 2006 December 2005 November 2005 October 2005 September 2005 August 2005 July 2005 June 2005 May 2005 April 2005 March 2005 February 2005 January 2005 December 2004 November 2004 October 2004 September 2004 August 2004 July 2004 June 2004 May 2004 April 2004 March 2004 February 2004 January 2004 December 2003 November 2003 October 2003 September 2003 August 2003 July 2003 June 2003 May 2003 April 2003 March 2003 February 2003 January 2003 December 2002 November 2002 October 2002 September 2002 August 2002 July 2002 June 2002 May 2002 April 2002
|
Wednesday, December 29, 2004
Microsoft HP Superdome -- SQL Server Hardware Cool video clip from the Channel9 team showing the MS SQL Server "HP Superdome". Something like a terabyte of RAM, 2500 hard drives, etc. Euan Garden - Tour of SQL Server Team (Part III) Posted 9:39 PM | 0 comments | Permalink ![]() How to configure wireless bridge device for things like XBox, when you have WEP encryption turned on, need MAC address, etc. Basically, temporarily plug the device into your PC, and use the software provided (sometimes just a browser) to hit the device and configure it. Once configured, unplug it, and take it to the xbox. Google Groups : microsoft.public.xbox.halo Posted 5:22 PM | 0 comments | Permalink ![]() Tuesday, December 21, 2004
Pretty simple, yet addicting game. Throw paper balls into the trash can, accounting for wind direction. :::: Throw Paper :::: Posted 8:23 PM | 0 comments | Permalink ![]() Monday, December 20, 2004
CheckHD.com - Check Programming Another HD info site - this one with a pretty good programming grid. Doesn't show in order of channels, but shows which programs are in HD and which are not. CheckHD.com - Check Programming keywords: HD high def hidef progrmming channel lineup Another TV Listings site that's got good HD info. Unfortunately, takes a lot of work to customize channel lineup to delete unwanted channels, etc. TitanTV.com Posted 9:36 PM | 0 comments | Permalink ![]() Wednesday, December 15, 2004
SQL Server -- BCP pads with spaces on import Spent WAY too much time today figuring out why my BCP import was putting spaces in my varchar columns. Still not sure I have it completely figured out, but sounds like it's by design. The ANSI_PADDING setting is honored when a table is **created**, and will dictate what happens when data is inserted into varchar columns. Seems odd that this setting is saved from when the table is created, not when the data is being inserted. I ended up having to do a brute force method. After BCP import, I go through the columns, and rtrim them. Have to watch out for a column that had no data, so rtrim leaves a single space? Something like this: osql -E -d Sales -Q "update orderdetail set PONum = rtrim(PONum)" Google Groups : microsoft.public.sqlserver.server Posted 3:33 PM | 0 comments | Permalink ![]() Wednesday, December 08, 2004
Slow or Delayed Screen Updates After Reconnecting to Remote Desktop Have seen this occasionally on my work machine, and now on the Build box at work. Slow or Delayed Screen Updates After Reconnecting to Console Session keywords: slow delayed response reconnect remote desktop Posted 12:44 PM | 0 comments | Permalink ![]() Tuesday, December 07, 2004
SQL Statement Fails when call through OpenQuery Ran into this today at work. Building up a string that is the SQL statement to pass to openquery. Since the sql statement is calling a stored proc, and has params in it, it needs quotes itself to surround string based params. When calling the SP directly on the server, it works fine. When called through OPENQUERY, it fails. Turns out when using OpenQuery, SQL makes an extra call of "SET FMTONLY ON" to get metadata info about the resultset. This FMTONLY setting blows up the execution of the sql statement. Workaround: use 4-part name to call the SP, not through OpenQuery. Issue: have to turn on "RPC OUT" on the linked server setup to get the remote exec SP to work. PRB: T-SQL Function OpenQuery Fails to Execute on Linked Servers Posted 10:47 AM | 0 comments | Permalink ![]() Monday, December 06, 2004
SQL: Pass a Variable to a Linked Server Query Just some info on quoted identifiers and concatenating strings in SQL. HOW TO: Pass a Variable to a Linked Server Query Posted 4:34 PM | 0 comments | Permalink ![]()
|