-
Recent Posts
Recent Comments
Archives
- December 2020
- May 2018
- April 2018
- January 2018
- October 2017
- April 2017
- February 2017
- January 2017
- November 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- May 2011
- April 2011
Categories
Meta
Monthly Archives: January 2012
Amazon Alternative to selling Book
Amazon.com is the best side to sell your books online. However amazon does charges you commission for every book sold. This could be hefty if you are selling a couple of book. There is an alternative site available. The Textbooks.org … Continue reading
Posted in Uncategorized
Leave a comment
What is the difference between null and ” (empty string)? Null is actually a value which means something is empty (confirmed empty not just left blank). ” mean a string that has not value in it. ALTER PROCEDURE test_null — … Continue reading
[Solved] Procedure or function xxx has too many arguments specified – ASP.NET
If you are getting this error in your .NET application (AsP.NET for example), it says obvious that you are passing too many parameters to the stored Procedure. However there is a scenario where this error actually makes you look in … Continue reading
Posted in Troubeleshoot
1 Comment
How to set automatic bid in Ebay?
To set automatic bid in ebay, login, go to the item you want to bid. Do not enter you bid yet. Click the bids link which show history of the bids. At the right bottom corner, enter your bid in … Continue reading
Posted in Uncategorized
1 Comment
System.Data.SqlClient.SqlException: Error converting data type varchar to float.
If you are getting the above .NET error, one reason for this is wrong case statement. Here is an example create table #table1 ( id int not null primary key identity, category varchar(10), amount float null ) insert into #table1 … Continue reading
Posted in Uncategorized
Leave a comment