Volleynerd Knowledge Base

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)


Wireless Bridge for XBox


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



Tuesday, December 21, 2004

Throw Paper - Addicting Game


Pretty simple, yet addicting game. Throw paper balls into the trash can, accounting for wind direction.

:::: Throw Paper ::::



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



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)"

osql -E -d Sales -Q "update orderdetail set PONum = '' where PONum = char(0)"


Google Groups : microsoft.public.sqlserver.server



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



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



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



Home