Infinite Seizure - Database Weekly (2008/8/4)
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
531 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
531 reads
Sizing a database can be one of the most arduous tasks a DBA, analyst or developer must attend to. It?s time consuming and more hours go into analyzing the database than actually sizing it. This article focuses on how to monitor the database?s growth after its deployed and contains some tips on how to size it before deployment. We will also dive a little into how to benchmark your database against a robust data load.
2008-08-01 (first published: 2001-07-25)
43,874 reads
Here the author answers questions regarding the Entity Framework and provides an understanding of how and why it was developed.
2008-08-01
3,074 reads
This paper explores several ideas to improve the query and data modification performance of the XML data type in Microsoft SQL Server 2005. To get the most value from this paper, you need to be familiar with the XML features in SQL Server 2005. For background material, see XML Support in Microsoft SQL Server 2005 and XML Best Practices for Microsoft SQL Server 2005 on the Microsoft Development Network (MSDN)
2008-08-01
2,382 reads
Tjay Belt brings us a quick and easy DR solution that might provide you some protection if you don't have a DR plan and want some lessons learned in this area.
2008-07-31
8,327 reads
This video covers the basics of creating a view in SQL Server. Views allow you to treat a query as a table and simplify your query writing. This view covers the Query Designer in Management Studio.
2008-07-31
5,971 reads
This article describes how to enable Instant File Initialization in SQL Server 2005
2008-07-31
3,738 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
65 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
64 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
62 reads
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
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...
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