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,257 reads

Blogs

The Book of Redgate: We Value Teams

By

This value is something that I still hear today: our best work is done...

Troubleshooting TempDB Log Full Errors When SSMS Won’t Connect

By

Have you ever received the dreaded error from SQL Server that the TempDB log...

Accelerating AI with Confidence: Why Microsoft Purview is Key to Responsible Innovation

By

Artificial intelligence is no longer a distant concept. It is here, embedded in the...

Read the latest Blogs

Forums

Planning for tomorrow, today - database migrations

By John Martin

Comments posted to this topic are about the item Planning for tomorrow, today -...

Bottlenecks on SQL Server performance

By runarlan

We have a BI-application that connects to input tables on a SQL Server 2022...

Is there some good routines for updating SQL Server database objects with GitHub

By Rod at work

At work we've been getting better at writing what's known as GitHub Actions (workflows,...

Visit the forum

Question of the Day

The Tightly Linked View

I try to run this code on SQL Server 2022. All the objects exist in the database.

CREATE OR ALTER VIEW OrderShipping
AS
SELECT cl.CityNameID,
       cl.CityName,
       o.OrderID,
       o.Customer,
       o.OrderDate,
       o.CustomerID,
       o.cityId
 FROM dbo.CityList AS cl
 INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID
GO
CREATE OR ALTER FUNCTION GetShipCityForOrder
(
    @OrderID INT
)
RETURNS VARCHAR(50)
WITH SCHEMABINDING
AS
BEGIN
    DECLARE @city VARCHAR(50);
    SELECT @city = os.CityName
    FROM dbo.OrderShipping AS os
    WHERE os.OrderID = @OrderID;
    RETURN @city;
END;
go
What is the result?

See possible answers