Viewing 15 posts - 1,891 through 1,905 (of 9,641 total)
I still think Windows authentication is more secure. At the very least people do not have to remember a second login, and you aren't storing a login in the...
January 11, 2012 at 8:39 am
There are some people who believe for security purposes that DBA's should have a separate AD account for sa access while your standard AD account only has minimal rights.
January 11, 2012 at 8:28 am
Not that I'm aware of in the local edition of BOL. You can add comments to the online version of BOL though.
January 11, 2012 at 8:26 am
I think the problem is in this line:
(select max(END_TMSTP) LOG)
There is no FROM clause, is LOG an alias for MAX(END_TMSTMP) or is the query supposed to be:
Select MAX(END_TMSTP) FROM...
January 11, 2012 at 8:21 am
cookie SQL (1/10/2012)
The culprit was :
A domain users group had been added using british english, as all users...
January 10, 2012 at 11:00 am
Sorry, I can duplicate it. Try this (you many want to check your language setting first):
SELECT
@@LANGUAGE AS language_name,
...
January 9, 2012 at 2:52 pm
cookie SQL (1/9/2012)
Thanks, I agree with your comments.I Still would like to understand whats going on with the cast though.
I'd like to know as well as I cannot duplicate the...
January 9, 2012 at 2:43 pm
I assume that it is a varbinary(MAX) column. So your performance issue has to do with how SQL Server stores BLOB data. It has to do extra work...
January 9, 2012 at 2:39 pm
If the column holds numeric data only the best way to deal with it is to use a numeric data type.
Based on what I know the engine (even with Compact...
January 9, 2012 at 2:28 pm
How are you using the parameter in the query? Are you just using an IN (Parameters!paramter_name.Value) or are you splitting the delimited list into a table and doing a...
January 9, 2012 at 2:19 pm
I don't think there is a way to do this because I don't think you can set the width property using an expression.
Why do you want it stay the...
January 9, 2012 at 2:16 pm
!Aaron Aardvark! (1/9/2012)
There is a points target I'm keeping an eye on:
Guess I'm going to have up my game to stay ahead of you. Enough others have passed me.
January 9, 2012 at 1:59 pm
GSquared (1/9/2012)
GilaMonster (1/9/2012)
Steve Jones - SSC Editor (1/9/2012)
jcrawf02 (1/9/2012)
GilaMonster (1/9/2012)
Ninja's_RGR'us (1/9/2012)
There was a time I loved fiction, got any books to recommend?
Yes
http://sqlinthewild.co.za/index.php/2012/01/01/2011-book-review/
http://sqlskills.com/BLOGS/PAUL/post/2011-the-year-in-books.aspx
We both have 2010 posts as well if you...
January 9, 2012 at 12:18 pm
Apparently I'm the person who prefers underscores to camelCase. I like it for case-sensitivity reasons. If I use all lower case and underscores I don't have to worry...
January 9, 2012 at 8:54 am
Roy Ernest (1/9/2012)
When I get time post some thing,...
January 9, 2012 at 8:46 am
Viewing 15 posts - 1,891 through 1,905 (of 9,641 total)