Viewing 6 posts - 46 through 51 (of 51 total)
Sorry, missed it!
Why does the below code not replace the value with 100? Not sure what I'm doing wrong. The value still remains 50 after modify().
declare @xml xml
select @xml =...
March 24, 2009 at 8:40 am
The explaination should have been:
Since col2 is used in the WHERE clause and happens to be a null value and since null cannot be compared to other values, the col1...
March 23, 2009 at 11:11 pm
create table test (id int,countries varchar(25))
insert into test values(100,'IN, AU, GB, FR')
insert into test values(101,'GB, FR, IN')
insert into test values(102,'IN, AU')
insert into test values(103,'AU, GB')
insert into test values(104,'GB, FR, IN,...
March 11, 2009 at 12:30 am
1) use master
select * from sysobjects so where name like 'sysconst%'
go
2) use master
select * from sys.all_objects where name like 'sysconst%'
go
these two worked. thanks!!!
March 11, 2009 at 12:08 am
Sorry, this is the wrong forum for this question, but still.. any answers???
November 5, 2008 at 6:18 am
Viewing 6 posts - 46 through 51 (of 51 total)