Viewing 9 posts - 1 through 9 (of 9 total)
July 14, 2010 at 1:52 am
Thanks Mr. Bhuvnesh for your prompt reply.
But, how I can catter it if there are unlimited Contact_types? is it possible to write dynamic query for it ?
Shahbaz
July 14, 2010 at 1:00 am
Hi,
Thanks all of you for response and I have done this seccessfuly. once again thanks.
Shahbaz
August 26, 2008 at 4:36 am
As you know that INSERTED and DELETED tables do not retrieve the values of text, ntext and image types, and I want to make a generic procedure to create one...
July 31, 2008 at 2:33 am
SELECT * INTO #INS FROM INSERTED
it works fine.
I just want to run this query via EXEC command.
July 31, 2008 at 2:17 am
Dear Chris,
Thanks a lot for your help; its working fine now.
DECLARE @sql VARCHAR(4000)
SET @sql = ' SELECT * INTO #TEMP FROM CUSTOMERS;
SELECT * FROM #TEMP'
EXEC (@SQL)
Once...
July 28, 2008 at 6:36 am
Thanx for your prompt reply,
but plz can u give me an example?
July 28, 2008 at 6:17 am
Thanks all of you its working fine
July 27, 2008 at 9:46 pm
Viewing 9 posts - 1 through 9 (of 9 total)