Viewing 15 posts - 1 through 15 (of 42 total)
Bcz i want to put the result of the stored proc into "dbo.INFORMATION" table.but it is giving me an error "unable to begin a distributed transactions" when i run...
August 21, 2013 at 4:26 pm
But ,How we can do with a computed column?.
March 7, 2013 at 12:56 pm
I was trying to use this one.Is this right?
UPDATE #th
SET FLAG= CASE WHEN B.day2 is null then 'NO'
else 'YES' end
from #th A
left join ( select distinct...
November 5, 2012 at 4:36 pm
any help on this would be great.
September 27, 2012 at 3:10 pm
thanks for code.but it is giving me error Msg 536, Level 16, State 2, Line 3
Invalid length parameter passed to the RIGHT function.
I think it is beause in there are...
September 10, 2012 at 2:28 pm
I have a table name Test_name.which has two columns full_name and nick_name.I have values only in full_name where as Nick_name column is blank which i need to update as per...
September 10, 2012 at 1:33 pm
create table test (adress varchar(100),[Convert_to_format] nvarchar(100),mask varchar(100),Net nvarchar(100))
insert into Test values ('NK00:976a:c305:bef8:575c:646d::0:a/127' ,'',127,'')
,('2012:0DB8:AC10:FE01::/64','',64,''),
('NK00:976a:c305:bef8:575c::0:56/16','',16,'')
and this is result i want.
insert into Test values ('NK00:976a:c305:bef8:575c:646d::0:a/127','NK00:976a:c305:bef8:575c:646d:0000:000a',127,'NK00:976a:c305:bef8:575c:646d:0000:0000'),
('2012:0DB8:AC10:FE01::/64','2012:0DB8:AC10:FE01:0000:0000:0000:0000',64,'2012:0DB8:AC10:FE01:0000:0000:0000:0000'),
('NK00:976a:c305:bef8:575c::0:56/16','NK00:976a:c305:bef8:575c:0000:0000:0056',16,'NK00:0000:0000:0000:0000:0000:0000:0000')
July 23, 2012 at 2:44 pm
Adress is IPadress and net is output after combining.
July 23, 2012 at 2:08 pm
looking into this.
July 17, 2012 at 11:04 pm
Viewing 15 posts - 1 through 15 (of 42 total)