Three Network should make Skype client better and allow to use Wifi.

Three has done very good job by providing free skype to skype calls but
it they make their client better and allow that client to use wifi then
it will mean alot to three customers. Also they must allow video chat
when three customers are connected to Wifi.Three Network should make
Skype client better and allow to use Wifi.

Skype client for Three network needs improvement as it shows you
Instant Messages (IM) very late. Also writing message is pain. We need
a better skype client which must be user friendly.


I Wan to share this post:
  • Digg
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • kick.ie
  • Live
  • MyShare
  • IndianPad
  • Reddit
  • StumbleUpon
  • Technorati
  • YahooMyWeb
  • DotNetKicks
  • DZone
  • TwitThis

Find occurrence of object in a database using sql script


Following is very useful script which will give you occurrence of object or will tell you where you have used the object like database field, table name, view, function or stored procedure in your database.

SELECT
so.name,
so.TYPE,
sc.TEXT
FROM
sysobjects so
INNER JOIN syscomments sc
ON so.id = sc.id
WHERE  sc.TEXT LIKE ‘%[Field Name,Stored procedure name etc]%’
AND so.id IN (SELECT
so.id
FROM
sysobjects so
INNER JOIN syscomments sc
ON so.id = sc.id
WHERE  sc.TEXT LIKE ‘%[Table name, view name etc.]%’)


I Wan to share this post:
  • Digg
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • kick.ie
  • Live
  • MyShare
  • IndianPad
  • Reddit
  • StumbleUpon
  • Technorati
  • YahooMyWeb
  • DotNetKicks
  • DZone
  • TwitThis