Viewing 15 posts - 1 through 15 (of 37 total)
Jeff Moden (4/18/2010)
And, you're correct. I quit twice for a year each and once for 3 months and not sure why...
July 20, 2012 at 8:14 am
[font="Courier New"]SELECT COFFEE FROM PROGRAMER.CUP[/font]
Msg 7342, Level 16, State1, Line 1
An unexpected NULL value was returned...
Programmer cannot continue.
It's dangerous to hit reply the first day back before getting enough coffee.
BOL...
January 3, 2012 at 11:49 am
Very interesting.
Declaring the decimal variables as DECIMAL(35,20) gives the correct result.
But declaring the decimal variables as DECIMAL(35,19) gives the rounded result.
It looks like BOL is wrong in Precision, Scale,...
January 3, 2012 at 9:35 am
Note: I am an old curmudgeon who speaks bluntly. Nothing that follows is a personal attack. I just see this as a teachable moment.
So:
Let me get this straight:
You stumbled over...
December 23, 2011 at 8:32 am
Disk usage
SQL Server is heavily disk bound, so solving disk bottlenecks can make a big difference. If you found memory shortages in the previous section, fix those first, because a...
July 26, 2011 at 12:05 pm
I agree there is more to discuss. As BOL says:
Current identity value is set to the new_reseed_value. If no rows have been inserted to the table since it was created,...
May 10, 2011 at 6:24 am
With a little more research you would have found sys.sql_modules which has the advantage of the definition field being nvarchar(max) so sprocs > 8k do not need to be reassembled.
As...
March 28, 2011 at 5:40 am
It depends on who is asking what question. For example: a wrongfully terminated employee (Bob) is reinstated and his personnel record is supposed to be "cleared". If someone runs a...
January 25, 2011 at 5:31 am
If you are loading millions of rows you should use clustered indexes ONLY if the source data can be loaded in that order. Loading data into a table with a...
January 19, 2011 at 5:42 am
I agree with LutzM but lets try breaking this down a little:
Since many may not understand "non-SARGable" lets just put it this way:
If you put a column in a function...
January 19, 2011 at 5:18 am
To a certain extent any new feature, because we don't trust Microsoft to not pull the rug out from under us.
You mentioned "DTS lead to SSIS"
More like Microsoft threw DTS...
December 17, 2010 at 5:47 am
It shows how America-centric SQL programmers are.
1d4 means One Pound, Four Pence in England.
December 7, 2010 at 9:36 am
The string constant ',,' can be converted to the money data type
I stand corrected. I had tried a variety of numeric types, but not money.
I had not realized how forgiving...
December 7, 2010 at 8:16 am
ISNUMERIC functions perfectly. Every example given is, in fact, a valid numeric.
Ummm... I think you missed where we discussed two commas in a row with no numbers
select isnumeric(',,')
-----------
1
(1 row(s)...
December 7, 2010 at 5:58 am
Viewing 15 posts - 1 through 15 (of 37 total)