Viewing 15 posts - 15,076 through 15,090 (of 15,381 total)
You could just have another tab with the query and switch back to it. I guess it is a preference thing but i am not a big fan of switching...
December 22, 2010 at 2:31 pm
JStevenson1 (12/22/2010)
I have several value in a column called test.Select Statement: Select Test From Abc
Output: JonDoe
Desired Output: 'JonDoe'
How do I achieve desired output?
Are you wanting to add the single...
December 22, 2010 at 2:22 pm
Excellent! I can tell it is almost quitting time....for the rest of the year. 😛
December 22, 2010 at 2:17 pm
Jeff Moden has written some fantastic article on this site about doing that sort of thing. I think you would find his articles can get you the exactly what you...
December 22, 2010 at 2:13 pm
Your insert are bit of a problem because you are inserting the field ID which you have marked as the primary key and there are duplicates.
If I understand the...
December 22, 2010 at 2:04 pm
try something like this.
select item_num, pack, item_size, old_desc1, manufacturer_item_nbr, brand_name, opco_desc, flag, COUNT(distinct bid_price_old) as bidCount
from #mx
group by item_num, pack, item_size, old_desc1, manufacturer_item_nbr, brand_name, opco_desc, flag
December 22, 2010 at 1:29 pm
Doesn't sound too bad. Now if there were some table create scripts and some sample data people would be easily able to help you. If you help us help you,...
December 22, 2010 at 1:15 pm
You could just add select * from myTable to your open query window. 😉
In my experience the open table UI does not work very well. It is an editable grid...
December 22, 2010 at 1:03 pm
The OP has record counts as comments in the query. 95 million and 190 million.
December 22, 2010 at 9:31 am
If I am not mistaken will your statement check every record in the table?
update a
set a.physical_location
= cast(Replace(cast(b.physical_location as varchar(MAX)),''+@currLoc+'', ''+@newLoc+'') as ntext)
from tbl_out_messages b
join tbl_out_messages a
on a.email_id = b.email_id
where b.physical_location...
December 22, 2010 at 9:29 am
Given nearly 300 million records being inserted it is going to take a bit of time no matter how you slice it. Retrieving the data could be a bottleneck but,...
December 22, 2010 at 9:20 am
smadden-534358 (12/22/2010)
All of a sudden I am getting unexpected results.
this...
December 22, 2010 at 9:13 am
JMSM (12/22/2010)
So can you send me a query where i can see in the output the following information.
The spid xxx that is locking spid yyy for x min (for example...
December 22, 2010 at 8:29 am
This one too is really unclear what you are looking for. The one thing I can say for certain is there is no query that will tell how long a...
December 21, 2010 at 12:31 pm
Viewing 15 posts - 15,076 through 15,090 (of 15,381 total)