fragment 3

    fragment 4

    fragment 4!

    fragment 4.

No categories

Site Updates

Redesigning my site!

I am  redesigning my website. It’s been the same for over a year now and it just needs some sprucing!
Sorry for the inconvenience, but most of the download links should work fine..
See you very soon…

Databases

Search all columns of all tables in a database

How to search all columns of all tables in a database for a keyword?
Credits to: Vyas
http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm
Here is the complete stored procedure code:

CREATE PROC SearchAllTables
(
@SearchStr nvarchar(100)
)
AS
BEGIN

– Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved.
– Purpose: To search all columns of all tables for a given search string
– Written by: Narayana Vyas Kondreddi
– Site: http://vyaskn.tripod.com
– Tested [...]

Programming

Error: Path for project must have only one segment

Even Though google shows 995,000 pages containg the text “Path for project must have only one segment” - None of them really explains what this error mean - Except if you look at the source code of WorkspaceRoot class, particularly ‘getProject’ method:
This problem usually occurs when you try to access a project  name/path,etc, when it [...]