Jugadu Developer
Jugad: To arrange for something that will help accomplish a particular task.
Thursday, 6 May 2010
Full text details using TSQL
SELECT name, path, is_default, is_accent_sensitivity_on
FROM sys.fulltext_catalogs
-- full text index details
SELECT object_name(object_id) table_name, change_tracking_state_desc
FROM sys.fulltext_indexes
-- full text index columns details
SELECT distinct ixc.object_id, object_name(ixc.object_id) tblname, col.name, ixc.*
FROM sys.fulltext_index_columns as ixc
INNER JOIN sys.columns as col ON ixc.object_id = col.object_id AND ixc.column_id = col.column_id
ORDER BY col.name
Friday, 26 March 2010
SQLDBTools - Tools
SQL Server 2005 database schema comparison
At last my search to find a good quality free database comparison tool is now over.
Worth a try: SQLDBTools - Tools
Tuesday, 23 March 2010
SQL Server 2005 Database comparision
http://www.sqldbtools.com/Downloads.aspx?ProductId=1
Best free database comparison tool.
Wednesday, 21 October 2009
Searching stored procedure code
select name, charindex('text to search',object_definition(object_id)), object_definition(object_id)
from sys.procedures where charindex('text to search',object_definition(object_id)) > 0
Monday, 17 August 2009
TSQL IsNumeric not working correctly
http://classicasp.aspfaq.com/general/what-is-wrong-with-isnumeric.html
Friday, 17 July 2009
DataContext object serialization: Circular reference issue
Sunday, 28 June 2009
SongBird - Open Source Music Player
The Open Music Player
Songbird is an open-source customizable music player that's under active development.
We're working on creating a non-proprietary, cross platform, extensible tool that will help enable new ways to playback, manage, and discover music. There are lots of ways to contribute your time to the project. We'd love your help!
There are several features we're proud of, but we'll be the first to admit that others need ironing out, are experimental, or are just plain missing. There's still a lot to do.
Note: I copied above description from SongBird website.
I use VLC Player for videos and music. VLC Player is very good as a video player, but is a very basic music player. Therefore, I started looking for an open source music player and found SongBird. I am going to give it a go and see if it works for me...