SQL Saturday #194 - Exeter
A day of SQL Server training in the UK on Mar 9, 2013. Sign up if you can come.
A day of SQL Server training in the UK on Mar 9, 2013. Sign up if you can come.
emporary tables are created in the Temporary tables are created in the TempDB database, which persists for a particular session. The objective is to maintain that session, until the temp table information is used and dump the data into a physical table.
There's potentially an exploit that can download lots of data to a machine. This shouldn't be a concern for servers, but you never know.
The recovery models of SQL Server define how different backup and restore tasks will be performed on your database. When choosing a recovery model,
Often, an existing database application must evolve rapidly by incremental steps. Alex describes a tried and tested system to provide an automated approach to deploying both new and existing database systems, whilst dealing with common security and configuration issues.
A new study shows potential corruption issues with solid state drives when power is cut under a load. That can have implications for data professionals as more databases incorporate SSD storage.
This tip I will explains a step-by-step method to perform the SQL Server Log Shipping migration.
A free day of training in Richmond, VA. Come along and see Steve Jones, Grant Fritchey and more.
SQL Server developers and database administrators have the chance to attend a free half-day event, in Richmond, VA - hosted by SQL Server experts Steve Jones and Grant Fritchey.
How to use a passed string variable for an IN type predicate in your queries as a way to more efficiently handle an array of strings.
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers