Data Insecurity: A Perspective on Data Encryption
The focus of this paper is on the protection of PII data stored within a database using encryption technologies.
2013-03-07
1,826 reads
The focus of this paper is on the protection of PII data stored within a database using encryption technologies.
2013-03-07
1,826 reads
A short look at the vulnerabilities your data may be susceptible to outside of the database tables.
2013-03-07
6,291 reads
SQL Server isn't usually the best place to format dates or currency as strings. It can be a complex task to conform correctly with national and cultural conventions. Just occasionally, though, you need to do it. This is easy in SQL Server 2012, but if you aren't using that, what do you do?
2013-03-07
2,201 reads
A day of SQL Server training in the UK on Mar 9, 2013. Sign up if you can come.
2013-03-06
1,751 reads
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.
2013-03-06
4,197 reads
The recovery models of SQL Server define how different backup and restore tasks will be performed on your database. When choosing a recovery model,
2013-03-05
3,618 reads
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.
2013-03-05
3,607 reads
This tip I will explains a step-by-step method to perform the SQL Server Log Shipping migration.
2013-03-04
2,547 reads
A free day of training in Richmond, VA. Come along and see Steve Jones, Grant Fritchey and more.
2013-03-04 (first published: 2013-02-27)
2,156 reads
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.
2013-03-01 (first published: 2013-02-20)
497 reads
By DataOnWheels
Two years ago, two things happened within a few days of each other. I...
By gbargsley
This is it. The final chapter of PowerShell Strikes Back. Over the past four...
By Arun Sirpal
Claude is more than a chat window. The desktop experience includes structured workspaces, generated...
Comments posted to this topic are about the item Unraveling the Mysteries of the...
Comments posted to this topic are about the item QUOTENAME Behavior
Good Morning. I have a T-SQL Script which has been developed to execute a...
I use QUOTENAME() like this in code?
DECLARE @s VARCHAR(20) = 'Steve Jones' SELECT QUOTENAME(@s, '>')What is returned? See possible answers