Viewing 15 posts - 1 through 15 (of 50 total)
/*Problem here is that we don't know what you have done on your own to answer this question as you don't say anything in that regard. In addition, your initial...
March 6, 2012 at 10:02 pm
I guess we can also use unique not null to enforce referential integrity
sorry if i am wrong
March 6, 2012 at 5:27 am
Please do not comment without knowing the fact that whether i have googled or not.
i thought that the experts in sqlservercentral would give me a better clear answer thats y...
March 6, 2012 at 5:16 am
as far as i have understood,
we are making unique key to behave as primary key by enforcing not null constraint on it.
by default clustered index is created on a primary...
March 6, 2012 at 5:13 am
Thank you for your reply.
Sqlservercentral is best place to post this question.
Kindly help me out.
March 6, 2012 at 4:52 am
homework..
i want to know the basic performance difference between them.
March 6, 2012 at 4:45 am
yes i tested it.It worked fine.Before using it,i wanted sqlexperts to check and confirm the script.
February 10, 2012 at 6:31 am
I wanted someone to confirm that the query posted by me will display parent procedure.
February 9, 2012 at 3:22 am
didnt get reply for >2 days.thats y posted it here.
Thanks for replying..!
February 4, 2012 at 7:21 am
declare @objid as int
select @objid=object_id from sys.objects where name='substitute your Procedurename'
if exists(select id from sysdepends where depid=@objid)
begin
select name as ParentProcedure from sys.objects where object_id in
(select id from sysdepends where depid=@objid)
end
else
begin
print...
February 2, 2012 at 10:29 pm
after seeing sp_executesql in sqlservercentral homepage,I started searching about it.
January 31, 2012 at 4:09 am
Viewing 15 posts - 1 through 15 (of 50 total)