We’ve all said this before when someone ask you a question, “Just google it”. Now this is a song about Google to go with that.
Filed under: News | Leave a Comment »
We’ve all said this before when someone ask you a question, “Just google it”. Now this is a song about Google to go with that.
Filed under: News | Leave a Comment »
Here is a great articles that I came across that explains in detail on how to select a minimum value from a column based on a particular filtering option.
The example listed here was how to select the cheapest price for the different categories of fruits.
http://www.xaprb.com/blog/2006/12/07/how-to-select-the-firstleastmax-row-per-group-in-sql/
Filed under: SQL Server | Leave a Comment »
Google have put their webinar on analytics, webmaster and website optimaser on Youtube. It’s a really good webinar that explains the 3 tools, and really good if you are just starting to use these Google web tools.
Filed under: Search & SEO | Leave a Comment »
A little useful script for searching in stored procedures.
SELECT OBJECT_NAME(id)
FROM syscomments
WHERE [text] LIKE ‘%searchtext%’
AND OBJECTPROPERTY(id, ‘IsProcedure’) = 1
GROUP BY OBJECT_NAME(id)
Filed under: SQL Server, Uncategorized | Leave a Comment »
This is something that I just found out existed today, probabily due to my lacking of actually going through the tool bar.
In SQL Server 2005, in the design view of table, usually you can perform a number of changes here like adding a new column, changing the column size etc, if you were performing these [...]
Filed under: SQL Server | Tagged: Generate Script, SQL Server | Leave a Comment »
Lately I’ve been doing some reading on javascript and JQuery. This article here isĀ really good in explaining how the function in javascript works, and how you can use it as an object, override functions and other other really helpful information.
http://www.permadi.com/tutorial/jsFunc/
Filed under: Javascript, Uncategorized | 1 Comment »