Viewing 15 posts - 196 through 210 (of 229 total)
In Québec, we have to daily contend with two date formats mm-dd-yyyy (US English) and dd-mm-yyyy (French). I have repeatedly seen users confusing April 1 with January 4. So much...
July 19, 2013 at 8:32 am
Jeff:
Yet another sterling article!
I do not even need all the fingers on one hand to count the authors I have occasionally corresponded with.
You definitely stand out among the crowd.
And still...
July 19, 2013 at 8:24 am
Humm....
How do you "clean" a hex input ? convert it to string and also check the resulting string ?
June 27, 2013 at 12:38 pm
Even trying to parse the incoming string for DELETE, DROP TABLE, etc. is doomed to fail.
A sneakier attack uses HEX, such as 0x77616974666f722064656c61792027303a303a323027
What does that unreadable string mean...
June 27, 2013 at 10:30 am
In India
[font="Courier New"]Lakh 10^5 (100,000)
Crore 10^7 (10,000,000)[/font]
Seems so natural to original poster, but not to the rest of the...
May 31, 2013 at 8:49 am
I was used to ssql2k when I did not need no smelly semi-colons.
Not clear yet as to why this was added to the language.
And yes, you are right about where...
May 30, 2013 at 1:42 pm
Sean Lange:
Yes, both work. Since I inserted you cte solution after my own statements, I had to add a semi-colon before the "with GrandTotal as".
Thanks
May 30, 2013 at 1:25 pm
Sean Lange:
Actually, the following SQL
[font="Courier New"]
SELECT #INV.InvNo, #INV.Currency, #INV.Amount AS GrandTotal, #PAY.Paid
FROM #INV LEFT OUTER JOIN #Pay ON #Pay.InvNo = #INV.InvNo
ORDER BY #INV.Currency, #INV.InvNo
[/font]
Produces the following results set: Note...
May 30, 2013 at 1:15 pm
SQL_FS: And you are still a "Grasshopper" ?
Yes, it works, thanks for a speedy reply too.:-)
May 30, 2013 at 1:04 pm
Thank you so much for your help Jeff.
And yes, I was already aware of the Tally table. I must be one of your greatest fans.
Regards
April 12, 2013 at 9:16 am
Thanks for your answers so far.
As regards my front end, I have to use the reporting facilities of CRM (2011). I doubt its front end reporting is capable of extracting...
April 11, 2013 at 8:02 am
Excellent !
First the new features of VALUES.
Then the very good link provided.
First class.
Keep 'em coming.
February 27, 2012 at 1:18 pm
How do the newfangled Analytics functions compare with the Quirky Update method used for - among other things - creating running totals in term of performance ?
January 19, 2012 at 1:14 pm
Why bother ?
The two WHERE clauses are NOT equivalent. No need for test data. You do not code based on known test data.
The only valid answer is that the two...
July 25, 2011 at 2:21 pm
"it depends on the data" is true. but ...
The safe answer should be NO because it is obvious that the two WHERE clauses are not equivalent. An SQL statement should...
July 25, 2011 at 8:54 am
Viewing 15 posts - 196 through 210 (of 229 total)