Click here to Skip to main content
16,004,505 members

Comments by shajis001 (Top 12 by date)

shajis001 5-Jan-15 7:07am View    
Mehdi one small help how to add all records at a time, if i am adding that will take time i think so.

Can you clear my point.
shajis001 5-Jan-15 7:06am View    
create table #temp_table
(
id int
)

insert into #temp_table values (1)

select id from #temp_table

Select id from product where id in ( select id from #temp_table )
shajis001 5-Jan-15 6:52am View    
I have records in excel sheet and i made as a csv value So i want to get the value not in excel sheet.

Category ways is not possible in my case category is not mentioned in raw data
shajis001 5-Jan-15 6:47am View    
is there any way to divide to multiple pices and execute query so that it will make good result.any suggestion.
shajis001 5-Jan-15 6:45am View    
colums are indexed. I have rebuild all indexes.

NOT IN is good but that also taking time,because ratio of both are same.