Editorials

SQLServerCentral Editorial

What Do We Want from PASS?

With the election of the Board of Directors complete for 2009, Steve Jones takes a step back to examine what we might want from a professional organization. If you care about having an organization for SQL Server professionals, read this and let us know if you agree or disagree.

4 (1)

You rated this post out of 5. Change rating

2009-10-22

113 reads

SQLServerCentral Editorial

Data and Customer Service

Businesses are always looking to collect data on their customers. However when they are fgiven this data, there is a level of trust from the consumer that is expected of the business. Guest editor John Magnabosco talks about the need for database professionals to take care that we are honoring this trust.

4 (1)

You rated this post out of 5. Change rating

2009-10-21

70 reads

SQLServerCentral Editorial

Afraid of Help

Is it hard for technology workers to ask for help? Or accept it? We seem to often be the type of people that want to solve problems and fix things on our own. Is that a problem? Steve Jones thinks that we should sometimes put aside our pride and get things done.

You rated this post out of 5. Change rating

2009-10-15

76 reads

Blogs

The Cost of Not Having a DBA

By

Does skipping a DBA save money? Wait until your system grinds to a halt,...

Who are you? Building an identity map.

By

I admit that until I read the article, Who are you as a Leader?,...

Call a Fabric REST API from Azure Data Factory

By

Suppose you want to call a certain Microsoft Fabric REST API endpoint from Azure...

Read the latest Blogs

Forums

How to update using data from three tables?

By mjdemaris

I am in the process of migrating from MySQL to SQL Server. I have...

Select Returning Blank Rows

By JP789

I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...

How to update a history table with changes.

By bswhipp

Good morning to all.  I am a novice when it comes to SQL so...

Visit the forum

Question of the Day

Replacing a NULL II

What is returned from this code in SQL Server 2022?

DECLARE
  @value INT = NULL
, @value2 VARCHAR(20) = NULL;
SELECT COALESCE (@value, @value2, 100.5) AS Result;
GO

See possible answers