Viewing 11 posts - 301 through 311 (of 311 total)
Another way of formatting variable-length strings:
(there must be at least a half-dozen more...)
[font="Courier New"]
DECLARE @ls_10_Blanks = ' '
DECLARE @ls_20_Blanks =...
February 14, 2008 at 8:43 am
Generally, I like to return a specific error message back to the application to identify where the failure occured.
I have two choices:
# 1
DECLARE @li_RetCode int
SET @li_RetCode = -666
BEGIN TRAN
UPDATE SomeTable...
February 14, 2008 at 8:24 am
Regarding decimal and float types:
Decimal works well except there is no support for this in Delphi v. 6.0. (Something to do with support for ADO.) You may encounter similar problems...
February 14, 2008 at 8:03 am
And I also liked the bit on the CSV generator.
February 1, 2008 at 11:19 am
Jusst the slider:
This is what you get when you post NO code. An illustration of the point made by Jeff.
Regards
February 1, 2008 at 8:12 am
"...Create Some Table Code
Yeah, this first part is all manual... but, it's worth it and it doesn't take any real time, at all. It does, however, do several very important...
February 1, 2008 at 8:07 am
If you are doing it from the console manager -> "all tasks" -> "backlup database" the "Overwrite" section has the following exclusive choices:
- Append to...
February 1, 2008 at 7:04 am
Your new version is now running just fine.
I ** LOVE ** it!
Thanks a million.
January 22, 2008 at 8:09 am
LINE
SELECT @CMD = 'SELECT * INTO ##TEMP_TABLE FROM
FAILS when column type is money - --@FLD)
"IMPLICIT CONVERSION FROM DATA TYPE MONEY TO VARCHAR IS NOT ALLOWED....
January 22, 2008 at 7:33 am
Nothing worth "bragging" about. All I had to do was run that query in the Query Analyzer.
And got the answer instantanewously, no delay at all.
So, such trick questions buying "braging"...
November 27, 2007 at 12:04 pm
One of the most abused examples of recursion: Factorials.
The is the first example given to explain recursion because
it is easy to describe the problem to be solved.
Most unfortunately, this...
November 7, 2007 at 11:31 am
Viewing 11 posts - 301 through 311 (of 311 total)