Viewing 15 posts - 18,886 through 18,900 (of 26,490 total)
It would help if you could also post the DDL for the table(s), sample data, expected results based on the sample data.
If you need help with this, please read and...
September 11, 2009 at 10:33 am
I use CHAR(13) + CHAR(10) when I need to insert a sequence in a string.
September 11, 2009 at 9:47 am
To be honest, I don't know how to your questions as there is very little real information in any of your posts. All I know is some scheduled job...
September 11, 2009 at 9:45 am
Sorry, tired eyes. I read your post wrong. First, it would help to see the actual error message. Second, it would also help if you would post...
September 11, 2009 at 9:42 am
A little hard to help you. It would help if you could provide the DDL for the tables, sample data that is representative (made up) of your actual data,...
September 11, 2009 at 9:32 am
I have to agree with Seth. there really isn't enough information in your post to really help you. If you could provide your code, DDL for the tables,...
September 11, 2009 at 8:42 am
Silverfox (9/11/2009)
September 11, 2009 at 8:27 am
vallolet04 (9/10/2009)
ALTER FUNCTION fn_ImporteconDescuentoFinal (@Importe float(8),@Cliente varchar(10))
RETURNS...
September 10, 2009 at 3:34 pm
Zaza (9/10/2009)
I've tried addingand Tablename = 'SALE' in my query but if a sale does not have a memo, it will disregard the sale alltogether
Thanks for your help though
Please show...
September 10, 2009 at 3:21 pm
What database are you in when you run the ALTER DATABASE?
September 10, 2009 at 3:17 pm
Dave Ballantyne (9/10/2009)
Select top 1 * from rates where end_date >= Inputdate order by end_date
Based on the sample data, I'd drop the = from the >= in the where clause.
September 10, 2009 at 12:29 pm
I'm not sure about this at all. It has been a while since I was in a database class, but I seem to remember in most of them that...
September 10, 2009 at 12:09 pm
Not having anything with which to test it, I think this is what Jeff was thinking:
ALTER FUNCTION fn_ImporteconDescuento (@Importe float(8),@Cliente varchar(10))
RETURNS Float(8)
AS
BEGIN
Declare @AuxImporte Float(20);
...
September 10, 2009 at 12:54 am
How does the id tie into this? From what I can tell it is nothing more than a row identifier. Am I wrong?
September 10, 2009 at 12:36 am
Viewing 15 posts - 18,886 through 18,900 (of 26,490 total)