The Software Comparison - Part 4
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
SQL Server MVP Jacob Sebastian continues his very successful XML series with a foray into SQL Server 2000's XML capabilities for generating custom documents.
Enforcing your data's integrity is probably the single most important issue you face when designing a database. Validating user input is one way of keeping bad data from making its way into your analyses and reports.
When Nigel Rivett takes us on a tour of the apparently innocuous subject of Identity Columns in TSQL, even the seasoned programmer is due for one or two surprises.
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
Reduce your recovery time and minimize the chance for error by resolving all logins in one script.
Many BI vendors now offer modules that let you deliver just about any report to smart phones, but as a major retailer, a health care provider and a major government agency have discovered, practical, tactical wins are the key to mobile success.
By Steve Jones
Last week I spent a few days in Cambridge, UK for the Redgate Company...
By Steve Jones
Recently I had someone internally ask about whether SQL Source Control supports Git Hooks....
By Steve Jones
At Redgate, we’re experimenting with how AI can help developers and DBAs become better...
I'm running a group MSA for the database engine and SQL Agent in a...
All, My query is as follows: SET DATEFORMAT dmy SELECT p.query_id, DATEADD(MICROSECOND,-rs.max_duration,rs.first_execution_time) AS starttime,...
Comments posted to this topic are about the item Encoding Strings
I have this code in SQL Server 2025. What is the result?
DECLARE @message VARCHAR(50) = 'Hello SQL Server 2025!'; DECLARE @encoded VARCHAR(MAX); SET @encoded = BASE64_ENCODE(@message); SELECT @encoded AS EncodedResult;See possible answers