Viewing 15 posts - 1 through 15 (of 15 total)
thank u very much coldcoffee:-)
hi Kingston Dhasian, Hope you are not compiled this..
April 13, 2010 at 3:48 am
One more help guys.
Is it possible to specify seed increment dynamically for identity column.
I tried as follow but still getting error. Can u plz hav a look.
create table #t1(ID numeric...
April 13, 2010 at 3:25 am
thanks joe
Sashi I asked to remove column identity property completely.. however thanks u too..
April 13, 2010 at 3:03 am
Grant Fritchey (3/3/2010)
March 3, 2010 at 11:05 pm
Thank u.. vidya_pande
Yes it is a particular table.
Could you tell me, how we can generate the particular table structure including the constraints through T_SQL.
cheers,
Asan
March 3, 2010 at 4:36 am
it may one of solution:
DECLARE @data NVARCHAR(MAX),
@delimiter NVARCHAR(5)
SELECT @data = '1,2,3,6,7,8,R,a,n,g,a,n,a,t,h',@delimiter = ','
DECLARE @textXML XML;
SELECT @textXML = CAST('<d>' + REPLACE(@data, @delimiter, '</d><d>') + '</d>'...
March 3, 2010 at 4:07 am
much of thanks Fazalul Haque n all..
nice effort..
got a solution..
February 15, 2010 at 4:29 am
I forgot to mention I need root path as well..
For example:
Take 'H' since it is least node. I need output like this A-B-F-H
February 15, 2010 at 3:51 am
I'd like to thank bdba n coldcoffe for their support 😛
February 4, 2010 at 2:31 am
thanks COldCoffee ..
how come we know the language .. which has been configured.?
I got it in msdn..
DBCC USEROPTIONS
for the above requirements.
February 3, 2010 at 9:32 pm
Chris Morris-439714 (12/8/2009)
Mohamed Asane (12/7/2009)
only if all the columns are contain the same value..
They are, aren't they?
hi,
Assume that TableA contain ID,name,score
ID '5' is having multiple records with same name but...
December 8, 2009 at 3:53 am
Hi,
--Chris
Your solution will eliminate duplicates, only if all the columns are contain the same value..
--Bergeron
your solution is fulfilling my requirement.
Thanking you both for giving such valuable solution..
December 7, 2009 at 11:58 pm
Viewing 15 posts - 1 through 15 (of 15 total)