Viewing 11 posts - 1 through 11 (of 11 total)
Sorry Dear, but this is also not working.
June 1, 2010 at 6:34 am
Paul,
I appreciate your help. But i can't change table definition. this is just an example. i want to apply this logic in my live environment SP. It's already very complicated....
May 25, 2010 at 4:07 am
Friends,
Thanks a lot for all your help and giving your precious time behind this stuff.
I am posting one more stuff related this stuff in same forums TSQL(SS2K5). If possible please...
May 25, 2010 at 2:55 am
I think this is work...
SELECT
'Order_No' = CASE WHEN C.Row_No = 1 THEN CONVERT(VARCHAR(20),C.Order_No) ELSE ' ' END,
'Name' = CASE WHEN C.Row_No = 1 THEN C.Name ELSE '' END,
'Total_Cnt'...
May 24, 2010 at 7:31 am
For use delete cascade use following Create table script...
CREATE TABLE test_child
(SUB1 INT,
[NO] int,
FOREIGN KEY ([NO]) REFERENCES Test_parent
...
April 29, 2009 at 5:25 am
Thanks for the valueable reply.
My requirement is to call this function approximately 2000 times in a hour from front end system, will it serve purpose, or still i need look...
October 18, 2008 at 4:00 am
Hi Andras:
Thanks for your reply.
In SQL 2000 we had a field called "schema_ver" in sysobjects which changes whenever any alteration occurs to any object. Is there any equivalent system object field...
September 20, 2007 at 12:18 am
Hi Andras:
Thanks for your reply.
In SQL 2000 we had a field called "schema_ver" in sysobjects which changes whenever any alteration occurs to any object. Is there any equivalent system object field...
September 19, 2007 at 4:37 am
Viewing 11 posts - 1 through 11 (of 11 total)