Building and Maintaining a High Availability Infrastructure.
I am giving a hands on (code camp) presentation on setting up SQL 2008 Clustering. If you are interested, click the link below and register. Will see you there.
http://codecamp.phillydotnet.org/2008-3/Lists/Sessions/Dis...
[More]
Currently rated 3.8 by 4 people
- Currently 3.75/5 Stars.
- 1
- 2
- 3
- 4
- 5
Let us take a performance snapshot on using Row Constructors in SQL 2008
Example table:
create table Customer
(customerID int primary key clustered identity(1,1)
,firstName varchar(30)
,lastname varchar(30)
, age int
)
-- SQL 2005 method
begin transaction
inser...
[More]
Currently rated 5.0 by 2 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5
Row Constructors in SQL 2008
Let us delve into using Row Constructors
Two basic tables for test purposes
-- Customer
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Customer]') AND type in (N'U'))
DROP TABLE [dbo].[Customer]
...
[More]
Currently rated 4.0 by 1 people
- Currently 4/5 Stars.
- 1
- 2
- 3
- 4
- 5
Developer centric SQL 2008 Features:
I am giving a walk through on developer centric features in SQL 2008. If you are interested to learn more about the new SQL 2008 features available for developers like Row constructors, HierarchyID and more, you can register on the link shown below:
...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5