Enterprise Architecture – Connect-the-Dots for Adults, Part 4
This article, part 4 in a series, discusses how to use, publish, maintain and govern the enterprise architecture.
This article, part 4 in a series, discusses how to use, publish, maintain and govern the enterprise architecture.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
Business Intelligence Architect Bill Pearson introduces the numeric Max()function, and leads hands-on practice examples of the basic concepts.
Getting a result set of XML is the easy part, but what about exporting the data in a human readable format? Most DBAs don't
spend a lot of time formatting XML output, but it doesn't hurt to know how. New author David McKinney brings us a technique for generating an XML article and then using SSIS and XSL to transform it into an HTML page.
Common sense guidelines, removing local administrators and too much money in IT. Steve Jones comments on a few headlines from the week.
As a follow up to my first article “Monitoring on a Budget”, here’s how we present the fact data to management using Microsoft Excel.
Ever worked on a software project where you didn't get all the requirements? One where the functions and features change in midstream? Steve Jones comments on some possibilities on why this happens.
This white paper enumerates the connectivity options for databases with Microsoft SQL Server 2005 Integration Services and mentions special considerations that are required when using some database sources with some of the more complex transformations.
By SQLPals
Reality (And Limits) of Instant File Initialization for Transaction Logs in SQL Server 2022 ...
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....
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