Heres a mind twister for you all that I cant figure out yet..
Backend: Ms sql 2005
Example:
DECLARE @TABLE TABLE ([COLUMN] DATETIME)
INSERT INTO @TABLE([COLUMN]) VALUES('1/1/2007')
INSERT INTO @TABLE([COLUMN]) VALUES('2/1/2007')
INSERT INTO @TABLE([COLUMN]) VALUES('3/1/2007')
INSERT INT...
more >>
Hi Everybody,
I had created a stored procedure wherein i had passed the parameter
contains(tablecolumnname,searchstring)
It is working very fine except
if the search string is carrying "-" character.
Let me explain the problem.
if the parameter is
((contains(col1,'"abcd*" '))) then it will ...
more >>
Is there a way to create a relationship between the views in a
database.
More like a Primary - Foreign key relationship like you would do for
Tables.
...
more >>