Changing the default port numbers when configuring database mirroring
There are times when you need to use different network ports to communicate between two servers running database mirroring. Learn how to change the default ports.
There are times when you need to use different network ports to communicate between two servers running database mirroring. Learn how to change the default ports.
NoSQL solves some problems in the database world, but not all of them. It's also not an evolution of the relational database, but as Steve Jones notes, it has some features we might see in SQL Server.
Guest editorial by Phil who bemoans the difficulty of transferring tabular data by file between differing databases, spreadsheets and analysis tools.
SQLs CASE expressions can be powerful magic, but can trap the unwary that are used to the more familiar CASE statements of procedural languages.
A presentation by Steve Jones that looks at a number of common mistakes that people make with SQL Server on a regular basis.
If you need to connect to a SQL server and don't have the 'sa' password plus the builtin\administrators account has been removed then Rudy Panigas shows us what you need to know.
This Friday Steve Jones asks for who's got the best bragging rights. Let us know this Friday just much RAM is a lot.
A presentation by Steve Jones that gives practical tips for enhancing your online brand and making yourself stand out in the modern world.
So, given the many good reasons for using Version Control systems for managing the changes in database applications, how does one go about the rather different routines of team development, such as testing, continuous integration, and managing data? What are the issues that you're likely to face?
I recently took the knowledge exam, and I loved it. I thought it was a great exam. I have taken...
By Steve Jones
I needed to test a striped backup, so I decided to ask the AI’s...
By Kevin3NF
It’s Not Just Backup / Restore At some point every company faces it: the...
By gbargsley
In SQL Server environments where transactional replication runs alongside Always On Availability Groups (AGs),...
Comments posted to this topic are about the item Create an HTML Report on...
Comments posted to this topic are about the item Can/Can't Do/Don't
Comments posted to this topic are about the item Strange String Splits
When I run this code, how many rows are returned?
DECLARE @meals NVARCHAR(1000) = N'夕食昼食朝食' DECLARE @s NVARCHAR(1) = N'食' SELECT value FROM STRING_SPLIT(@meals, @s) GOSee possible answers