Viewing 9 posts - 16 through 24 (of 24 total)
I leave office around 10 in night and not able to go to bed before 12. Due to this its late in the morning. How can I do any excercise...
August 8, 2008 at 5:05 am
you have stuffed spaces thats why this sql is not working properly, but this is only the logic, it does not meant that it will work with all the possible...
August 1, 2008 at 6:04 am
Create table temp222 (ID Int identity(1,1),Skilltype varchar(1000))
go
INSERT INTO TEMP222 (Skilltype) select 'c, c++ (6),web development (6), java (3), unknown (21)'
INSERT INTO TEMP222 (Skilltype) select 'c# (15), design (12),windows (12),...
August 1, 2008 at 5:43 am
Sorry I written table temp222 instead of temp
select * from temp where ','+skilltype+',' not like '%,c,%'
August 1, 2008 at 5:37 am
Hi
Use this SQL
select * from temp222 where ','+skilltype+',' not like '%,c,%'
Thanks
Vaseem
August 1, 2008 at 5:35 am
Hi,
The two techniques are logically equivalent but can have vastly different performance hits depending on how the parser
plans the query.
Not where clause replace Join nor vice versa.
Where clause works on...
July 11, 2008 at 4:36 am
You can try DTS. Create a DTS for this and execute to transfer data.
-Vaseem
July 9, 2008 at 8:18 am
Hi
The best method to copy objects (with/without data) from one database to another I think is Import/Export method.
Thnx
Vaseem
July 4, 2008 at 6:48 am
Viewing 9 posts - 16 through 24 (of 24 total)