Viewing 15 posts - 13,006 through 13,020 (of 15,381 total)
SteveBell (2/10/2012)
http://www.sqlservercentral.com/Forums/Topic1249017-146-1.aspx
When I read the OP, I...
February 10, 2012 at 12:13 pm
Well I have given my suggestions about the approach you are taking. I still think your approach is not the best but I guess we will have to agree to...
February 10, 2012 at 9:45 am
Another to consider with the multiple table approach, how will you find out where a stock item is at? The stock record will have a locationtypeid? This means then you...
February 10, 2012 at 9:26 am
river1 (2/10/2012)
I was thinking... in a situation where I want that a database column can only have data that is already on one of other three tables (like a FK),...
February 10, 2012 at 9:23 am
You are going to have to provide some level of detail in order for anybody to have a chance here. There just simply isn't enough information in your post. Take...
February 9, 2012 at 3:34 pm
You might look into replication. It is designed to keep databases in sync (and they don't all have to be sql server). Otherwise I think you may be stuck with...
February 9, 2012 at 2:08 pm
Don't group by date.
group by a.Itemkey, a.trandate, b.shortdesc, c.ItemId
February 9, 2012 at 1:42 pm
djustice 20821 (2/9/2012)
Example: there could...
February 9, 2012 at 1:27 pm
My guess is you have something else in your code that is running slow. I have used his parsing function in all sorts of ways and places and have never...
February 9, 2012 at 1:23 pm
Looks like the syntax is correct. Are you getting any error messages?
Also, an inline UDF like is prone to horrible performance if your resultset is anything more than a few...
February 9, 2012 at 1:21 pm
peter 82125 (2/9/2012)
February 9, 2012 at 1:16 pm
Anything in your trigger is also part of the transaction so it will be commited/rollback as well.
The best thing for you on questions like these is to throw some...
February 9, 2012 at 7:20 am
kiran.rajenimbalkar (2/9/2012)
Hi Professional,Just please tell me which HINT's i need to use in the mentioned above SQL for retrieving the data fast.
Regards,
Kiran
I can also suggest which hints you want to...
February 9, 2012 at 7:12 am
SQLback (2/8/2012)
SELECT Customer_Number FROM Table
WHERE Product_Number = 1
AND ...
February 8, 2012 at 4:16 pm
Viewing 15 posts - 13,006 through 13,020 (of 15,381 total)