Viewing 7 posts - 1 through 7 (of 7 total)
Hi
Thanks for your replay..
If you run my submitted code you will find decryption data is showing as NULL.
mean Data is encrypted but decryption is not happening
thanks,
Pritesh ...
April 27, 2010 at 9:52 am
Hi All,
Got Solution
DECLARE @Candidate table(
id INT IDENTITY(1,1),[Name] nvarchar(200), [Location] nvarchar(200),
Exp decimal)
insert into @Candidate
Select 'Pritesh Patel','Bangalor',2 union all
Select 'Balaji','Bangalor',4 union all
Select 'IRIN','Mumbai',2 union all
Select 'Manju','Bangalor',3 union ...
March 2, 2010 at 2:58 am
Hi,
i can use "inner join" or "subquery"
I use Subquery. there is no purpose to use specialy subquery.
thanks
Pritesh
March 2, 2010 at 2:36 am
DECLARE @Candidate table(
id INT IDENTITY(1,1),[Name] nvarchar(200), [Location] nvarchar(200),
Exp decimal)
insert into @Candidate
Select 'Pritesh Patel','Bangalor',2 union all
Select 'Balaji','Bangalor',4 union all
Select 'IRIN','Mumbai',2 union all
Select 'Manju','Bangalor',3 union all
Select 'Rajesh','Mumbai',2...
March 2, 2010 at 1:58 am
Hi Chris,
My above posted query is wroking fine. I have problem with order by Status.
I wand distinct CandidateIDs from Candidate and CandidateProject table where i want to give priority...
March 1, 2010 at 8:36 pm
Hi paul
If i create index on same table is there any thing wrong.. insted of view index.
Regards,
Pritesh
February 21, 2010 at 1:10 am
Viewing 7 posts - 1 through 7 (of 7 total)