Archive for February, 2009
T.I. Road to Redemption – A surprising production from MTV
0
Once in a while, a TV station like MTV who has previously been known to do nothing but reality shows that are geared to the lowest common denominator and of the poorest taste considering the day and age that we live in, will break through and provide something to the viewing audience that really shows that it’s a station that not only has star power through it’s ability to command any Hollywood star, but also to leverage those contacts to produce something really worthwhile.
Error when installing SQLTools
0When you first install SQLTools, you receive an error message:
SQLTools.exe – Unable to Locate ComponentThis application has failed to start because OCI.dll was not found. Re-installing the application may fix this problem.

Inserting string with an Apostrophe in MSSQL
0When you try to use an insert statement in MSSQL and the string contains an apostrophe, such as:
insert into test_table set destinationfield = ‘Sometime’s’ where id = 1
Obviously test_table equals the table that holds the data, destinationfield equals the field in the table that is going to get updated, and id would equals the unique identifier of the row that is going to be changed. When you try and run this you will always get a SQL error. To get around this, you want to use double quotes:
insert into test_table set destinationfield = ‘Sometime”s’ where id = 1
You’ll notice that in the first example there is only one single quote at the end of the string. Just adding another single quote will allow the insert to go through.