Viewing 15 posts - 106 through 120 (of 141 total)
ya it was working fine
but why u and jef told don't use cursor
March 20, 2012 at 6:13 am
CREATE FUNCTION [dbo].[Split](@String varchar(8000), @Delimiter char(1))
returns @temptable TABLE (items varchar(8000))
as
begin
declare @idx int
...
March 17, 2012 at 9:54 pm
alter PROCEDURE [dbo].[SP_Searchengine]
@VALUES varchar(8000)
AS
BEGIN
create table solution
(
AdSpaceId int,
AdInfoId int,
BusinessName varchar(200),
AdSpaceName ...
March 17, 2012 at 12:31 pm
Thanks,
Jared
SQL Know-It-All for u job s for me and i inform u solved this problem by using...
March 16, 2012 at 1:49 pm
thanks for every one who joined in this discussion i just solved this problem by creating cusor in my store procedure
March 16, 2012 at 1:43 pm
no i don't nead join query
March 16, 2012 at 7:19 am
iam just using that value one by one for searching
a name in a another table iam using like %+@value+%
March 16, 2012 at 6:55 am
sorry one question but we can have loop it also possible or not in sql server
March 15, 2012 at 3:17 pm
iam not getting proper loop structure thats why i posted two three post
and sorry for your inconvience
March 15, 2012 at 1:46 pm
how it will work please tell me
March 15, 2012 at 1:26 pm
i execute ur store procedure like this
EXEC [dbo].[CategoryName]
@VALUES = N'the sep'
in execution i used two words the and sep
i know there...
March 14, 2012 at 3:19 pm
how to use this
Full-Text Search (SQL Server)
in my select query
iam not getting the point in reading this related article
March 12, 2012 at 3:59 am
Select *
from tblAdSpace s
join tblMembers m on m.MemberId=s.MemberId
join tblAdInfo i on s.AdSpaceId=i.AdSpaceId
join tblAdBlock b on s.AdSpaceId=b.AdSpaceId
join tblAdContactInfo INF ON INF.AdInfoId=i .AdInfoId
join tblApplicableCategories ACS ON ACS.AdInfoId=...
March 12, 2012 at 2:59 am
i used that inside my store proc but iam not getting clear output
alter PROCEDURE [dbo].[SP_InsertGrabberDetails1]
(
--@TotalBlocks ...
March 11, 2012 at 5:08 am
Viewing 15 posts - 106 through 120 (of 141 total)