Viewing 15 posts - 14,536 through 14,550 (of 15,381 total)
Please don't post the same question again. Please direct all replies to the original thread
June 14, 2011 at 8:10 am
Take a look at the top expression and order.
June 14, 2011 at 8:08 am
The other thing that will ALWAYS come into play somewhere along the line. Initially it sounds like a generic procedure to handle all the dml for lookup tables can be...
June 14, 2011 at 8:04 am
bcampbell-1136357 (6/13/2011)
June 13, 2011 at 2:59 pm
abhisheksrivastava85 (6/13/2011)
I want to update my flag column based on incoming row i.e if suppose...
June 13, 2011 at 1:24 pm
I am guessing that this can be converted to a set based solution and get rid of that horribly slow cursor RBAR logic. Post some ddl and sample data along...
June 13, 2011 at 1:21 pm
I agree 1000% with Dave that the database is not the place for this info. You will be kicking yourself when you either change domains or at some point add...
June 13, 2011 at 1:09 pm
I think you can incorporate the ROW_NUMBER from the other code thing you were working on a couple days ago. But not really sure how your data looks to be...
June 9, 2011 at 3:02 pm
If this is a one time update I would say that is probably the easiest way for you to handle it. If this is an ongoing process then you will...
June 9, 2011 at 2:39 pm
lgoolsby 86333 (6/9/2011)
1:
UPDATE invoices set numerator = CASE NUMERATOR WHEN NULL...
June 9, 2011 at 1:48 pm
fyi, you can run SELECT * FROM fn_helpcollations() to view all the available collations.
June 9, 2011 at 1:18 pm
kwoznica (6/9/2011)
Sean Lange (6/8/2011)
Sriram.RM (6/7/2011)
you can use Upper()/Lower() function to overcome issues related case sensitive issues or look at collation...
those functions won't help you unless you are in a...
June 9, 2011 at 1:17 pm
lgoolsby 86333 (6/9/2011)
My Table:
CREATE TABLE...
June 9, 2011 at 12:48 pm
the problem with using the Exists clause in this case is that there are duplicates in the source. Using the Not exists will eliminate those in the source that are...
June 9, 2011 at 8:52 am
You could change the datatype to date. Otherwise you need to another solution for a primary key.
June 9, 2011 at 8:37 am
Viewing 15 posts - 14,536 through 14,550 (of 15,381 total)