Denny Figuerres

I started with computers about 24 years back. First PC was a Commodore VIC 20 and my “Mass Storage” was a cassette tape deck from my stereo gear with a home made A/D converter built from a 555 timer IC. I have worked at a large ISP for several years www.inreach.com based in Stockton California, I was there with the founder John Keagy in the 95-98 time frame when it went from 2,000 subs to 30,000 subs. I ran the support desk for a while and then the IT support including the adoption of RadiusNT form IEA software that logged dialup use form the modem banks to the tune of about 6 million SQL database records per month using SQL 6.5. For the last 4 years I have been working with a Billing and Ops’ system company www.internetsupportsystems.com in florida; I also do custom stuff for different folks in the local area. I have spent many hours with many levels of engineers from Cisco and Motorola. For a while I was on the IETF “Anti Spam Working Group”. I heard a lot of ideas about spam and was able to make some good points about the problem of the internet and the way things work.

SQLServerCentral Article

Port Blocking, SQL Server, and the Internet

The SQL Server ports 1433, was blocked recently by an ISP. New Author Denny Figuerres read our release and decided to bring you some comments about why this isn't such a bad idea. Read on and see if you agree that blocking the SQL Server ports shouldn't present you any problems.

You rated this post out of 5. Change rating

2004-06-18

9,252 reads

Blogs

ADF: Publish suddenly includes everything where it used to be incremental changes since the last publish

By

I recently encountered an interesting issue with ADF where the publish feature suddenly attempted...

Beginner’s Guide: Create a File Organizer CLI Tool in Rust

By

Image from Afdhaluddin on ShutterstockCLI which is generally referred to as Command Line Interface...

The Third Sabbatical

By

I can’t believe I’ve been at Redgate long enough to get a third sabbatical....

Read the latest Blogs

Forums

How Many Can Be the Greatest

By Steve Jones - SSC Editor

Comments posted to this topic are about the item How Many Can Be the...

How to process images and analyze charts with AI

By Daniel Calbimonte

Comments posted to this topic are about the item How to process images and...

Patching the Patch

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Patching the Patch

Visit the forum

Question of the Day

How Many Can Be the Greatest

I am trying to analyze a number of columns in a large table to determine the highest value for each row. In SQL Server 2022, we have the GREATEST function, which will return the greatest value from those columns passed in. How many columns can I include in an expression like this:

select GREATEST( col1, col2, col3, ...)

See possible answers