Viewing 15 posts - 1,021 through 1,035 (of 1,413 total)
I also agree with the others, but to answer your question: No, it is not possible to block an IP after failed logins. It is actually not possible to use...
March 1, 2004 at 2:37 am
As I explained in my other posting (in response to the article itself), any lack of performance is not a fault of the relational model but of the implementation of...
February 12, 2004 at 6:26 am
I don't want to make this into any kind of flame war or anything, but I must address a couple of points here. I do not know what Frank Kalis...
February 12, 2004 at 6:16 am
quote:
Is there a way to determine the number of rows in a page?
DBCC SHOWCONTIG (tablename)...
January 2, 2004 at 3:29 am
quote:
quote:
Other strange things happening include SQL performance counters present on one day, missing...
December 28, 2003 at 9:54 am
The easy answer: As much as possible. SQL Server will by default dynamically adjust it's memory and use as much as it can. If you don't have any other applications...
December 28, 2003 at 9:45 am
SELECT COALESCE(NullColumn, 0) FROM ...
This will output the value in NullColumn if it is not null, otherwise 0.
--
Chris Hedgate @ Extralives (http://www.extralives.com/)
Contributor to Best of SQL Server Central 2002 (http://www.sqlservercentral.com/bestof/)
Articles:...
December 25, 2003 at 11:44 pm
quote:
I hate to reinvent the wheel. If someone has this tool I would love a copy. If not I will...
December 23, 2003 at 4:53 am
Please see my latest article Dealing With Changing Data for examples on how to do this. Use the link for articles in my signature.
--
Chris Hedgate @ Extralives (http://www.extralives.com/)
Contributor to Best...
December 23, 2003 at 3:26 am
I think the best solution would be to save all datetimes in utc-time. Then you could convert to whichever time zone / format you want for presenting it. Unfortunately though...
December 22, 2003 at 11:28 am
!
--
Chris Hedgate @ Extralives (http://www.extralives.com/)
Contributor to Best of SQL Server Central 2002 (http://www.sqlservercentral.com/bestof/)
Articles: http://www.sqlservercentral.com/columnists/chedgate/
December 22, 2003 at 11:23 am
I am using an empty resultset if user does not exist instead of returning a 0 in user_exists.
SELECT 1 AS t1.user_exists
, t1.user_loginattempts AS login_attempts
,...
December 22, 2003 at 11:21 am
I forgot to mention one thing. The Oracle function SYS_EXTRACT_UTC that you mention is exactly what we would need in SQL Server to solve this problem easily. And from what...
December 22, 2003 at 3:15 am
Dinesh, please note that GMT and UTC is not exactly the same thing. As I discussed in my article SQL and Java go on a Date (http://www.sqlservercentral.com/columnists/chedgate/sqlandjavagoonadate.asp), UTC adds a...
December 22, 2003 at 3:06 am
I would also like to hear about any results from testing this. The thread kind of lost focus, so I'll bring it back by simply asking how much memory can...
December 21, 2003 at 8:17 am
Viewing 15 posts - 1,021 through 1,035 (of 1,413 total)