Multi-Script, Multi-DB Deployments
A way to handle application releases involving multiple scripts and/or multiple databases.
A way to handle application releases involving multiple scripts and/or multiple databases.
How do you triage and rate the bugs that come in for software? How should Microsoft do this for SQL Server. Steve Jones has a few comments.
Congratulations to Tracy Hamlin, voted to be the Exceptional DBA of 2010.
This is a challenge to identify the downtime of servers from the log data generated by a monitoring application.
For security reasons many sites disable the extended stored procedure xp_cmdshell, which is used to run DOS commands or executables. When you really have to run a DOS command or an executable from a stored procedure how can you get around this limitation without a breakdown in security.
One common problem in querying is to reference the previous row in a data set as part of a calculation. David McKinney brings us an interesting solution using SQL Server 2005.
This Friday Steve Jones talks about your career, and training, and what you are doing about it.
It's time to integrate social data, enterprise analytics and enterprise data for better social-media strategy.
Are there some things that are beyond automation in your company? Steve Jones comments on the difficulty of changing things with automation in some cases.
Describes how to convert database mirroring to log shipping in SQL 2005/2008.
Welcome back, my fellow sleuths, to my mystery-inspired blog series! I’m having a ton...
By Steve Jones
This was one of the original values: The facing page has this text: No...
By Chris Yates
For decades, enterprises have thought about data like plumbers think about water: you build...
Comments posted to this topic are about the item Create an HTML Report on...
Hi everyone I have a 1000 plus line query and I am getting an...
Comments posted to this topic are about the item Building a RESTful API with...
What happens when I run this code:
DECLARE @s VARCHAR(1000) = 'apple, pear, peach' SELECT * FROM STRING_SPLIT(@s, ', ')See possible answers