Phil Factor

  • Interests: Motorbikes, Beer, gardening, conservation, Local history.

Blog Post

The Killer Backslash in TSQL

--it is
quite startling to see that this, in TSQL, executes.
Select    \
/*
---------------------
0.00
 
(1
row(s) affected)
 
so does
this....
*/
Select    null  /\/\/\/\/\/\/\/\/\/\/\/\
/*
---------------------
NULL
 
(1
row(s) affected)...

You rated this post out of 5. Change rating

2010-07-29

5,814 reads

SQLServerCentral Editorial

The Great Forum Debate

Phil discusses the pros and cons of the traditional versus stack overflow-style model for forum debate, and wonders whether there is a database model that would support all these different forms of discussion, or cooperative work, so that we can simply fit the 'visualization' to the nature of the particular discussion.

(1)

You rated this post out of 5. Change rating

2010-06-28

93 reads

Blogs

Advice I Like: Failure

By

If it fails where you thought it would fail that is not a failure....

Logged in as a member of an Azure AD Group Error while Deploying DACPAC

By

Quite a long title for a short blog post ??While deploying a DACPAC (from...

Data Conferences – Worth Every Dollar

By

Some of the best career enhancers you can buy.   Why I Go to...

Read the latest Blogs

Forums

A Place where AI Technology Shines

By Steve Jones - SSC Editor

Comments posted to this topic are about the item A Place where AI Technology...

Alternate for xp_delete_file

By PJ_SQL

alternate for xp_delete_file

Select @ for different fields

By bswhipp

I have a need where I need to pass a field name to a...

Visit the forum

Question of the Day

Getting the Object Code

What happens when I run this on SQL Server 2022 in the AdventureWorks2022 database?

SELECT OBJECT_DEFINITION (OBJECT_ID(N'dbo.uspGetBillofMaterials')) AS [Object Definition]; 
GO 

See possible answers